report.html

Report generated on 24-Oct-2020 at 23:18:04 by pytest-html v2.1.1

Environment

389-ds-base 1.4.4.4-20201024gitfbb54a7.fc32
Packages {"pluggy": "0.13.1", "py": "1.9.0", "pytest": "5.4.3"}
Platform Linux-5.7.7-200.fc32.x86_64-x86_64-with-glibc2.2.5
Plugins {"html": "2.1.1", "libfaketime": "0.1.2", "metadata": "1.10.0"}
Python 3.8.6
cyrus-sasl 2.1.27-4.fc32
nspr 4.29.0-1.fc32
nss 3.57.0-1.fc32
openldap 2.4.47-5.fc32

Summary

2038 tests ran in 14448.47 seconds.

1946 passed, 49 skipped, 65 failed, 4 errors, 19 expected failures, 8 unexpected passes

Results

Result Test Duration Links
Error suites/replication/changelog_test.py::test_changelog_maxage::setup 6.20
topo = <lib389.topologies.TopologyMain object at 0x7f65e4e43dc0>

@pytest.fixture(scope="module")
def changelog_init(topo):
""" changlog dir is not configuarable, just
enable cn=Retro Changelog Plugin,cn=plugins,cn=config
"""
log.info('Testing Ticket 47669 - Test duration syntax in the changelogs')

# bind as directory manager
topo.ms["master1"].log.info("Bind as %s" % DN_DM)
topo.ms["master1"].simple_bind_s(DN_DM, PASSWORD)

if not ds_supports_new_changelog():
try:
changelogdir = os.path.join(os.path.dirname(topo.ms["master1"].dbdir), 'changelog')
topo.ms["master1"].modify_s(CHANGELOG, [(ldap.MOD_REPLACE, 'nsslapd-changelogdir',
ensure_bytes(changelogdir))])
except ldap.LDAPError as e:
log.error('Failed to modify ' + CHANGELOG + ': error {}'.format(get_ldap_error_msg(e,'desc')))
assert False

try:
topo.ms["master1"].modify_s(RETROCHANGELOG, [(ldap.MOD_REPLACE, 'nsslapd-pluginEnabled', b'on')])
except ldap.LDAPError as e:
log.error('Failed to enable ' + RETROCHANGELOG + ': error {}'.format(get_ldap_error_msg(e, 'desc')))
assert False

# restart the server
> topo.ms["master1"].restart(timeout=10)

suites/replication/changelog_test.py:166:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:1276: in restart
self.start(timeout, post_open)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:1135: in start
subprocess.check_output(["systemctl", "start", "dirsrv@%s" % self.serverid], stderr=subprocess.STDOUT)
/usr/lib64/python3.8/subprocess.py:411: in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

input = None, capture_output = False, timeout = None, check = True
popenargs = (['systemctl', 'start', 'dirsrv@master1'],)
kwargs = {'stderr': -2, 'stdout': -1}
process = <subprocess.Popen object at 0x7f65e4e4d850>
stdout = b'Job for dirsrv@master1.service failed because the control process exited with error code.\nSee "systemctl status dirsrv@master1.service" and "journalctl -xe" for details.\n'
stderr = None, retcode = 1

def run(*popenargs,
input=None, capture_output=False, timeout=None, check=False, **kwargs):
"""Run command with arguments and return a CompletedProcess instance.

The returned instance will have attributes args, returncode, stdout and
stderr. By default, stdout and stderr are not captured, and those attributes
will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them.

If check is True and the exit code was non-zero, it raises a
CalledProcessError. The CalledProcessError object will have the return code
in the returncode attribute, and output & stderr attributes if those streams
were captured.

If timeout is given, and the process takes too long, a TimeoutExpired
exception will be raised.

There is an optional argument "input", allowing you to
pass bytes or a string to the subprocess's stdin. If you use this argument
you may not also use the Popen constructor's "stdin" argument, as
it will be used internally.

By default, all communication is in bytes, and therefore any "input" should
be bytes, and the stdout and stderr will be bytes. If in text mode, any
"input" should be a string, and stdout and stderr will be strings decoded
according to locale encoding, or by "encoding" if set. Text mode is
triggered by setting any of text, encoding, errors or universal_newlines.

The other arguments are the same as for the Popen constructor.
"""
if input is not None:
if kwargs.get('stdin') is not None:
raise ValueError('stdin and input arguments may not both be used.')
kwargs['stdin'] = PIPE

if capture_output:
if kwargs.get('stdout') is not None or kwargs.get('stderr') is not None:
raise ValueError('stdout and stderr arguments may not be used '
'with capture_output.')
kwargs['stdout'] = PIPE
kwargs['stderr'] = PIPE

with Popen(*popenargs, **kwargs) as process:
try:
stdout, stderr = process.communicate(input, timeout=timeout)
except TimeoutExpired as exc:
process.kill()
if _mswindows:
# Windows accumulates the output in a single blocking
# read() call run on child threads, with the timeout
# being done in a join() on those threads. communicate()
# _after_ kill() is required to collect that and add it
# to the exception.
exc.stdout, exc.stderr = process.communicate()
else:
# POSIX _communicate already populated the output so
# far into the TimeoutExpired exception.
process.wait()
raise
except: # Including KeyboardInterrupt, communicate handled that.
process.kill()
# We don't call process.wait() as .__exit__ does that for us.
raise
retcode = process.poll()
if check and retcode:
> raise CalledProcessError(retcode, process.args,
output=stdout, stderr=stderr)
E subprocess.CalledProcessError: Command '['systemctl', 'start', 'dirsrv@master1']' returned non-zero exit status 1.

/usr/lib64/python3.8/subprocess.py:512: CalledProcessError
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.replication.changelog_test:changelog_test.py:144 Testing Ticket 47669 - Test duration syntax in the changelogs INFO  lib389:changelog_test.py:147 Bind as cn=Directory Manager
Error suites/replication/changelog_test.py::test_ticket47669_changelog_triminterval::setup 0.00
topo = <lib389.topologies.TopologyMain object at 0x7f65e4e43dc0>

@pytest.fixture(scope="module")
def changelog_init(topo):
""" changlog dir is not configuarable, just
enable cn=Retro Changelog Plugin,cn=plugins,cn=config
"""
log.info('Testing Ticket 47669 - Test duration syntax in the changelogs')

# bind as directory manager
topo.ms["master1"].log.info("Bind as %s" % DN_DM)
topo.ms["master1"].simple_bind_s(DN_DM, PASSWORD)

if not ds_supports_new_changelog():
try:
changelogdir = os.path.join(os.path.dirname(topo.ms["master1"].dbdir), 'changelog')
topo.ms["master1"].modify_s(CHANGELOG, [(ldap.MOD_REPLACE, 'nsslapd-changelogdir',
ensure_bytes(changelogdir))])
except ldap.LDAPError as e:
log.error('Failed to modify ' + CHANGELOG + ': error {}'.format(get_ldap_error_msg(e,'desc')))
assert False

try:
topo.ms["master1"].modify_s(RETROCHANGELOG, [(ldap.MOD_REPLACE, 'nsslapd-pluginEnabled', b'on')])
except ldap.LDAPError as e:
log.error('Failed to enable ' + RETROCHANGELOG + ': error {}'.format(get_ldap_error_msg(e, 'desc')))
assert False

# restart the server
> topo.ms["master1"].restart(timeout=10)

suites/replication/changelog_test.py:166:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:1276: in restart
self.start(timeout, post_open)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:1135: in start
subprocess.check_output(["systemctl", "start", "dirsrv@%s" % self.serverid], stderr=subprocess.STDOUT)
/usr/lib64/python3.8/subprocess.py:411: in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

input = None, capture_output = False, timeout = None, check = True
popenargs = (['systemctl', 'start', 'dirsrv@master1'],)
kwargs = {'stderr': -2, 'stdout': -1}
process = <subprocess.Popen object at 0x7f65e4e4d850>
stdout = b'Job for dirsrv@master1.service failed because the control process exited with error code.\nSee "systemctl status dirsrv@master1.service" and "journalctl -xe" for details.\n'
stderr = None, retcode = 1

def run(*popenargs,
input=None, capture_output=False, timeout=None, check=False, **kwargs):
"""Run command with arguments and return a CompletedProcess instance.

The returned instance will have attributes args, returncode, stdout and
stderr. By default, stdout and stderr are not captured, and those attributes
will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them.

If check is True and the exit code was non-zero, it raises a
CalledProcessError. The CalledProcessError object will have the return code
in the returncode attribute, and output & stderr attributes if those streams
were captured.

If timeout is given, and the process takes too long, a TimeoutExpired
exception will be raised.

There is an optional argument "input", allowing you to
pass bytes or a string to the subprocess's stdin. If you use this argument
you may not also use the Popen constructor's "stdin" argument, as
it will be used internally.

By default, all communication is in bytes, and therefore any "input" should
be bytes, and the stdout and stderr will be bytes. If in text mode, any
"input" should be a string, and stdout and stderr will be strings decoded
according to locale encoding, or by "encoding" if set. Text mode is
triggered by setting any of text, encoding, errors or universal_newlines.

The other arguments are the same as for the Popen constructor.
"""
if input is not None:
if kwargs.get('stdin') is not None:
raise ValueError('stdin and input arguments may not both be used.')
kwargs['stdin'] = PIPE

if capture_output:
if kwargs.get('stdout') is not None or kwargs.get('stderr') is not None:
raise ValueError('stdout and stderr arguments may not be used '
'with capture_output.')
kwargs['stdout'] = PIPE
kwargs['stderr'] = PIPE

with Popen(*popenargs, **kwargs) as process:
try:
stdout, stderr = process.communicate(input, timeout=timeout)
except TimeoutExpired as exc:
process.kill()
if _mswindows:
# Windows accumulates the output in a single blocking
# read() call run on child threads, with the timeout
# being done in a join() on those threads. communicate()
# _after_ kill() is required to collect that and add it
# to the exception.
exc.stdout, exc.stderr = process.communicate()
else:
# POSIX _communicate already populated the output so
# far into the TimeoutExpired exception.
process.wait()
raise
except: # Including KeyboardInterrupt, communicate handled that.
process.kill()
# We don't call process.wait() as .__exit__ does that for us.
raise
retcode = process.poll()
if check and retcode:
> raise CalledProcessError(retcode, process.args,
output=stdout, stderr=stderr)
E subprocess.CalledProcessError: Command '['systemctl', 'start', 'dirsrv@master1']' returned non-zero exit status 1.

/usr/lib64/python3.8/subprocess.py:512: CalledProcessError
Error suites/replication/changelog_test.py::test_retrochangelog_maxage::setup 0.00
topo = <lib389.topologies.TopologyMain object at 0x7f65e4e43dc0>

@pytest.fixture(scope="module")
def changelog_init(topo):
""" changlog dir is not configuarable, just
enable cn=Retro Changelog Plugin,cn=plugins,cn=config
"""
log.info('Testing Ticket 47669 - Test duration syntax in the changelogs')

# bind as directory manager
topo.ms["master1"].log.info("Bind as %s" % DN_DM)
topo.ms["master1"].simple_bind_s(DN_DM, PASSWORD)

if not ds_supports_new_changelog():
try:
changelogdir = os.path.join(os.path.dirname(topo.ms["master1"].dbdir), 'changelog')
topo.ms["master1"].modify_s(CHANGELOG, [(ldap.MOD_REPLACE, 'nsslapd-changelogdir',
ensure_bytes(changelogdir))])
except ldap.LDAPError as e:
log.error('Failed to modify ' + CHANGELOG + ': error {}'.format(get_ldap_error_msg(e,'desc')))
assert False

try:
topo.ms["master1"].modify_s(RETROCHANGELOG, [(ldap.MOD_REPLACE, 'nsslapd-pluginEnabled', b'on')])
except ldap.LDAPError as e:
log.error('Failed to enable ' + RETROCHANGELOG + ': error {}'.format(get_ldap_error_msg(e, 'desc')))
assert False

# restart the server
> topo.ms["master1"].restart(timeout=10)

suites/replication/changelog_test.py:166:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:1276: in restart
self.start(timeout, post_open)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:1135: in start
subprocess.check_output(["systemctl", "start", "dirsrv@%s" % self.serverid], stderr=subprocess.STDOUT)
/usr/lib64/python3.8/subprocess.py:411: in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

input = None, capture_output = False, timeout = None, check = True
popenargs = (['systemctl', 'start', 'dirsrv@master1'],)
kwargs = {'stderr': -2, 'stdout': -1}
process = <subprocess.Popen object at 0x7f65e4e4d850>
stdout = b'Job for dirsrv@master1.service failed because the control process exited with error code.\nSee "systemctl status dirsrv@master1.service" and "journalctl -xe" for details.\n'
stderr = None, retcode = 1

def run(*popenargs,
input=None, capture_output=False, timeout=None, check=False, **kwargs):
"""Run command with arguments and return a CompletedProcess instance.

The returned instance will have attributes args, returncode, stdout and
stderr. By default, stdout and stderr are not captured, and those attributes
will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them.

If check is True and the exit code was non-zero, it raises a
CalledProcessError. The CalledProcessError object will have the return code
in the returncode attribute, and output & stderr attributes if those streams
were captured.

If timeout is given, and the process takes too long, a TimeoutExpired
exception will be raised.

There is an optional argument "input", allowing you to
pass bytes or a string to the subprocess's stdin. If you use this argument
you may not also use the Popen constructor's "stdin" argument, as
it will be used internally.

By default, all communication is in bytes, and therefore any "input" should
be bytes, and the stdout and stderr will be bytes. If in text mode, any
"input" should be a string, and stdout and stderr will be strings decoded
according to locale encoding, or by "encoding" if set. Text mode is
triggered by setting any of text, encoding, errors or universal_newlines.

The other arguments are the same as for the Popen constructor.
"""
if input is not None:
if kwargs.get('stdin') is not None:
raise ValueError('stdin and input arguments may not both be used.')
kwargs['stdin'] = PIPE

if capture_output:
if kwargs.get('stdout') is not None or kwargs.get('stderr') is not None:
raise ValueError('stdout and stderr arguments may not be used '
'with capture_output.')
kwargs['stdout'] = PIPE
kwargs['stderr'] = PIPE

with Popen(*popenargs, **kwargs) as process:
try:
stdout, stderr = process.communicate(input, timeout=timeout)
except TimeoutExpired as exc:
process.kill()
if _mswindows:
# Windows accumulates the output in a single blocking
# read() call run on child threads, with the timeout
# being done in a join() on those threads. communicate()
# _after_ kill() is required to collect that and add it
# to the exception.
exc.stdout, exc.stderr = process.communicate()
else:
# POSIX _communicate already populated the output so
# far into the TimeoutExpired exception.
process.wait()
raise
except: # Including KeyboardInterrupt, communicate handled that.
process.kill()
# We don't call process.wait() as .__exit__ does that for us.
raise
retcode = process.poll()
if check and retcode:
> raise CalledProcessError(retcode, process.args,
output=stdout, stderr=stderr)
E subprocess.CalledProcessError: Command '['systemctl', 'start', 'dirsrv@master1']' returned non-zero exit status 1.

/usr/lib64/python3.8/subprocess.py:512: CalledProcessError
Error suites/replication/changelog_test.py::test_retrochangelog_trimming_crash::setup 0.00
topo = <lib389.topologies.TopologyMain object at 0x7f65e4e43dc0>

@pytest.fixture(scope="module")
def changelog_init(topo):
""" changlog dir is not configuarable, just
enable cn=Retro Changelog Plugin,cn=plugins,cn=config
"""
log.info('Testing Ticket 47669 - Test duration syntax in the changelogs')

# bind as directory manager
topo.ms["master1"].log.info("Bind as %s" % DN_DM)
topo.ms["master1"].simple_bind_s(DN_DM, PASSWORD)

if not ds_supports_new_changelog():
try:
changelogdir = os.path.join(os.path.dirname(topo.ms["master1"].dbdir), 'changelog')
topo.ms["master1"].modify_s(CHANGELOG, [(ldap.MOD_REPLACE, 'nsslapd-changelogdir',
ensure_bytes(changelogdir))])
except ldap.LDAPError as e:
log.error('Failed to modify ' + CHANGELOG + ': error {}'.format(get_ldap_error_msg(e,'desc')))
assert False

try:
topo.ms["master1"].modify_s(RETROCHANGELOG, [(ldap.MOD_REPLACE, 'nsslapd-pluginEnabled', b'on')])
except ldap.LDAPError as e:
log.error('Failed to enable ' + RETROCHANGELOG + ': error {}'.format(get_ldap_error_msg(e, 'desc')))
assert False

# restart the server
> topo.ms["master1"].restart(timeout=10)

suites/replication/changelog_test.py:166:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:1276: in restart
self.start(timeout, post_open)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:1135: in start
subprocess.check_output(["systemctl", "start", "dirsrv@%s" % self.serverid], stderr=subprocess.STDOUT)
/usr/lib64/python3.8/subprocess.py:411: in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

input = None, capture_output = False, timeout = None, check = True
popenargs = (['systemctl', 'start', 'dirsrv@master1'],)
kwargs = {'stderr': -2, 'stdout': -1}
process = <subprocess.Popen object at 0x7f65e4e4d850>
stdout = b'Job for dirsrv@master1.service failed because the control process exited with error code.\nSee "systemctl status dirsrv@master1.service" and "journalctl -xe" for details.\n'
stderr = None, retcode = 1

def run(*popenargs,
input=None, capture_output=False, timeout=None, check=False, **kwargs):
"""Run command with arguments and return a CompletedProcess instance.

The returned instance will have attributes args, returncode, stdout and
stderr. By default, stdout and stderr are not captured, and those attributes
will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them.

If check is True and the exit code was non-zero, it raises a
CalledProcessError. The CalledProcessError object will have the return code
in the returncode attribute, and output & stderr attributes if those streams
were captured.

If timeout is given, and the process takes too long, a TimeoutExpired
exception will be raised.

There is an optional argument "input", allowing you to
pass bytes or a string to the subprocess's stdin. If you use this argument
you may not also use the Popen constructor's "stdin" argument, as
it will be used internally.

By default, all communication is in bytes, and therefore any "input" should
be bytes, and the stdout and stderr will be bytes. If in text mode, any
"input" should be a string, and stdout and stderr will be strings decoded
according to locale encoding, or by "encoding" if set. Text mode is
triggered by setting any of text, encoding, errors or universal_newlines.

The other arguments are the same as for the Popen constructor.
"""
if input is not None:
if kwargs.get('stdin') is not None:
raise ValueError('stdin and input arguments may not both be used.')
kwargs['stdin'] = PIPE

if capture_output:
if kwargs.get('stdout') is not None or kwargs.get('stderr') is not None:
raise ValueError('stdout and stderr arguments may not be used '
'with capture_output.')
kwargs['stdout'] = PIPE
kwargs['stderr'] = PIPE

with Popen(*popenargs, **kwargs) as process:
try:
stdout, stderr = process.communicate(input, timeout=timeout)
except TimeoutExpired as exc:
process.kill()
if _mswindows:
# Windows accumulates the output in a single blocking
# read() call run on child threads, with the timeout
# being done in a join() on those threads. communicate()
# _after_ kill() is required to collect that and add it
# to the exception.
exc.stdout, exc.stderr = process.communicate()
else:
# POSIX _communicate already populated the output so
# far into the TimeoutExpired exception.
process.wait()
raise
except: # Including KeyboardInterrupt, communicate handled that.
process.kill()
# We don't call process.wait() as .__exit__ does that for us.
raise
retcode = process.poll()
if check and retcode:
> raise CalledProcessError(retcode, process.args,
output=stdout, stderr=stderr)
E subprocess.CalledProcessError: Command '['systemctl', 'start', 'dirsrv@master1']' returned non-zero exit status 1.

/usr/lib64/python3.8/subprocess.py:512: CalledProcessError
Failed suites/ds_logs/ds_logs_test.py::test_log_base_dn_when_invalid_attr_request 3.70
topology_st = <lib389.topologies.TopologyMain object at 0x7f65e7ba9340>
disable_access_log_buffering = <function disable_access_log_buffering at 0x7f65e94a94c0>

@pytest.mark.xfail(ds_is_older('1.3.10.1'), reason="May fail because of bug 1662461")
@pytest.mark.bz1662461
@pytest.mark.ds50428
@pytest.mark.ds49969
def test_log_base_dn_when_invalid_attr_request(topology_st, disable_access_log_buffering):
"""Test that DS correctly logs the base dn when a search with invalid attribute request is performed

:id: 859de962-c261-4ffb-8705-97bceab1ba2c
:setup: Standalone instance
:steps:
1. Disable the accesslog-logbuffering config parameter
2. Delete the previous access log
3. Perform a base search on the DEFAULT_SUFFIX, using invalid "" "" attribute request
4. Check the access log file for 'invalid attribute request'
5. Check the access log file for 'SRCH base="\(null\)"'
6. Check the access log file for 'SRCH base="DEFAULT_SUFFIX"'
:expectedresults:
1. Operations are visible in the access log in real time
2. Fresh new access log is created
3. The search operation raises a Protocol error
4. The access log should have an 'invalid attribute request' message
5. The access log should not have "\(null\)" as value for the Search base dn
6. The access log should have the value of DEFAULT_SUFFIX as Search base dn
"""

entry = DSLdapObject(topology_st.standalone, DEFAULT_SUFFIX)

log.info('delete the previous access logs to get a fresh new one')
topology_st.standalone.deleteAccessLogs()

log.info("Search the default suffix, with invalid '\"\" \"\"' attribute request")
log.info("A Protocol error exception should be raised, see https://github.com/389ds/389-ds-base/issues/3028")
# A ldap.PROTOCOL_ERROR exception is expected
with pytest.raises(ldap.PROTOCOL_ERROR):
> assert entry.get_attrs_vals_utf8(['', ''])
E Failed: DID NOT RAISE <class 'ldap.PROTOCOL_ERROR'>

suites/ds_logs/ds_logs_test.py:891: Failed
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:200 Disable access log buffering
-------------------------------Captured log call--------------------------------
INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:884 delete the previous access logs to get a fresh new one INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:887 Search the default suffix, with invalid '"" ""' attribute request INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:888 A Protocol error exception should be raised, see https://github.com/389ds/389-ds-base/issues/3028
Failed suites/dynamic_plugins/dynamic_plugins_test.py::test_acceptance 18.34
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f65e690e580>

def test_acceptance(topology_m2):
"""Exercise each plugin and its main features, while
changing the configuration without restarting the server.

:id: 96136538-0151-4b09-9933-0e0cbf2c786c
:setup: 2 Master Instances
:steps:
1. Pause all replication
2. Set nsslapd-dynamic-plugins to on
3. Try to update LDBM config entry
4. Go through all plugin basic functionality
5. Resume replication
6. Go through all plugin basic functionality again
7. Check that data in sync and replication is working
:expectedresults:
1. Success
2. Success
3. Success
4. Success
5. Success
6. Success
7. Success
"""

m1 = topology_m2.ms["master1"]
msg = ' (no replication)'
replication_run = False

# First part of the test should be without replication
topology_m2.pause_all_replicas()

# First enable dynamic plugins
m1.config.replace('nsslapd-dynamic-plugins', 'on')

# Test that critical plugins can be updated even though the change might not be applied
ldbm_config = LDBMConfig(m1)
ldbm_config.replace('description', 'test')

while True:
# First run the tests with replication disabled, then rerun them with replication set up

############################################################################
# Test plugin functionality
############################################################################

log.info('####################################################################')
log.info('Testing Dynamic Plugins Functionality' + msg + '...')
log.info('####################################################################\n')

> acceptance_test.check_all_plugins(topology_m2)

suites/dynamic_plugins/dynamic_plugins_test.py:121:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
suites/plugins/acceptance_test.py:1807: in check_all_plugins
func(topo, args)
suites/plugins/acceptance_test.py:1588: in test_retrocl
plugin.enable()
/usr/local/lib/python3.8/site-packages/lib389/plugins.py:58: in enable
self.set('nsslapd-pluginEnabled', 'on')
/usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:446: in set
return self._instance.modify_ext_s(self._dn, [(action, key, value)],
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:613: in modify_ext_s
resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3
resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4(
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4
ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call
reraise(exc_type, exc_value, exc_traceback)
/usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise
raise exc_value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65e663b280>
func = <built-in method result4 of LDAP object at 0x7f65e933ff30>
args = (411, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None
exc_type = None, exc_value = None, exc_traceback = None

def _ldap_call(self,func,*args,**kwargs):
"""
Wrapper method mainly for serializing calls into OpenLDAP libs
and trace logs
"""
self._ldap_object_lock.acquire()
if __debug__:
if self._trace_level>=1:
self._trace_file.write('*** %s %s - %s\n%s\n' % (
repr(self),
self._uri,
'.'.join((self.__class__.__name__,func.__name__)),
pprint.pformat((args,kwargs))
))
if self._trace_level>=9:
traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file)
diagnostic_message_success = None
try:
try:
> result = func(*args,**kwargs)
E ldap.UNWILLING_TO_PERFORM: {'msgtype': 103, 'msgid': 411, 'result': 53, 'desc': 'Server is unwilling to perform', 'ctrls': [], 'info': 'Failed to start plugin "Retro Changelog Plugin". See errors log.'}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: UNWILLING_TO_PERFORM
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 2f4237bb-fbd8-434a-a4cc-bed75e9d2227 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 1d2d6e85-1100-47c1-98cc-aeab6c2c1e48 / got description=2f4237bb-fbd8-434a-a4cc-bed75e9d2227) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
Failed suites/dynamic_plugins/dynamic_plugins_test.py::test_memory_corruption 18.00
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f65e690e580>

def test_memory_corruption(topology_m2):
"""Check the plugins for memory corruption issues while
dynamic plugins option is enabled

:id: 96136538-0151-4b09-9933-0e0cbf2c7862
:setup: 2 Master Instances
:steps:
1. Pause all replication
2. Set nsslapd-dynamic-plugins to on
3. Try to update LDBM config entry
4. Restart the plugin many times in a linked list fashion
restarting previous and preprevious plugins in the list of all plugins
5. Run the functional test
6. Repeat 4 and 5 steps for all plugins
7. Resume replication
8. Go through 4-6 steps once more
9. Check that data in sync and replication is working
:expectedresults:
1. Success
2. Success
3. Success
4. Success
5. Success
6. Success
7. Success
8. Success
9. Success
"""


m1 = topology_m2.ms["master1"]
msg = ' (no replication)'
replication_run = False

# First part of the test should be without replication
topology_m2.pause_all_replicas()

# First enable dynamic plugins
m1.config.replace('nsslapd-dynamic-plugins', 'on')

# Test that critical plugins can be updated even though the change might not be applied
ldbm_config = LDBMConfig(m1)
ldbm_config.replace('description', 'test')

while True:
# First run the tests with replication disabled, then rerun them with replication set up

############################################################################
# Test the stability by exercising the internal lists, callabcks, and task handlers
############################################################################

log.info('####################################################################')
log.info('Testing Dynamic Plugins for Memory Corruption' + msg + '...')
log.info('####################################################################\n')
prev_plugin_test = None
prev_prev_plugin_test = None

for plugin_test in acceptance_test.func_tests:
#
# Restart the plugin several times (and prev plugins) - work that linked list
#
> plugin_test(topology_m2, "restart")

suites/dynamic_plugins/dynamic_plugins_test.py:205:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
suites/plugins/acceptance_test.py:1588: in test_retrocl
plugin.enable()
/usr/local/lib/python3.8/site-packages/lib389/plugins.py:58: in enable
self.set('nsslapd-pluginEnabled', 'on')
/usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:446: in set
return self._instance.modify_ext_s(self._dn, [(action, key, value)],
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:613: in modify_ext_s
resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3
resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4(
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4
ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call
reraise(exc_type, exc_value, exc_traceback)
/usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise
raise exc_value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65e663b280>
func = <built-in method result4 of LDAP object at 0x7f65e933ff30>
args = (849, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None
exc_type = None, exc_value = None, exc_traceback = None

def _ldap_call(self,func,*args,**kwargs):
"""
Wrapper method mainly for serializing calls into OpenLDAP libs
and trace logs
"""
self._ldap_object_lock.acquire()
if __debug__:
if self._trace_level>=1:
self._trace_file.write('*** %s %s - %s\n%s\n' % (
repr(self),
self._uri,
'.'.join((self.__class__.__name__,func.__name__)),
pprint.pformat((args,kwargs))
))
if self._trace_level>=9:
traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file)
diagnostic_message_success = None
try:
try:
> result = func(*args,**kwargs)
E ldap.UNWILLING_TO_PERFORM: {'msgtype': 103, 'msgid': 849, 'result': 53, 'desc': 'Server is unwilling to perform', 'ctrls': [], 'info': 'Failed to start plugin "Retro Changelog Plugin". See errors log.'}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: UNWILLING_TO_PERFORM
Failed suites/dynamic_plugins/dynamic_plugins_test.py::test_stress 18.21
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f65e690e580>

@pytest.mark.tier2
def test_stress(topology_m2):
"""Test plugins while under a big load. Perform the test 5 times

:id: 96136538-0151-4b09-9933-0e0cbf2c7863
:setup: 2 Master Instances
:steps:
1. Pause all replication
2. Set nsslapd-dynamic-plugins to on
3. Try to update LDBM config entry
4. Do one run through all tests
5. Enable Referential integrity and MemberOf plugins
6. Launch three new threads to add a bunch of users
7. While we are adding users restart the MemberOf and
Linked Attributes plugins many times
8. Wait for the 'adding' threads to complete
9. Now launch three threads to delete the users
10. Restart both the MemberOf, Referential integrity and
Linked Attributes plugins during these deletes
11. Wait for the 'deleting' threads to complete
12. Now make sure both the MemberOf and Referential integrity plugins still work correctly
13. Cleanup the stress tests (delete the group entry)
14. Perform 4-13 steps five times
15. Resume replication
16. Go through 4-14 steps once more
17. Check that data in sync and replication is working
:expectedresults:
1. Success
2. Success
3. Success
4. Success
5. Success
6. Success
7. Success
8. Success
9. Success
10. Success
11. Success
12. Success
13. Success
14. Success
15. Success
16. Success
17. Success
"""

m1 = topology_m2.ms["master1"]
msg = ' (no replication)'
replication_run = False
stress_max_runs = 5

# First part of the test should be without replication
topology_m2.pause_all_replicas()

# First enable dynamic plugins
m1.config.replace('nsslapd-dynamic-plugins', 'on')

# Test that critical plugins can be updated even though the change might not be applied
ldbm_config = LDBMConfig(m1)
ldbm_config.replace('description', 'test')

while True:
# First run the tests with replication disabled, then rerun them with replication set up

log.info('Do one run through all tests ' + msg + '...')
> acceptance_test.check_all_plugins(topology_m2)

suites/dynamic_plugins/dynamic_plugins_test.py:310:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
suites/plugins/acceptance_test.py:1807: in check_all_plugins
func(topo, args)
suites/plugins/acceptance_test.py:1588: in test_retrocl
plugin.enable()
/usr/local/lib/python3.8/site-packages/lib389/plugins.py:58: in enable
self.set('nsslapd-pluginEnabled', 'on')
/usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:446: in set
return self._instance.modify_ext_s(self._dn, [(action, key, value)],
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:613: in modify_ext_s
resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3
resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4(
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4
ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call
reraise(exc_type, exc_value, exc_traceback)
/usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise
raise exc_value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65e663b280>
func = <built-in method result4 of LDAP object at 0x7f65e933ff30>
args = (1211, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None
exc_type = None, exc_value = None, exc_traceback = None

def _ldap_call(self,func,*args,**kwargs):
"""
Wrapper method mainly for serializing calls into OpenLDAP libs
and trace logs
"""
self._ldap_object_lock.acquire()
if __debug__:
if self._trace_level>=1:
self._trace_file.write('*** %s %s - %s\n%s\n' % (
repr(self),
self._uri,
'.'.join((self.__class__.__name__,func.__name__)),
pprint.pformat((args,kwargs))
))
if self._trace_level>=9:
traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file)
diagnostic_message_success = None
try:
try:
> result = func(*args,**kwargs)
E ldap.UNWILLING_TO_PERFORM: {'msgtype': 103, 'msgid': 1211, 'result': 53, 'desc': 'Server is unwilling to perform', 'ctrls': [], 'info': 'Failed to start plugin "Retro Changelog Plugin". See errors log.'}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: UNWILLING_TO_PERFORM
Failed suites/password/regression_test.py::test_unhashed_pw_switch 4.59
topo_master = <lib389.topologies.TopologyMain object at 0x7f65e5448c70>

@pytest.mark.ds49789
def test_unhashed_pw_switch(topo_master):
"""Check that nsslapd-unhashed-pw-switch works corrently

:id: e5aba180-d174-424d-92b0-14fe7bb0b92a
:setup: Master Instance
:steps:
1. A Master is created, enable retrocl (not used here)
2. Create a set of users
3. update userpassword of user1 and check that unhashed#user#password is not logged (default)
4. udpate userpassword of user2 and check that unhashed#user#password is not logged ('nolog')
5. udpate userpassword of user3 and check that unhashed#user#password is logged ('on')
:expectedresults:
1. Success
2. Success
3. Success (unhashed#user#password is not logged in the replication changelog)
4. Success (unhashed#user#password is not logged in the replication changelog)
5. Success (unhashed#user#password is logged in the replication changelog)
"""
MAX_USERS = 10
PEOPLE_DN = ("ou=people," + DEFAULT_SUFFIX)

inst = topo_master.ms["master1"]
inst.modify_s("cn=Retro Changelog Plugin,cn=plugins,cn=config",
[(ldap.MOD_REPLACE, 'nsslapd-changelogmaxage', b'2m'),
(ldap.MOD_REPLACE, 'nsslapd-changelog-trim-interval', b"5s"),
(ldap.MOD_REPLACE, 'nsslapd-logAccess', b'on')])
inst.config.loglevel(vals=[256 + 4], service='access')
inst.restart()
# If you need any test suite initialization,
# please, write additional fixture for that (including finalizer).
# Topology for suites are predefined in lib389/topologies.py.

# enable dynamic plugins, memberof and retro cl plugin
#
log.info('Enable plugins...')
try:
inst.modify_s(DN_CONFIG,
[(ldap.MOD_REPLACE,
'nsslapd-dynamic-plugins',
b'on')])
except ldap.LDAPError as e:
ldap.error('Failed to enable dynamic plugins! ' + e.message['desc'])
assert False

#topology_st.standalone.plugins.enable(name=PLUGIN_MEMBER_OF)
> inst.plugins.enable(name=PLUGIN_RETRO_CHANGELOG)

suites/password/regression_test.py:268:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/plugins.py:2105: in enable
plugin.enable()
/usr/local/lib/python3.8/site-packages/lib389/plugins.py:58: in enable
self.set('nsslapd-pluginEnabled', 'on')
/usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:446: in set
return self._instance.modify_ext_s(self._dn, [(action, key, value)],
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:613: in modify_ext_s
resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3
resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4(
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4
ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call
reraise(exc_type, exc_value, exc_traceback)
/usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise
raise exc_value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65e5448c10>
func = <built-in method result4 of LDAP object at 0x7f65e5507ea0>
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.UNWILLING_TO_PERFORM: {'msgtype': 103, 'msgid': 5, 'result': 53, 'desc': 'Server is unwilling to perform', 'ctrls': [], 'info': 'Failed to start plugin "Retro Changelog Plugin". See errors log.'}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: UNWILLING_TO_PERFORM
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:257 Enable plugins...
Failed suites/plugins/acceptance_test.py::test_retrocl 6.86
topo = <lib389.topologies.TopologyMain object at 0x7f65e55c27f0>, args = None

def test_retrocl(topo, args=None):
"""Test Retro Changelog basic functionality

:id: 9b87493b-0493-46f9-8364-6099d0e5d810
:setup: Standalone Instance
:steps:
1. Enable the plugin
2. Restart the instance
3. Gather the current change count (it's not 1 once we start the stability tests)
4. Add a user
5. Check we logged this in the retro cl
6. Change the config - disable plugin
7. Delete the user
8. Check we didn't log this in the retro cl
9. Check nsslapd-plugin-depends-on-named for the plugin
10. Clean up
:expectedresults:
1. Success
2. Success
3. Success
4. Success
5. Success
6. Success
7. Success
8. Success
9. Success
10. Success
"""

inst = topo[0]

# stop the plugin, and start it
plugin = RetroChangelogPlugin(inst)
plugin.disable()
plugin.enable()

if args == "restart":
return

# If args is None then we run the test suite as pytest standalone and it's not dynamic
if args is None:
> inst.restart()

suites/plugins/acceptance_test.py:1595:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:1276: in restart
self.start(timeout, post_open)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:1135: in start
subprocess.check_output(["systemctl", "start", "dirsrv@%s" % self.serverid], stderr=subprocess.STDOUT)
/usr/lib64/python3.8/subprocess.py:411: in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

input = None, capture_output = False, timeout = None, check = True
popenargs = (['systemctl', 'start', 'dirsrv@standalone1'],)
kwargs = {'stderr': -2, 'stdout': -1}
process = <subprocess.Popen object at 0x7f65e5536730>
stdout = b'Job for dirsrv@standalone1.service failed because the control process exited with error code.\nSee "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details.\n'
stderr = None, retcode = 1

def run(*popenargs,
input=None, capture_output=False, timeout=None, check=False, **kwargs):
"""Run command with arguments and return a CompletedProcess instance.

The returned instance will have attributes args, returncode, stdout and
stderr. By default, stdout and stderr are not captured, and those attributes
will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them.

If check is True and the exit code was non-zero, it raises a
CalledProcessError. The CalledProcessError object will have the return code
in the returncode attribute, and output & stderr attributes if those streams
were captured.

If timeout is given, and the process takes too long, a TimeoutExpired
exception will be raised.

There is an optional argument "input", allowing you to
pass bytes or a string to the subprocess's stdin. If you use this argument
you may not also use the Popen constructor's "stdin" argument, as
it will be used internally.

By default, all communication is in bytes, and therefore any "input" should
be bytes, and the stdout and stderr will be bytes. If in text mode, any
"input" should be a string, and stdout and stderr will be strings decoded
according to locale encoding, or by "encoding" if set. Text mode is
triggered by setting any of text, encoding, errors or universal_newlines.

The other arguments are the same as for the Popen constructor.
"""
if input is not None:
if kwargs.get('stdin') is not None:
raise ValueError('stdin and input arguments may not both be used.')
kwargs['stdin'] = PIPE

if capture_output:
if kwargs.get('stdout') is not None or kwargs.get('stderr') is not None:
raise ValueError('stdout and stderr arguments may not be used '
'with capture_output.')
kwargs['stdout'] = PIPE
kwargs['stderr'] = PIPE

with Popen(*popenargs, **kwargs) as process:
try:
stdout, stderr = process.communicate(input, timeout=timeout)
except TimeoutExpired as exc:
process.kill()
if _mswindows:
# Windows accumulates the output in a single blocking
# read() call run on child threads, with the timeout
# being done in a join() on those threads. communicate()
# _after_ kill() is required to collect that and add it
# to the exception.
exc.stdout, exc.stderr = process.communicate()
else:
# POSIX _communicate already populated the output so
# far into the TimeoutExpired exception.
process.wait()
raise
except: # Including KeyboardInterrupt, communicate handled that.
process.kill()
# We don't call process.wait() as .__exit__ does that for us.
raise
retcode = process.poll()
if check and retcode:
> raise CalledProcessError(retcode, process.args,
output=stdout, stderr=stderr)
E subprocess.CalledProcessError: Command '['systemctl', 'start', 'dirsrv@standalone1']' returned non-zero exit status 1.

/usr/lib64/python3.8/subprocess.py:512: CalledProcessError
Failed suites/plugins/acceptance_test.py::test_rootdn 0.00
topo = <lib389.topologies.TopologyMain object at 0x7f65e55c27f0>, args = None

def test_rootdn(topo, args=None):
"""Test Root DNA Access control basic functionality

:id: 9b87493b-0493-46f9-8364-6099d0e5d811
:setup: Standalone Instance
:steps:
1. Enable the plugin
2. Restart the instance
3. Add an user and aci to open up cn=config
4. Set an aci so we can modify the plugin after we deny the root dn
5. Set allowed IP to an unknown host - blocks root dn
6. Bind as Root DN
7. Bind as the user who can make updates to the config
8. Test that invalid plugin changes are rejected
9. Remove the restriction
10. Bind as Root DN
11. Check nsslapd-plugin-depends-on-named for the plugin
12. Clean up
:expectedresults:
1. Success
2. Success
3. Success
4. Success
5. Success
6. Success
7. Success
8. Success
9. Success
10. Success
11. Success
12. Success
"""

inst = topo[0]

# stop the plugin, and start it
plugin = RootDNAccessControlPlugin(inst)
> plugin.disable()

suites/plugins/acceptance_test.py:1704:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/plugins.py:63: in disable
self.set('nsslapd-pluginEnabled', 'off')
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.plugins.RootDNAccessControlPlugin object at 0x7f65e604c820>
key = 'nsslapd-pluginEnabled', value = 'off', action = 2

def set(self, key, value, action=ldap.MOD_REPLACE):
"""Perform a specified action on a key with value

:param key: an attribute name
:type key: str
:param value: an attribute value
:type value: str
:param action: - ldap.MOD_REPLACE - by default
- ldap.MOD_ADD
- ldap.MOD_DELETE
:type action: int

:returns: result of modify_s operation
:raises: ValueError - if instance is not online
"""

if action == ldap.MOD_ADD:
action_txt = "ADD"
elif action == ldap.MOD_REPLACE:
action_txt = "REPLACE"
elif action == ldap.MOD_DELETE:
action_txt = "DELETE"
else:
# This should never happen (bug!)
action_txt = "UNKNOWN"

if value is None or len(value) < 512:
self._log.debug("%s set %s: (%r, %r)" % (self._dn, action_txt, key, display_log_value(key, value)))
else:
self._log.debug("%s set %s: (%r, value too large)" % (self._dn, action_txt, key))
if self._instance.state != DIRSRV_STATE_ONLINE:
> raise ValueError("Invalid state. Cannot set properties on instance that is not ONLINE.")
E ValueError: Invalid state. Cannot set properties on instance that is not ONLINE.

/usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:438: ValueError
Failed suites/plugins/accpol_test.py::test_glnologin_attr 24.87
topology_st = <lib389.topologies.TopologyMain object at 0x7f65e564d2b0>
accpol_global = None

def test_glnologin_attr(topology_st, accpol_global):
"""Verify if user account is inactivated based on createTimeStamp attribute, no lastLoginTime attribute present

:id: 3032f670-705d-4f69-96f5-d75445cffcfb
:setup: Standalone instance, Local account policy plugin configuration,
set accountInactivityLimit to few secs.
:steps:
1. Configure Global account policy plugin with createTimestamp as stateattrname
2. lastLoginTime attribute will not be effective.
3. Add few users to ou=groups subtree in the default suffix
4. Wait for 10 secs and check if account is not inactivated, expected 0
5. Modify AccountInactivityLimit to 20 secs
6. Wait for +9 secs and check if account is not inactivated, expected 0
7. Wait for +3 secs and check if account is inactivated, error 19
8. Modify accountInactivityLimit to 3 secs
9. Add few users to ou=groups subtree in the default suffix
10. Wait for 3 secs and check if account is inactivated, error 19
11. Modify accountInactivityLimit to 30 secs
12. Add few users to ou=groups subtree in the default suffix
13. Wait for 90 secs and check if account is not inactivated, expected 0
14. Wait for +28 secs and check if account is not inactivated, expected 0
15. Wait for +2 secs and check if account is inactivated, error 19
16. Replace the lastLoginTime attribute and check if account is activated
17. Modify accountInactivityLimit to 12 secs, which is the default
18. Run ldapsearch as normal user, expected 0.
:assert:
1. Success
2. Success
3. Success
4. Success
5. Success
6. Success
7. Success
8. Success
9. Success
10. Success
11. Success
12. Success
13. Success
14. Success
15. Success
16. Success
17. Success
18. Success
"""

suffix = DEFAULT_SUFFIX
subtree = "ou=groups"
userid = "nologinusr"
nousrs = 3

log.info('AccountInactivityLimit set to 12. Account will be inactivated if not accessed in 12 secs')
log.info('Set attribute StateAttrName to createTimestamp, loginTime attr wont be considered')
modify_attr(topology_st, ACCP_CONF, 'stateattrname', 'createTimestamp')
topology_st.standalone.restart(timeout=10)
add_users(topology_st, suffix, subtree, userid, nousrs, 2)
log.info('Sleep for 9 secs to check if account is not inactivated, expected 0')
time.sleep(9)
account_status(topology_st, suffix, subtree, userid, nousrs, 2, "Enabled")

modify_attr(topology_st, ACCP_CONF, 'accountInactivityLimit', '20')
time.sleep(9)
> account_status(topology_st, suffix, subtree, userid, nousrs, 2, "Enabled")

suites/plugins/accpol_test.py:586:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
suites/plugins/accpol_test.py:311: in account_status
raise e
suites/plugins/accpol_test.py:308: in account_status
user.bind(USER_PASW)
/usr/local/lib/python3.8/site-packages/lib389/idm/account.py:212: in bind
inst_clone.open(*args, **kwargs)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:1081: in open
raise e
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:1074: in open
self.simple_bind_s(ensure_str(self.binddn), self.bindpw, escapehatch='i am sure')
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:455: in simple_bind_s
resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3
resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4(
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4
ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call
reraise(exc_type, exc_value, exc_traceback)
/usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise
raise exc_value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65e56dcf10>
func = <built-in method result4 of LDAP object at 0x7f65e56dc480>
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.CONSTRAINT_VIOLATION: {'msgtype': 97, 'msgid': 1, 'result': 19, 'desc': 'Constraint violation', 'ctrls': [], 'info': 'Account inactivity limit exceeded. Contact system administrator to reset.'}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: CONSTRAINT_VIOLATION
-------------------------------Captured log call--------------------------------
INFO  lib389.utils:accpol_test.py:575 AccountInactivityLimit set to 12. Account will be inactivated if not accessed in 12 secs INFO  lib389.utils:accpol_test.py:576 Set attribute StateAttrName to createTimestamp, loginTime attr wont be considered INFO  lib389.utils:accpol_test.py:189 Modify attribute value for a given DN INFO  lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs INFO  lib389.utils:accpol_test.py:580 Sleep for 9 secs to check if account is not inactivated, expected 0 INFO  lib389.utils:accpol_test.py:189 Modify attribute value for a given DN ERROR  lib389.utils:accpol_test.py:310 User uid=nologinusr3,ou=groups,dc=example,dc=com failed to login, expected 0
Failed suites/plugins/accpol_test.py::test_glnoalt_stattr 4.89
topology_st = <lib389.topologies.TopologyMain object at 0x7f65e564d2b0>
accpol_global = None

def test_glnoalt_stattr(topology_st, accpol_global):
"""Verify if user account can be inactivated based on lastLoginTime attribute, altstateattrname set to 1.1

:id: 8dcc3540-578f-422a-bb44-28c2cf20dbcd
:setup: Standalone instance, Global account policy plugin configuration,
set accountInactivityLimit to few secs.
:steps:
1. Configure Global account policy plugin with altstateattrname to 1.1
2. Add few users to ou=groups subtree in the default suffix
3. Wait till it reaches accountInactivityLimit
4. Remove lastLoginTime attribute from the user entry
5. Run ldapsearch as normal user, expected 0. no lastLoginTime attribute present
6. Wait till it reaches accountInactivityLimit and check users, expected error 19
:assert:
1. Success
2. Success
3. Success
4. Success
5. Success
6. Success
"""

suffix = DEFAULT_SUFFIX
subtree = "ou=groups"
userid = "nologinusr"
nousrs = 3
log.info('Set attribute altStateAttrName to 1.1')
modify_attr(topology_st, ACCP_CONF, 'altstateattrname', '1.1')
topology_st.standalone.restart(timeout=10)
> add_users(topology_st, suffix, subtree, userid, nousrs, 0)

suites/plugins/accpol_test.py:643:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
suites/plugins/accpol_test.py:283: in add_users
users.create(properties=user_properties)
/usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:1169: in create
return co.create(rdn, properties, self._basedn)
/usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:971: in create
return self._create(rdn, properties, basedn, ensure=False)
/usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:946: in _create
self._instance.add_ext_s(e, serverctrls=self._server_controls, clientctrls=self._client_controls, escapehatch='i am sure')
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:176: in inner
return f(ent.dn, ent.toTupleList(), *args[2:])
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:425: in add_ext_s
resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3
resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4(
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4
ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call
reraise(exc_type, exc_value, exc_traceback)
/usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise
raise exc_value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65e5594790>
func = <built-in method result4 of LDAP object at 0x7f65e56dc4e0>
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.ALREADY_EXISTS: {'msgtype': 105, 'msgid': 5, 'result': 68, 'desc': 'Already exists', 'ctrls': []}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: ALREADY_EXISTS
-------------------------------Captured log call--------------------------------
INFO  lib389.utils:accpol_test.py:640 Set attribute altStateAttrName to 1.1 INFO  lib389.utils:accpol_test.py:189 Modify attribute value for a given DN INFO  lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs
Failed suites/plugins/accpol_test.py::test_glattr_modtime 18.42
topology_st = <lib389.topologies.TopologyMain object at 0x7f65e564d2b0>
accpol_global = None

def test_glattr_modtime(topology_st, accpol_global):
"""Verify if user account can be inactivated based on modifyTimeStamp attribute

:id: 67380839-2966-45dc-848a-167a954153e1
:setup: Standalone instance, Global account policy plugin configuration,
set accountInactivityLimit to few secs.
:steps:
1. Configure Global account policy plugin with altstateattrname to modifyTimestamp
2. Add few users to ou=groups subtree in the default suffix
3. Wait till the accountInactivityLimit exceeded and check users, expected error 19
4. Modify cn attribute for user, ModifyTimeStamp is updated.
5. Check if user is activated based on ModifyTimeStamp attribute, expected 0
6. Change the plugin to use createTimeStamp and remove lastLoginTime attribute
7. Check if account is inactivated, expected error 19
:assert:
1. Success
2. Success
3. Success
4. Success
5. Success
6. Success
7. Success
"""

suffix = DEFAULT_SUFFIX
subtree = "ou=groups"
userid = "modtimeusr"
nousrs = 3
log.info('Set attribute altStateAttrName to modifyTimestamp')
modify_attr(topology_st, ACCP_CONF, 'altstateattrname', 'modifyTimestamp')
topology_st.standalone.restart(timeout=10)
add_users(topology_st, suffix, subtree, userid, nousrs, 0)
log.info('Sleep for 13 secs to check if account is inactivated, expected 0')
time.sleep(13)
check_attr(topology_st, suffix, subtree, userid, nousrs, "modifyTimeStamp=*")
> account_status(topology_st, suffix, subtree, userid, nousrs, 0, "Disabled")

suites/plugins/accpol_test.py:694:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

topology_st = <lib389.topologies.TopologyMain object at 0x7f65e564d2b0>
suffix = 'dc=example,dc=com', subtree = 'ou=groups', userid = 'modtimeusr'
nousrs = 3, ulimit = 0, tochck = 'Disabled'

def account_status(topology_st, suffix, subtree, userid, nousrs, ulimit, tochck):
"""Check account status for the given suffix, subtree, userid and nousrs"""

while (nousrs > ulimit):
usrrdn = '{}{}'.format(userid, nousrs)
userdn = 'uid={},{},{}'.format(usrrdn, subtree, suffix)
user = UserAccount(topology_st.standalone, dn=userdn)
if (tochck == "Enabled"):
try:
user.bind(USER_PASW)
except ldap.LDAPError as e:
log.error('User {} failed to login, expected 0'.format(userdn))
raise e
elif (tochck == "Expired"):
with pytest.raises(ldap.INVALID_CREDENTIALS):
user.bind(USER_PASW)
log.error('User {} password not expired , expected error 49'.format(userdn))
elif (tochck == "Disabled"):
with pytest.raises(ldap.CONSTRAINT_VIOLATION):
user.bind(USER_PASW)
> log.error('User {} is not inactivated, expected error 19'.format(userdn))
E Failed: DID NOT RAISE <class 'ldap.CONSTRAINT_VIOLATION'>

suites/plugins/accpol_test.py:319: Failed
-------------------------------Captured log call--------------------------------
INFO  lib389.utils:accpol_test.py:687 Set attribute altStateAttrName to modifyTimestamp INFO  lib389.utils:accpol_test.py:189 Modify attribute value for a given DN INFO  lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs INFO  lib389.utils:accpol_test.py:691 Sleep for 13 secs to check if account is inactivated, expected 0 INFO  lib389.utils:accpol_test.py:202 Check ModifyTimeStamp attribute present for user ERROR  lib389.utils:accpol_test.py:319 User uid=modtimeusr3,ou=groups,dc=example,dc=com is not inactivated, expected error 19
Failed suites/plugins/accpol_test.py::test_glnoalt_nologin 27.34
topology_st = <lib389.topologies.TopologyMain object at 0x7f65e564d2b0>
accpol_global = None

def test_glnoalt_nologin(topology_st, accpol_global):
"""Verify if account policy plugin works if we set altstateattrname set to 1.1 and alwaysrecordlogin to NO

:id: 49eda7db-84de-47ba-8f81-ac5e4de3a500
:setup: Standalone instance, Global account policy plugin configuration,
set accountInactivityLimit to few secs.
:steps:
1. Configure Global account policy plugin with altstateattrname to 1.1
2. Set alwaysrecordlogin to NO.
3. Add few users to ou=groups subtree in the default suffix
4. Wait till accountInactivityLimit exceeded and check users, expected 0
5. Check for lastLoginTime attribute, it should not be present
6. Wait for few more secs and check if account is not inactivated, expected 0
7. Run ldapsearch as normal user, expected 0. no lastLoginTime attribute present
8. Set altstateattrname to createTimeStamp
9. Check if user account is inactivated based on createTimeStamp attribute.
10. Account should be inactivated, expected error 19
:assert:
1. Success
2. Success
3. Success
4. Success
5. Success
6. Success
7. Success
8. Success
9. Success
10. Success
"""

suffix = DEFAULT_SUFFIX
subtree = "ou=groups"
userid = "norecrodlogusr"
nousrs = 3
log.info('Set attribute altStateAttrName to 1.1')
modify_attr(topology_st, ACCP_CONF, 'altstateattrname', '1.1')
log.info('Set attribute alwaysrecordlogin to No')
modify_attr(topology_st, ACCP_CONF, 'alwaysrecordlogin', 'no')
topology_st.standalone.restart(timeout=10)
add_users(topology_st, suffix, subtree, userid, nousrs, 0)
log.info('Sleep for 13 secs to check if account is not inactivated, expected 0')
time.sleep(13)
account_status(topology_st, suffix, subtree, userid, nousrs, 0, "Enabled")
time.sleep(3)
> account_status(topology_st, suffix, subtree, userid, nousrs, 0, "Enabled")

suites/plugins/accpol_test.py:752:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
suites/plugins/accpol_test.py:311: in account_status
raise e
suites/plugins/accpol_test.py:308: in account_status
user.bind(USER_PASW)
/usr/local/lib/python3.8/site-packages/lib389/idm/account.py:212: in bind
inst_clone.open(*args, **kwargs)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:1081: in open
raise e
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:1074: in open
self.simple_bind_s(ensure_str(self.binddn), self.bindpw, escapehatch='i am sure')
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:455: in simple_bind_s
resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3
resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4(
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4
ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call
reraise(exc_type, exc_value, exc_traceback)
/usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise
raise exc_value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65e5513550>
func = <built-in method result4 of LDAP object at 0x7f65e672c360>
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.CONSTRAINT_VIOLATION: {'msgtype': 97, 'msgid': 1, 'result': 19, 'desc': 'Constraint violation', 'ctrls': [], 'info': 'Account inactivity limit exceeded. Contact system administrator to reset.'}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: CONSTRAINT_VIOLATION
-------------------------------Captured log call--------------------------------
INFO  lib389.utils:accpol_test.py:742 Set attribute altStateAttrName to 1.1 INFO  lib389.utils:accpol_test.py:189 Modify attribute value for a given DN INFO  lib389.utils:accpol_test.py:744 Set attribute alwaysrecordlogin to No INFO  lib389.utils:accpol_test.py:189 Modify attribute value for a given DN INFO  lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs INFO  lib389.utils:accpol_test.py:748 Sleep for 13 secs to check if account is not inactivated, expected 0 ERROR  lib389.utils:accpol_test.py:310 User uid=norecrodlogusr1,ou=groups,dc=example,dc=com failed to login, expected 0
Failed suites/plugins/accpol_test.py::test_glinact_nsact 15.94
topology_st = <lib389.topologies.TopologyMain object at 0x7f65e564d2b0>
accpol_global = None

def test_glinact_nsact(topology_st, accpol_global):
"""Verify if user account can be activated using ns-activate.pl script.

:id: 876a7a7c-0b3f-4cd2-9b45-1dc80846e334
:setup: Standalone instance, Global account policy plugin configuration,
set accountInactivityLimit to few secs.
:steps:
1. Configure Global account policy plugin
2. Add few users to ou=groups subtree in the default suffix
3. Wait for few secs and inactivate user using ns-inactivate.pl
4. Wait till accountInactivityLimit exceeded.
5. Run ldapsearch as normal user, expected error 19.
6. Activate user using ns-activate.pl script
7. Check if account is activated, expected error 19
8. Replace the lastLoginTime attribute and check if account is activated
9. Run ldapsearch as normal user, expected 0.
:assert:
1. Success
2. Success
3. Success
4. Success
5. Success
6. Success
7. Success
8. Success
9. Success
"""

suffix = DEFAULT_SUFFIX
subtree = "ou=groups"
userid = "nsactusr"
nousrs = 1
log.info('AccountInactivityLimit set to 12. Account will be inactivated if not accessed in 12 secs')
add_users(topology_st, suffix, subtree, userid, nousrs, 0)
log.info('Sleep for 3 secs to check if account is not inactivated, expected value 0')
time.sleep(3)
nsact_inact(topology_st, suffix, subtree, userid, nousrs, "ns-activate.pl", "")
log.info('Sleep for 10 secs to check if account is inactivated, expected value 19')
time.sleep(10)
nsact_inact(topology_st, suffix, subtree, userid, nousrs, "ns-activate.pl", "")
> account_status(topology_st, suffix, subtree, userid, nousrs, 0, "Disabled")

suites/plugins/accpol_test.py:806:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

topology_st = <lib389.topologies.TopologyMain object at 0x7f65e564d2b0>
suffix = 'dc=example,dc=com', subtree = 'ou=groups', userid = 'nsactusr'
nousrs = 1, ulimit = 0, tochck = 'Disabled'

def account_status(topology_st, suffix, subtree, userid, nousrs, ulimit, tochck):
"""Check account status for the given suffix, subtree, userid and nousrs"""

while (nousrs > ulimit):
usrrdn = '{}{}'.format(userid, nousrs)
userdn = 'uid={},{},{}'.format(usrrdn, subtree, suffix)
user = UserAccount(topology_st.standalone, dn=userdn)
if (tochck == "Enabled"):
try:
user.bind(USER_PASW)
except ldap.LDAPError as e:
log.error('User {} failed to login, expected 0'.format(userdn))
raise e
elif (tochck == "Expired"):
with pytest.raises(ldap.INVALID_CREDENTIALS):
user.bind(USER_PASW)
log.error('User {} password not expired , expected error 49'.format(userdn))
elif (tochck == "Disabled"):
with pytest.raises(ldap.CONSTRAINT_VIOLATION):
user.bind(USER_PASW)
> log.error('User {} is not inactivated, expected error 19'.format(userdn))
E Failed: DID NOT RAISE <class 'ldap.CONSTRAINT_VIOLATION'>

suites/plugins/accpol_test.py:319: Failed
------------------------------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.
-------------------------------Captured log call--------------------------------
INFO  lib389.utils:accpol_test.py:798 AccountInactivityLimit set to 12. Account will be inactivated if not accessed in 12 secs INFO  lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs INFO  lib389.utils:accpol_test.py:800 Sleep for 3 secs to check if account is not inactivated, expected value 0 INFO  lib389.utils:accpol_test.py:162 Account activate/in-activate/status using ns-activate/inactivate/accountstatus.pl INFO  lib389.utils:accpol_test.py:166 Running ns-activate.pl for user uid=nsactusr1,ou=groups,dc=example,dc=com INFO  lib389.utils:accpol_test.py:180 output: b'uid=nsactusr1,ou=groups,dc=example,dc=com already activated.\n' INFO  lib389.utils:accpol_test.py:803 Sleep for 10 secs to check if account is inactivated, expected value 19 INFO  lib389.utils:accpol_test.py:162 Account activate/in-activate/status using ns-activate/inactivate/accountstatus.pl INFO  lib389.utils:accpol_test.py:166 Running ns-activate.pl for user uid=nsactusr1,ou=groups,dc=example,dc=com INFO  lib389.utils:accpol_test.py:180 output: b'uid=nsactusr1,ou=groups,dc=example,dc=com already activated.\n' ERROR  lib389.utils:accpol_test.py:319 User uid=nsactusr1,ou=groups,dc=example,dc=com is not inactivated, expected error 19
Failed suites/plugins/accpol_test.py::test_glinact_acclock 14.31
topology_st = <lib389.topologies.TopologyMain object at 0x7f65e564d2b0>
accpol_global = None

def test_glinact_acclock(topology_st, accpol_global):
"""Verify if user account is activated when account is unlocked by passwordlockoutduration.

:id: 43601a61-065c-4c80-a7c2-e4f6ae17beb8
:setup: Standalone instance, Global account policy plugin configuration,
set accountInactivityLimit to few secs.
:steps:
1. Add few users to ou=groups subtree in the default suffix
2. Wait for few secs and attempt invalid binds for user
3. User account should be locked based on Account Lockout policy.
4. Wait till accountInactivityLimit exceeded and check users, expected error 19
5. Wait for passwordlockoutduration and check if account is active
6. Check if account is unlocked, expected error 19, since account is inactivated
7. Replace the lastLoginTime attribute and check users, expected 0
:assert:
1. Success
2. Success
3. Success
4. Success
5. Success
6. Success
7. Success
"""

suffix = DEFAULT_SUFFIX
subtree = "ou=groups"
userid = "pwlockusr"
nousrs = 1
log.info('AccountInactivityLimit set to 12. Account will be inactivated if not accessed in 12 secs')
add_users(topology_st, suffix, subtree, userid, nousrs, 0)
log.info('Sleep for 3 secs and try invalid binds to lockout the user')
time.sleep(3)

pwacc_lock(topology_st, suffix, subtree, userid, nousrs)
log.info('Sleep for 10 secs to check if account is inactivated, expected value 19')
time.sleep(10)
> account_status(topology_st, suffix, subtree, userid, nousrs, 0, "Disabled")

suites/plugins/accpol_test.py:851:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

topology_st = <lib389.topologies.TopologyMain object at 0x7f65e564d2b0>
suffix = 'dc=example,dc=com', subtree = 'ou=groups', userid = 'pwlockusr'
nousrs = 1, ulimit = 0, tochck = 'Disabled'

def account_status(topology_st, suffix, subtree, userid, nousrs, ulimit, tochck):
"""Check account status for the given suffix, subtree, userid and nousrs"""

while (nousrs > ulimit):
usrrdn = '{}{}'.format(userid, nousrs)
userdn = 'uid={},{},{}'.format(usrrdn, subtree, suffix)
user = UserAccount(topology_st.standalone, dn=userdn)
if (tochck == "Enabled"):
try:
user.bind(USER_PASW)
except ldap.LDAPError as e:
log.error('User {} failed to login, expected 0'.format(userdn))
raise e
elif (tochck == "Expired"):
with pytest.raises(ldap.INVALID_CREDENTIALS):
user.bind(USER_PASW)
log.error('User {} password not expired , expected error 49'.format(userdn))
elif (tochck == "Disabled"):
with pytest.raises(ldap.CONSTRAINT_VIOLATION):
user.bind(USER_PASW)
> log.error('User {} is not inactivated, expected error 19'.format(userdn))
E Failed: DID NOT RAISE <class 'ldap.CONSTRAINT_VIOLATION'>

suites/plugins/accpol_test.py:319: Failed
-------------------------------Captured log call--------------------------------
INFO  lib389.utils:accpol_test.py:843 AccountInactivityLimit set to 12. Account will be inactivated if not accessed in 12 secs INFO  lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs INFO  lib389.utils:accpol_test.py:845 Sleep for 3 secs and try invalid binds to lockout the user INFO  lib389.utils:accpol_test.py:118 Lockout user account by attempting invalid password binds INFO  lib389.utils:accpol_test.py:849 Sleep for 10 secs to check if account is inactivated, expected value 19 ERROR  lib389.utils:accpol_test.py:319 User uid=pwlockusr1,ou=groups,dc=example,dc=com is not inactivated, expected error 19
Failed suites/plugins/accpol_test.py::test_glnact_pwexp 14.09
topology_st = <lib389.topologies.TopologyMain object at 0x7f65e564d2b0>
accpol_global = None

def test_glnact_pwexp(topology_st, accpol_global):
"""Verify if user account is activated when password is reset after password is expired

:id: 3bb97992-101a-4e5a-b60a-4cc21adcc76e
:setup: Standalone instance, Global account policy plugin configuration,
set accountInactivityLimit to few secs.
:steps:
1. Add few users to ou=groups subtree in the default suffix
2. Set passwordmaxage to few secs
3. Wait for passwordmaxage to reach and check if password expired
4. Run ldapsearch as normal user, expected error 19.
5. Reset the password for user account
6. Wait till accountInactivityLimit exceeded and check users
7. Run ldapsearch as normal user, expected error 19.
8. Replace the lastLoginTime attribute and check if account is activated
9. Run ldapsearch as normal user, expected 0.
:assert:
1. Success
2. Success
3. Success
4. Success
5. Success
6. Success
7. Success
8. Success
9. Success
"""

suffix = DEFAULT_SUFFIX
subtree = "ou=groups"
userid = "pwexpusr"
nousrs = 1
try:
topology_st.standalone.config.set('passwordmaxage', '9')
except ldap.LDAPError as e:
log.error('Failed to change the value of passwordmaxage to 9')
raise e
log.info('AccountInactivityLimit set to 12. Account will be inactivated if not accessed in 12 secs')
log.info('Passwordmaxage is set to 9. Password will expire in 9 secs')
add_users(topology_st, suffix, subtree, userid, nousrs, 0)

log.info('Sleep for 9 secs and check if password expired')
time.sleep(9)
account_status(topology_st, suffix, subtree, userid, nousrs, 0, "Expired")
time.sleep(4) # Passed inactivity
> account_status(topology_st, suffix, subtree, userid, nousrs, 0, "Disabled")

suites/plugins/accpol_test.py:916:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
suites/plugins/accpol_test.py:318: in account_status
user.bind(USER_PASW)
/usr/local/lib/python3.8/site-packages/lib389/idm/account.py:212: in bind
inst_clone.open(*args, **kwargs)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:1081: in open
raise e
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:1074: in open
self.simple_bind_s(ensure_str(self.binddn), self.bindpw, escapehatch='i am sure')
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:455: in simple_bind_s
resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3
resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4(
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4
ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call
reraise(exc_type, exc_value, exc_traceback)
/usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise
raise exc_value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65e5108ee0>
func = <built-in method result4 of LDAP object at 0x7f65e51951b0>
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.INVALID_CREDENTIALS: {'msgtype': 97, 'msgid': 1, 'result': 49, 'desc': 'Invalid credentials', 'ctrls': [('2.16.840.1.113730.3.4.4', 0, b'0')], 'info': 'password expired!'}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: INVALID_CREDENTIALS
-------------------------------Captured log call--------------------------------
INFO  lib389.utils:accpol_test.py:908 AccountInactivityLimit set to 12. Account will be inactivated if not accessed in 12 secs INFO  lib389.utils:accpol_test.py:909 Passwordmaxage is set to 9. Password will expire in 9 secs INFO  lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs INFO  lib389.utils:accpol_test.py:912 Sleep for 9 secs and check if password expired
Failed suites/plugins/accpol_test.py::test_locact_inact 28.22
topology_st = <lib389.topologies.TopologyMain object at 0x7f65e564d2b0>
accpol_local = None

def test_locact_inact(topology_st, accpol_local):
"""Verify if user account is inactivated when accountInactivityLimit is exceeded.

:id: 02140e36-79eb-4d88-ba28-66478689289b
:setup: Standalone instance, ou=people subtree configured for Local account
policy plugin configuration, set accountInactivityLimit to few secs.
:steps:
1. Add few users to ou=people subtree in the default suffix
2. Wait for few secs before it reaches accountInactivityLimit and check users.
3. Run ldapsearch as normal user, expected 0
4. Wait till accountInactivityLimit is exceeded
5. Run ldapsearch as normal user and check if its inactivated, expected error 19.
6. Replace user's lastLoginTime attribute and check if its activated, expected 0
:assert:
1. Success
2. Success
3. Success
4. Success
5. Success
6. Should return error code 19
"""

suffix = DEFAULT_SUFFIX
subtree = "ou=people"
userid = "inactusr"
nousrs = 3
log.info('AccountInactivityLimit set to 10. Account will be inactivated if not accessed in 10 secs')
add_users(topology_st, suffix, subtree, userid, nousrs, 0)
log.info('Sleep for 9 secs to check if account is not inactivated, expected value 0')
time.sleep(9)
log.info('Account should not be inactivated since AccountInactivityLimit not exceeded')
account_status(topology_st, suffix, subtree, userid, 3, 2, "Enabled")
log.info('Sleep for 2 more secs to check if account is inactivated')
time.sleep(2)
account_status(topology_st, suffix, subtree, userid, 2, 0, "Disabled")
log.info('Sleep +9 secs to check if account {}3 is inactivated'.format(userid))
time.sleep(9)
account_status(topology_st, suffix, subtree, userid, 3, 2, "Disabled")
log.info('Add lastLoginTime attribute to all users and check if its activated')
add_time_attr(topology_st, suffix, subtree, userid, nousrs, 'lastLoginTime')
> account_status(topology_st, suffix, subtree, userid, nousrs, 0, "Enabled")

suites/plugins/accpol_test.py:994:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
suites/plugins/accpol_test.py:311: in account_status
raise e
suites/plugins/accpol_test.py:308: in account_status
user.bind(USER_PASW)
/usr/local/lib/python3.8/site-packages/lib389/idm/account.py:212: in bind
inst_clone.open(*args, **kwargs)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:1081: in open
raise e
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:1074: in open
self.simple_bind_s(ensure_str(self.binddn), self.bindpw, escapehatch='i am sure')
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:455: in simple_bind_s
resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3
resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4(
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4
ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call
reraise(exc_type, exc_value, exc_traceback)
/usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise
raise exc_value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65e5108700>
func = <built-in method result4 of LDAP object at 0x7f65e55f57e0>
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.CONSTRAINT_VIOLATION: {'msgtype': 97, 'msgid': 1, 'result': 19, 'desc': 'Constraint violation', 'ctrls': [], 'info': 'Account inactivity limit exceeded. Contact system administrator to reset.'}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: CONSTRAINT_VIOLATION
-------------------------------Captured log setup-------------------------------
INFO  lib389.utils:accpol_test.py:80 Adding Local account policy plugin configuration entries
-------------------------------Captured log call--------------------------------
INFO  lib389.utils:accpol_test.py:980 AccountInactivityLimit set to 10. Account will be inactivated if not accessed in 10 secs INFO  lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs INFO  lib389.utils:accpol_test.py:982 Sleep for 9 secs to check if account is not inactivated, expected value 0 INFO  lib389.utils:accpol_test.py:984 Account should not be inactivated since AccountInactivityLimit not exceeded INFO  lib389.utils:accpol_test.py:986 Sleep for 2 more secs to check if account is inactivated INFO  lib389.utils:accpol_test.py:989 Sleep +9 secs to check if account inactusr3 is inactivated INFO  lib389.utils:accpol_test.py:992 Add lastLoginTime attribute to all users and check if its activated INFO  lib389.utils:accpol_test.py:219 Enable account by replacing lastLoginTime/createTimeStamp/ModifyTimeStamp attribute ERROR  lib389.utils:accpol_test.py:310 User uid=inactusr3,ou=people,dc=example,dc=com failed to login, expected 0
Failed suites/plugins/accpol_test.py::test_locinact_modrdn 26.15
topology_st = <lib389.topologies.TopologyMain object at 0x7f65e564d2b0>
accpol_local = None

def test_locinact_modrdn(topology_st, accpol_local):
"""Verify if user account is inactivated when moved from ou=groups to ou=people subtree.

:id: 5f25bea3-fab0-4db4-b43d-2d47cc6e5ad1
:setup: Standalone instance, ou=people subtree configured for Local account
policy plugin configuration, set accountInactivityLimit to few secs.
:steps:
1. Add few users to ou=groups subtree in the default suffix
2. Plugin configured to ou=people subtree only.
3. Wait for few secs before it reaches accountInactivityLimit and check users.
4. Run ldapsearch as normal user, expected 0
5. Wait till accountInactivityLimit exceeded
6. Move users from ou=groups subtree to ou=people subtree
7. Check if users are inactivated, expected error 19
:assert:
1. Success
2. Success
3. Success
4. Success
5. Success
6. Success
7. Should return error code 0 and 19
"""

suffix = DEFAULT_SUFFIX
subtree = "ou=groups"
userid = "nolockusr"
nousrs = 1
log.info('Account should not be inactivated since the subtree is not configured')
add_users(topology_st, suffix, subtree, userid, nousrs, 0)
log.info('Sleep for 11 secs to check if account is not inactivated, expected value 0')
time.sleep(11)
account_status(topology_st, suffix, subtree, userid, nousrs, 0, "Enabled")
log.info('Moving users from ou=groups to ou=people subtree')
user = UserAccount(topology_st.standalone, dn='uid=nolockusr1,ou=groups,dc=example,dc=com')
try:
user.rename('uid=nolockusr1', newsuperior='ou=people,dc=example,dc=com')
except ldap.LDAPError as e:
log.error('Failed to move user uid=nolockusr1 from ou=groups to ou=people')
raise e
subtree = "ou=people"
log.info('Then wait for 11 secs and check if entries are inactivated')
time.sleep(11)
account_status(topology_st, suffix, subtree, userid, nousrs, 0, "Disabled")
add_time_attr(topology_st, suffix, subtree, userid, nousrs, 'lastLoginTime')
> account_status(topology_st, suffix, subtree, userid, nousrs, 0, "Enabled")

suites/plugins/accpol_test.py:1043:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
suites/plugins/accpol_test.py:311: in account_status
raise e
suites/plugins/accpol_test.py:308: in account_status
user.bind(USER_PASW)
/usr/local/lib/python3.8/site-packages/lib389/idm/account.py:212: in bind
inst_clone.open(*args, **kwargs)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:1081: in open
raise e
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:1074: in open
self.simple_bind_s(ensure_str(self.binddn), self.bindpw, escapehatch='i am sure')
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:455: in simple_bind_s
resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3
resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4(
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4
ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call
reraise(exc_type, exc_value, exc_traceback)
/usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise
raise exc_value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65e5321280>
func = <built-in method result4 of LDAP object at 0x7f65e5563b70>
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.CONSTRAINT_VIOLATION: {'msgtype': 97, 'msgid': 1, 'result': 19, 'desc': 'Constraint violation', 'ctrls': [], 'info': 'Account inactivity limit exceeded. Contact system administrator to reset.'}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: CONSTRAINT_VIOLATION
-------------------------------Captured log call--------------------------------
INFO  lib389.utils:accpol_test.py:1026 Account should not be inactivated since the subtree is not configured INFO  lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs INFO  lib389.utils:accpol_test.py:1028 Sleep for 11 secs to check if account is not inactivated, expected value 0 INFO  lib389.utils:accpol_test.py:1031 Moving users from ou=groups to ou=people subtree INFO  lib389.utils:accpol_test.py:1039 Then wait for 11 secs and check if entries are inactivated INFO  lib389.utils:accpol_test.py:219 Enable account by replacing lastLoginTime/createTimeStamp/ModifyTimeStamp attribute ERROR  lib389.utils:accpol_test.py:310 User uid=nolockusr1,ou=people,dc=example,dc=com failed to login, expected 0
Failed suites/replication/conflict_resolve_test.py::TestTwoMasters::test_complex_add_modify_modrdn_delete 82.91
self = <tests.suites.replication.conflict_resolve_test.TestTwoMasters object at 0x7f65e514ee80>
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f65e53cf760>
base_m2 = <lib389.idm.nscontainer.nsContainer object at 0x7f65e5130e80>

def test_complex_add_modify_modrdn_delete(self, topology_m2, base_m2):
"""Check that conflict properly resolved for complex operations
which involve add, modify, modrdn and delete

:id: 77f09b18-03d1-45da-940b-1ad2c2908eb1
: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 ten users to m1 and wait for replication to happen
2. Pause replication
3. Test add-del on m1 and add on m2
4. Test add-mod on m1 and add on m2
5. Test add-modrdn on m1 and add on m2
6. Test multiple add, modrdn
7. Test Add-del on both masters
8. Test modrdn-modrdn
9. Test modrdn-del
10. Resume replication
11. 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
"""

M1 = topology_m2.ms["master1"]
M2 = topology_m2.ms["master2"]

test_users_m1 = UserAccounts(M1, base_m2.dn, rdn=None)
test_users_m2 = UserAccounts(M2, base_m2.dn, rdn=None)
repl = ReplicationManager(SUFFIX)

for user_num in range(1100, 1110):
_create_user(test_users_m1, user_num)

repl.test_replication(M1, M2)
topology_m2.pause_all_replicas()

log.info("Test add-del on M1 and add on M2")
user_num += 1
_create_user(test_users_m1, user_num)
_delete_user(test_users_m1, user_num, sleep=True)
_create_user(test_users_m2, user_num, sleep=True)

user_num += 1
_create_user(test_users_m1, user_num, sleep=True)
_create_user(test_users_m2, user_num, sleep=True)
_delete_user(test_users_m1, user_num, sleep=True)

user_num += 1
_create_user(test_users_m2, user_num, sleep=True)
_create_user(test_users_m1, user_num)
_delete_user(test_users_m1, user_num)

log.info("Test add-mod on M1 and add on M2")
user_num += 1
_create_user(test_users_m1, user_num)
_modify_user(test_users_m1, user_num, sleep=True)
_create_user(test_users_m2, user_num, sleep=True)

user_num += 1
_create_user(test_users_m1, user_num, sleep=True)
_create_user(test_users_m2, user_num, sleep=True)
_modify_user(test_users_m1, user_num, sleep=True)

user_num += 1
_create_user(test_users_m2, user_num, sleep=True)
_create_user(test_users_m1, user_num)
_modify_user(test_users_m1, user_num)

log.info("Test add-modrdn on M1 and add on M2")
user_num += 1
_create_user(test_users_m1, user_num)
_rename_user(test_users_m1, user_num, user_num+20, sleep=True)
_create_user(test_users_m2, user_num, sleep=True)

user_num += 1
_create_user(test_users_m1, user_num, sleep=True)
_create_user(test_users_m2, user_num, sleep=True)
_rename_user(test_users_m1, user_num, user_num+20, sleep=True)

user_num += 1
_create_user(test_users_m2, user_num, sleep=True)
_create_user(test_users_m1, user_num)
_rename_user(test_users_m1, user_num, user_num+20)

log.info("Test multiple add, modrdn")
user_num += 1
_create_user(test_users_m1, user_num, sleep=True)
_create_user(test_users_m2, user_num, sleep=True)
_rename_user(test_users_m1, user_num, user_num+20)
_create_user(test_users_m1, user_num, sleep=True)
_modify_user(test_users_m2, user_num, sleep=True)

log.info("Add - del on both masters")
user_num += 1
_create_user(test_users_m1, user_num)
_delete_user(test_users_m1, user_num, sleep=True)
_create_user(test_users_m2, user_num)
_delete_user(test_users_m2, user_num, sleep=True)

log.info("Test modrdn - modrdn")
user_num += 1
_rename_user(test_users_m1, 1109, 1129, sleep=True)
_rename_user(test_users_m2, 1109, 1129, sleep=True)

log.info("Test modrdn - del")
user_num += 1
_rename_user(test_users_m1, 1100, 1120, sleep=True)
_delete_user(test_users_m2, 1100)

user_num += 1
_delete_user(test_users_m2, 1101, sleep=True)
_rename_user(test_users_m1, 1101, 1121)

topology_m2.resume_all_replicas()

repl.test_replication_topology(topology_m2)
time.sleep(30)

user_dns_m1 = [user.dn for user in test_users_m1.list()]
user_dns_m2 = [user.dn for user in test_users_m2.list()]
> assert set(user_dns_m1) == set(user_dns_m2)
E AssertionError: assert {'uid=test_us...,dc=com', ...} == {'uid=test_us...,dc=com', ...}
E Extra items in the left set:
E 'uid=test_user_1111,cn=test_container,dc=example,dc=com'
E 'uid=test_user_1117,cn=test_container,dc=example,dc=com'
E 'uid=test_user_1112,cn=test_container,dc=example,dc=com'
E Full diff:
E {
E 'uid=test_user_1102,cn=test_container,dc=example,dc=com',...
E
E ...Full output truncated (24 lines hidden), use '-vv' to show

suites/replication/conflict_resolve_test.py:369: AssertionError
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect d708bcb3-9eb6-44f1-9ae0-1b056e186dee / got description=0c81e664-fd15-4c5b-a712-42ef1cfd8af9) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect d708bcb3-9eb6-44f1-9ae0-1b056e186dee / got description=0c81e664-fd15-4c5b-a712-42ef1cfd8af9) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect d708bcb3-9eb6-44f1-9ae0-1b056e186dee / got description=0c81e664-fd15-4c5b-a712-42ef1cfd8af9) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect d708bcb3-9eb6-44f1-9ae0-1b056e186dee / got description=0c81e664-fd15-4c5b-a712-42ef1cfd8af9) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:285 Test add-del on M1 and add on M2 INFO  tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:301 Test add-mod on M1 and add on M2 INFO  tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:317 Test add-modrdn on M1 and add on M2 INFO  tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:333 Test multiple add, modrdn INFO  tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:341 Add - del on both masters INFO  tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:348 Test modrdn - modrdn INFO  tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:353 Test modrdn - del INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 760c8385-95f1-4755-bf38-0be831b4ceb5 / got description=d708bcb3-9eb6-44f1-9ae0-1b056e186dee) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 760c8385-95f1-4755-bf38-0be831b4ceb5 / got description=d708bcb3-9eb6-44f1-9ae0-1b056e186dee) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 760c8385-95f1-4755-bf38-0be831b4ceb5 / got description=d708bcb3-9eb6-44f1-9ae0-1b056e186dee) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 760c8385-95f1-4755-bf38-0be831b4ceb5 / got description=d708bcb3-9eb6-44f1-9ae0-1b056e186dee) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 760c8385-95f1-4755-bf38-0be831b4ceb5 / got description=d708bcb3-9eb6-44f1-9ae0-1b056e186dee) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 7470b5b9-8c3a-4869-a40f-ccb05afcb1fa / got description=760c8385-95f1-4755-bf38-0be831b4ceb5) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working
Failed suites/syncrepl_plugin/basic_test.py::test_syncrepl_basic 6.85
topology = <lib389.topologies.TopologyMain object at 0x7f65e4e1cca0>

def test_syncrepl_basic(topology):
""" Test basic functionality of the SyncRepl interface

:id: f9fea826-8ae2-412a-8e88-b8e0ba939b06

:setup: Standalone instance

:steps:
1. Enable Retro Changelog
2. Enable Syncrepl
3. Run the syncstate test to check refresh, add, delete, mod.

:expectedresults:
1. Success
1. Success
1. Success
"""
st = topology.standalone
# Enable RetroChangelog.
rcl = RetroChangelogPlugin(st)
rcl.enable()
# Set the default targetid
rcl.replace('nsslapd-attribute', 'nsuniqueid:targetUniqueId')
# Enable sync repl
csp = ContentSyncPlugin(st)
csp.enable()
# Restart DS
> st.restart()

suites/syncrepl_plugin/basic_test.py:60:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:1276: in restart
self.start(timeout, post_open)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:1135: in start
subprocess.check_output(["systemctl", "start", "dirsrv@%s" % self.serverid], stderr=subprocess.STDOUT)
/usr/lib64/python3.8/subprocess.py:411: in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

input = None, capture_output = False, timeout = None, check = True
popenargs = (['systemctl', 'start', 'dirsrv@standalone1'],)
kwargs = {'stderr': -2, 'stdout': -1}
process = <subprocess.Popen object at 0x7f65e51aa310>
stdout = b'Job for dirsrv@standalone1.service failed because the control process exited with error code.\nSee "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details.\n'
stderr = None, retcode = 1

def run(*popenargs,
input=None, capture_output=False, timeout=None, check=False, **kwargs):
"""Run command with arguments and return a CompletedProcess instance.

The returned instance will have attributes args, returncode, stdout and
stderr. By default, stdout and stderr are not captured, and those attributes
will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them.

If check is True and the exit code was non-zero, it raises a
CalledProcessError. The CalledProcessError object will have the return code
in the returncode attribute, and output & stderr attributes if those streams
were captured.

If timeout is given, and the process takes too long, a TimeoutExpired
exception will be raised.

There is an optional argument "input", allowing you to
pass bytes or a string to the subprocess's stdin. If you use this argument
you may not also use the Popen constructor's "stdin" argument, as
it will be used internally.

By default, all communication is in bytes, and therefore any "input" should
be bytes, and the stdout and stderr will be bytes. If in text mode, any
"input" should be a string, and stdout and stderr will be strings decoded
according to locale encoding, or by "encoding" if set. Text mode is
triggered by setting any of text, encoding, errors or universal_newlines.

The other arguments are the same as for the Popen constructor.
"""
if input is not None:
if kwargs.get('stdin') is not None:
raise ValueError('stdin and input arguments may not both be used.')
kwargs['stdin'] = PIPE

if capture_output:
if kwargs.get('stdout') is not None or kwargs.get('stderr') is not None:
raise ValueError('stdout and stderr arguments may not be used '
'with capture_output.')
kwargs['stdout'] = PIPE
kwargs['stderr'] = PIPE

with Popen(*popenargs, **kwargs) as process:
try:
stdout, stderr = process.communicate(input, timeout=timeout)
except TimeoutExpired as exc:
process.kill()
if _mswindows:
# Windows accumulates the output in a single blocking
# read() call run on child threads, with the timeout
# being done in a join() on those threads. communicate()
# _after_ kill() is required to collect that and add it
# to the exception.
exc.stdout, exc.stderr = process.communicate()
else:
# POSIX _communicate already populated the output so
# far into the TimeoutExpired exception.
process.wait()
raise
except: # Including KeyboardInterrupt, communicate handled that.
process.kill()
# We don't call process.wait() as .__exit__ does that for us.
raise
retcode = process.poll()
if check and retcode:
> raise CalledProcessError(retcode, process.args,
output=stdout, stderr=stderr)
E subprocess.CalledProcessError: Command '['systemctl', 'start', 'dirsrv@standalone1']' returned non-zero exit status 1.

/usr/lib64/python3.8/subprocess.py:512: CalledProcessError
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Failed suites/syncrepl_plugin/basic_test.py::test_sync_repl_mep 0.00
topology = <lib389.topologies.TopologyMain object at 0x7f65e4e1cca0>
request = <FixtureRequest for <Function test_sync_repl_mep>>

def test_sync_repl_mep(topology, request):
"""Test sync repl with MEP plugin that triggers several
updates on the same entry

:id: d9515930-293e-42da-9835-9f255fa6111b
:setup: Standalone Instance
:steps:
1. enable retro/sync_repl/mep
2. Add mep Template and definition entry
3. start sync_repl client
4. Add users with PosixAccount ObjectClass (mep will update it several times)
5. Check that the received cookie are progressing
:expected results:
1. Success
2. Success
3. Success
4. Success
5. Success
"""
inst = topology[0]

# Enable/configure retroCL
plugin = RetroChangelogPlugin(inst)
> plugin.disable()

suites/syncrepl_plugin/basic_test.py:174:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/plugins.py:63: in disable
self.set('nsslapd-pluginEnabled', 'off')
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.plugins.RetroChangelogPlugin object at 0x7f65e4d4ca00>
key = 'nsslapd-pluginEnabled', value = 'off', action = 2

def set(self, key, value, action=ldap.MOD_REPLACE):
"""Perform a specified action on a key with value

:param key: an attribute name
:type key: str
:param value: an attribute value
:type value: str
:param action: - ldap.MOD_REPLACE - by default
- ldap.MOD_ADD
- ldap.MOD_DELETE
:type action: int

:returns: result of modify_s operation
:raises: ValueError - if instance is not online
"""

if action == ldap.MOD_ADD:
action_txt = "ADD"
elif action == ldap.MOD_REPLACE:
action_txt = "REPLACE"
elif action == ldap.MOD_DELETE:
action_txt = "DELETE"
else:
# This should never happen (bug!)
action_txt = "UNKNOWN"

if value is None or len(value) < 512:
self._log.debug("%s set %s: (%r, %r)" % (self._dn, action_txt, key, display_log_value(key, value)))
else:
self._log.debug("%s set %s: (%r, value too large)" % (self._dn, action_txt, key))
if self._instance.state != DIRSRV_STATE_ONLINE:
> raise ValueError("Invalid state. Cannot set properties on instance that is not ONLINE.")
E ValueError: Invalid state. Cannot set properties on instance that is not ONLINE.

/usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:438: ValueError
Failed suites/syncrepl_plugin/basic_test.py::test_sync_repl_cookie 0.00
topology = <lib389.topologies.TopologyMain object at 0x7f65e4e1cca0>
request = <FixtureRequest for <Function test_sync_repl_cookie>>

def test_sync_repl_cookie(topology, request):
"""Test sync_repl cookie are progressing is an increasing order
when there are nested updates

:id: d7fbde25-5702-46ac-b38e-169d7a68e97c
:setup: Standalone Instance
:steps:
1.: enable retroCL
2.: configure retroCL to log nsuniqueid as targetUniqueId
3.: enable content_sync plugin
4.: enable automember
5.: create (2) groups. Few groups can help to reproduce the concurrent updates problem.
6.: configure automember to provision those groups with 'member'
7.: enable and configure memberof plugin
8.: enable plugin log level
9.: restart the server
10.: create a thread dedicated to run a sync repl client
11.: Create (9) users that will generate nested updates (automember/memberof)
12.: stop sync repl client and collect the list of cookie.change_no
13.: check that cookies.change_no are in increasing order
:expectedresults:
1.: succeeds
2.: succeeds
3.: succeeds
4.: succeeds
5.: succeeds
6.: succeeds
7.: succeeds
8.: succeeds
9.: succeeds
10.: succeeds
11.: succeeds
12.: succeeds
13.: succeeds
"""
inst = topology[0]

# Enable/configure retroCL
plugin = RetroChangelogPlugin(inst)
> plugin.disable()

suites/syncrepl_plugin/basic_test.py:275:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/plugins.py:63: in disable
self.set('nsslapd-pluginEnabled', 'off')
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.plugins.RetroChangelogPlugin object at 0x7f65e51489d0>
key = 'nsslapd-pluginEnabled', value = 'off', action = 2

def set(self, key, value, action=ldap.MOD_REPLACE):
"""Perform a specified action on a key with value

:param key: an attribute name
:type key: str
:param value: an attribute value
:type value: str
:param action: - ldap.MOD_REPLACE - by default
- ldap.MOD_ADD
- ldap.MOD_DELETE
:type action: int

:returns: result of modify_s operation
:raises: ValueError - if instance is not online
"""

if action == ldap.MOD_ADD:
action_txt = "ADD"
elif action == ldap.MOD_REPLACE:
action_txt = "REPLACE"
elif action == ldap.MOD_DELETE:
action_txt = "DELETE"
else:
# This should never happen (bug!)
action_txt = "UNKNOWN"

if value is None or len(value) < 512:
self._log.debug("%s set %s: (%r, %r)" % (self._dn, action_txt, key, display_log_value(key, value)))
else:
self._log.debug("%s set %s: (%r, value too large)" % (self._dn, action_txt, key))
if self._instance.state != DIRSRV_STATE_ONLINE:
> raise ValueError("Invalid state. Cannot set properties on instance that is not ONLINE.")
E ValueError: Invalid state. Cannot set properties on instance that is not ONLINE.

/usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:438: ValueError
Failed suites/syncrepl_plugin/basic_test.py::test_sync_repl_cookie_add_del 0.00
topology = <lib389.topologies.TopologyMain object at 0x7f65e4e1cca0>
request = <FixtureRequest for <Function test_sync_repl_cookie_add_del>>

def test_sync_repl_cookie_add_del(topology, request):
"""Test sync_repl cookie are progressing is an increasing order
when there add and del

:id: 83e11038-6ed0-4a5b-ac77-e44887ab11e3
:setup: Standalone Instance
:steps:
1.: enable retroCL
2.: configure retroCL to log nsuniqueid as targetUniqueId
3.: enable content_sync plugin
4.: enable automember
5.: create (2) groups. Few groups can help to reproduce the concurrent updates problem.
6.: configure automember to provision those groups with 'member'
7.: enable and configure memberof plugin
8.: enable plugin log level
9.: restart the server
10.: create a thread dedicated to run a sync repl client
11.: Create (3) users that will generate nested updates (automember/memberof)
12.: Delete (3) users
13.: stop sync repl client and collect the list of cookie.change_no
14.: check that cookies.change_no are in increasing order
:expectedresults:
1.: succeeds
2.: succeeds
3.: succeeds
4.: succeeds
5.: succeeds
6.: succeeds
7.: succeeds
8.: succeeds
9.: succeeds
10.: succeeds
11.: succeeds
12.: succeeds
13.: succeeds
14.: succeeds
"""
inst = topology[0]

# Enable/configure retroCL
plugin = RetroChangelogPlugin(inst)
> plugin.disable()

suites/syncrepl_plugin/basic_test.py:407:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/plugins.py:63: in disable
self.set('nsslapd-pluginEnabled', 'off')
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.plugins.RetroChangelogPlugin object at 0x7f65e52ae280>
key = 'nsslapd-pluginEnabled', value = 'off', action = 2

def set(self, key, value, action=ldap.MOD_REPLACE):
"""Perform a specified action on a key with value

:param key: an attribute name
:type key: str
:param value: an attribute value
:type value: str
:param action: - ldap.MOD_REPLACE - by default
- ldap.MOD_ADD
- ldap.MOD_DELETE
:type action: int

:returns: result of modify_s operation
:raises: ValueError - if instance is not online
"""

if action == ldap.MOD_ADD:
action_txt = "ADD"
elif action == ldap.MOD_REPLACE:
action_txt = "REPLACE"
elif action == ldap.MOD_DELETE:
action_txt = "DELETE"
else:
# This should never happen (bug!)
action_txt = "UNKNOWN"

if value is None or len(value) < 512:
self._log.debug("%s set %s: (%r, %r)" % (self._dn, action_txt, key, display_log_value(key, value)))
else:
self._log.debug("%s set %s: (%r, value too large)" % (self._dn, action_txt, key))
if self._instance.state != DIRSRV_STATE_ONLINE:
> raise ValueError("Invalid state. Cannot set properties on instance that is not ONLINE.")
E ValueError: Invalid state. Cannot set properties on instance that is not ONLINE.

/usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:438: ValueError
Failed suites/syncrepl_plugin/basic_test.py::test_sync_repl_cookie_with_failure 0.00
topology = <lib389.topologies.TopologyMain object at 0x7f65e4e1cca0>
request = <FixtureRequest for <Function test_sync_repl_cookie_with_failure>>

def test_sync_repl_cookie_with_failure(topology, request):
"""Test sync_repl cookie are progressing is the right order
when there is a failure in nested updates

:id: e0103448-170e-4080-8f22-c34606447ce2
:setup: Standalone Instance
:steps:
1.: enable retroCL
2.: configure retroCL to log nsuniqueid as targetUniqueId
3.: enable content_sync plugin
4.: enable automember
5.: create (4) groups.
make group2 groupOfUniqueNames so the automember
will fail to add 'member' (uniqueMember expected)
6.: configure automember to provision those groups with 'member'
7.: enable and configure memberof plugin
8.: enable plugin log level
9.: restart the server
10.: create a thread dedicated to run a sync repl client
11.: Create a group that will be the only update received by sync repl client
12.: Create (9) users that will generate nested updates (automember/memberof)
13.: stop sync repl client and collect the list of cookie.change_no
14.: check that the list of cookie.change_no contains only the group 'step 11'
:expectedresults:
1.: succeeds
2.: succeeds
3.: succeeds
4.: succeeds
5.: succeeds
6.: succeeds
7.: succeeds
8.: succeeds
9.: succeeds
10.: succeeds
11.: succeeds
12.: Fails (expected)
13.: succeeds
14.: succeeds
"""
inst = topology[0]

# Enable/configure retroCL
plugin = RetroChangelogPlugin(inst)
> plugin.disable()

suites/syncrepl_plugin/basic_test.py:539:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/plugins.py:63: in disable
self.set('nsslapd-pluginEnabled', 'off')
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.plugins.RetroChangelogPlugin object at 0x7f65e4e0b520>
key = 'nsslapd-pluginEnabled', value = 'off', action = 2

def set(self, key, value, action=ldap.MOD_REPLACE):
"""Perform a specified action on a key with value

:param key: an attribute name
:type key: str
:param value: an attribute value
:type value: str
:param action: - ldap.MOD_REPLACE - by default
- ldap.MOD_ADD
- ldap.MOD_DELETE
:type action: int

:returns: result of modify_s operation
:raises: ValueError - if instance is not online
"""

if action == ldap.MOD_ADD:
action_txt = "ADD"
elif action == ldap.MOD_REPLACE:
action_txt = "REPLACE"
elif action == ldap.MOD_DELETE:
action_txt = "DELETE"
else:
# This should never happen (bug!)
action_txt = "UNKNOWN"

if value is None or len(value) < 512:
self._log.debug("%s set %s: (%r, %r)" % (self._dn, action_txt, key, display_log_value(key, value)))
else:
self._log.debug("%s set %s: (%r, value too large)" % (self._dn, action_txt, key))
if self._instance.state != DIRSRV_STATE_ONLINE:
> raise ValueError("Invalid state. Cannot set properties on instance that is not ONLINE.")
E ValueError: Invalid state. Cannot set properties on instance that is not ONLINE.

/usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:438: ValueError
Failed suites/syncrepl_plugin/openldap_test.py::test_syncrepl_openldap 6.80
topology = <lib389.topologies.TopologyMain object at 0x7f65e4e08d30>

@pytest.mark.skipif(ds_is_older('1.4.4.0'), reason="Sync repl does not support openldap compat in older versions")
def test_syncrepl_openldap(topology):
""" Test basic functionality of the openldap syncrepl
compatability handler.

:id: 03039178-2cc6-40bd-b32c-7d6de108828b

:setup: Standalone instance

:steps:
1. Enable Retro Changelog
2. Enable Syncrepl
3. Run the syncstate test to check refresh, add, delete, mod.

:expectedresults:
1. Success
1. Success
1. Success
"""
st = topology.standalone
# Enable RetroChangelog.
rcl = RetroChangelogPlugin(st)
rcl.enable()
# Set the default targetid
rcl.replace('nsslapd-attribute', 'nsuniqueid:targetUniqueId')
# Enable sync repl
csp = ContentSyncPlugin(st)
csp.enable()
# Restart DS
> st.restart()

suites/syncrepl_plugin/openldap_test.py:57:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:1276: in restart
self.start(timeout, post_open)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:1135: in start
subprocess.check_output(["systemctl", "start", "dirsrv@%s" % self.serverid], stderr=subprocess.STDOUT)
/usr/lib64/python3.8/subprocess.py:411: in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

input = None, capture_output = False, timeout = None, check = True
popenargs = (['systemctl', 'start', 'dirsrv@standalone1'],)
kwargs = {'stderr': -2, 'stdout': -1}
process = <subprocess.Popen object at 0x7f65e4e1c040>
stdout = b'Job for dirsrv@standalone1.service failed because the control process exited with error code.\nSee "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details.\n'
stderr = None, retcode = 1

def run(*popenargs,
input=None, capture_output=False, timeout=None, check=False, **kwargs):
"""Run command with arguments and return a CompletedProcess instance.

The returned instance will have attributes args, returncode, stdout and
stderr. By default, stdout and stderr are not captured, and those attributes
will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them.

If check is True and the exit code was non-zero, it raises a
CalledProcessError. The CalledProcessError object will have the return code
in the returncode attribute, and output & stderr attributes if those streams
were captured.

If timeout is given, and the process takes too long, a TimeoutExpired
exception will be raised.

There is an optional argument "input", allowing you to
pass bytes or a string to the subprocess's stdin. If you use this argument
you may not also use the Popen constructor's "stdin" argument, as
it will be used internally.

By default, all communication is in bytes, and therefore any "input" should
be bytes, and the stdout and stderr will be bytes. If in text mode, any
"input" should be a string, and stdout and stderr will be strings decoded
according to locale encoding, or by "encoding" if set. Text mode is
triggered by setting any of text, encoding, errors or universal_newlines.

The other arguments are the same as for the Popen constructor.
"""
if input is not None:
if kwargs.get('stdin') is not None:
raise ValueError('stdin and input arguments may not both be used.')
kwargs['stdin'] = PIPE

if capture_output:
if kwargs.get('stdout') is not None or kwargs.get('stderr') is not None:
raise ValueError('stdout and stderr arguments may not be used '
'with capture_output.')
kwargs['stdout'] = PIPE
kwargs['stderr'] = PIPE

with Popen(*popenargs, **kwargs) as process:
try:
stdout, stderr = process.communicate(input, timeout=timeout)
except TimeoutExpired as exc:
process.kill()
if _mswindows:
# Windows accumulates the output in a single blocking
# read() call run on child threads, with the timeout
# being done in a join() on those threads. communicate()
# _after_ kill() is required to collect that and add it
# to the exception.
exc.stdout, exc.stderr = process.communicate()
else:
# POSIX _communicate already populated the output so
# far into the TimeoutExpired exception.
process.wait()
raise
except: # Including KeyboardInterrupt, communicate handled that.
process.kill()
# We don't call process.wait() as .__exit__ does that for us.
raise
retcode = process.poll()
if check and retcode:
> raise CalledProcessError(retcode, process.args,
output=stdout, stderr=stderr)
E subprocess.CalledProcessError: Command '['systemctl', 'start', 'dirsrv@standalone1']' returned non-zero exit status 1.

/usr/lib64/python3.8/subprocess.py:512: CalledProcessError
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Failed suites/vlv/regression_test.py::test_bulk_import_when_the_backend_with_vlv_was_recreated 0.44
self = <lib389.mappingTree.MappingTreeLegacy object at 0x7f65e53ce340>
suffix = 'dc=example,dc=com', bename = 'userRoot', parent = None

def create(self, suffix=None, bename=None, parent=None):
'''
Create a mapping tree entry (under "cn=mapping tree,cn=config"),
for the 'suffix' and that is stored in 'bename' backend.
'bename' backend must exist before creating the mapping tree entry.

If a 'parent' is provided that means that we are creating a
sub-suffix mapping tree.

@param suffix - suffix mapped by this mapping tree entry. It will
be the common name ('cn') of the entry
@param benamebase - backend common name (e.g. 'userRoot')
@param parent - if provided is a parent suffix of 'suffix'

@return DN of the mapping tree entry

@raise ldap.NO_SUCH_OBJECT - if the backend entry or parent mapping
tree does not exist
ValueError - if missing a parameter,

'''
# Check suffix is provided
if not suffix:
raise ValueError("suffix is mandatory")
else:
nsuffix = normalizeDN(suffix)

# Check backend name is provided
if not bename:
raise ValueError("backend name is mandatory")

# Check that if the parent suffix is provided then
# it exists a mapping tree for it
if parent:
nparent = normalizeDN(parent)
filt = suffixfilt(parent)
try:
entry = self.conn.getEntry(DN_MAPPING_TREE, ldap.SCOPE_SUBTREE,
filt)
pass
except NoSuchEntryError:
raise ValueError("parent suffix has no mapping tree")
else:
nparent = ""

# Check if suffix exists, return
filt = suffixfilt(suffix)
try:
entry = self.conn.getEntry(DN_MAPPING_TREE, ldap.SCOPE_SUBTREE,
filt)
return entry
except ldap.NO_SUCH_OBJECT:
entry = None

#
# Now start the real work
#

# fix me when we can actually used escaped DNs
dn = ','.join(('cn="%s"' % nsuffix, DN_MAPPING_TREE))
entry = Entry(dn)
entry.update({
'objectclass': ['top', 'extensibleObject', MT_OBJECTCLASS_VALUE],
'nsslapd-state': 'backend',
# the value in the dn has to be DN escaped
# internal code will add the quoted value - unquoted value is
# useful for searching.
MT_PROPNAME_TO_ATTRNAME[MT_SUFFIX]: nsuffix,
MT_PROPNAME_TO_ATTRNAME[MT_BACKEND]: bename
})

# possibly add the parent
if parent:
entry.setValues(MT_PROPNAME_TO_ATTRNAME[MT_PARENT_SUFFIX], nparent)

try:
self.log.debug("Creating entry: %s", entry.dn)
self.log.info("Entry %r", entry)
> self.conn.add_s(entry)

/usr/local/lib/python3.8/site-packages/lib389/mappingTree.py:155:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = (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

,)
kwargs = {}
c_stack = [FrameInfo(frame=<frame at 0x7f65e4de6440, file '/usr/local/lib/python3.8/site-packages/lib389/__init__.py', line 176,...mbda>', code_context=[' self._inner_hookexec = lambda hook, methods, kwargs: hook.multicall(\n'], index=0), ...]
frame = FrameInfo(frame=<frame at 0x55d6044d2cc0, file '/usr/local/lib/python3.8/site-packages/lib389/mappingTree.py', line 15.../lib389/mappingTree.py', lineno=155, function='create', code_context=[' self.conn.add_s(entry)\n'], index=0)
ent = 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



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:])

/usr/local/lib/python3.8/site-packages/lib389/__init__.py:176:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65e5122a00>
dn = 'cn="dc=example,dc=com",cn=mapping tree,cn=config'
modlist = [('objectclass', [b'top', b'extensibleObject', b'nsMappingTree']), ('nsslapd-state', [b'backend']), ('cn', [b'dc=example,dc=com']), ('nsslapd-backend', [b'userRoot'])]

def add_s(self,dn,modlist):
> return self.add_ext_s(dn,modlist,None,None)

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:439:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = ('cn="dc=example,dc=com",cn=mapping tree,cn=config', [('objectclass', [b'top', b'extensibleObject', b'nsMappingTree']), ('nsslapd-state', [b'backend']), ('cn', [b'dc=example,dc=com']), ('nsslapd-backend', [b'userRoot'])], None, None)
kwargs = {}, ent = 'cn="dc=example,dc=com",cn=mapping tree,cn=config'

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)

/usr/local/lib/python3.8/site-packages/lib389/__init__.py:178:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65e5122a00>
dn = 'cn="dc=example,dc=com",cn=mapping tree,cn=config'
modlist = [('objectclass', [b'top', b'extensibleObject', b'nsMappingTree']), ('nsslapd-state', [b'backend']), ('cn', [b'dc=example,dc=com']), ('nsslapd-backend', [b'userRoot'])]
serverctrls = None, clientctrls = None

def add_ext_s(self,dn,modlist,serverctrls=None,clientctrls=None):
msgid = self.add_ext(dn,modlist,serverctrls,clientctrls)
> resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout)

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:425:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = (76,), 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.8/site-packages/lib389/__init__.py:180:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65e5122a00>, msgid = 76, 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.8/site-packages/ldap/ldapobject.py:764:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = (76, 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.8/site-packages/lib389/__init__.py:180:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65e5122a00>, msgid = 76, 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.8/site-packages/ldap/ldapobject.py:774:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = (<built-in method result4 of LDAP object at 0x7f65e53ce2a0>, 76, 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.8/site-packages/lib389/__init__.py:180:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65e5122a00>
func = <built-in method result4 of LDAP object at 0x7f65e53ce2a0>
args = (76, 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.8/site-packages/ldap/ldapobject.py:340:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

exc_type = <class 'ldap.UNWILLING_TO_PERFORM'>
exc_value = UNWILLING_TO_PERFORM({'msgtype': 105, 'msgid': 76, 'result': 53, 'desc': 'Server is unwilling to perform', 'ctrls': []})
exc_traceback = <traceback object at 0x7f65e8ef9140>

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.8/site-packages/ldap/compat.py:46:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65e5122a00>
func = <built-in method result4 of LDAP object at 0x7f65e53ce2a0>
args = (76, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None
exc_type = None, exc_value = None, exc_traceback = None

def _ldap_call(self,func,*args,**kwargs):
"""
Wrapper method mainly for serializing calls into OpenLDAP libs
and trace logs
"""
self._ldap_object_lock.acquire()
if __debug__:
if self._trace_level>=1:
self._trace_file.write('*** %s %s - %s\n%s\n' % (
repr(self),
self._uri,
'.'.join((self.__class__.__name__,func.__name__)),
pprint.pformat((args,kwargs))
))
if self._trace_level>=9:
traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file)
diagnostic_message_success = None
try:
try:
> result = func(*args,**kwargs)
E ldap.UNWILLING_TO_PERFORM: {'msgtype': 105, 'msgid': 76, 'result': 53, 'desc': 'Server is unwilling to perform', 'ctrls': []}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: UNWILLING_TO_PERFORM

During handling of the above exception, another exception occurred:

topology_m2 = <lib389.topologies.TopologyMain object at 0x7f65e42c05b0>

@pytest.mark.DS47966
def test_bulk_import_when_the_backend_with_vlv_was_recreated(topology_m2):
"""
Testing bulk import when the backend with VLV was recreated.
If the test passes without the server crash, 47966 is verified.

:id: 512963fa-fe02-11e8-b1d3-8c16451d917b
:setup: Replication with two masters.
:steps:
1. Generate vlvSearch entry
2. Generate vlvIndex entry
3. Delete the backend instance on Master 2
4. Delete the agreement, replica, and mapping tree, too.
5. Recreate the backend and the VLV index on Master 2.
6. Recreating vlvSrchDn and vlvIndexDn on Master 2.
:expectedresults:
1. Should Success.
2. Should Success.
3. Should Success.
4. Should Success.
5. Should Success.
6. Should Success.
"""
M1 = topology_m2.ms["master1"]
M2 = topology_m2.ms["master2"]
# generate vlvSearch entry
properties_for_search = {
"objectclass": ["top", "vlvSearch"],
"cn": "vlvSrch",
"vlvbase": DEFAULT_SUFFIX,
"vlvfilter": "(|(objectclass=*)(objectclass=ldapsubentry))",
"vlvscope": "2",
}
vlv_searches = VLVSearch(M2)
userroot_vlvsearch = vlv_searches.create(
basedn="cn=userRoot,cn=ldbm database,cn=plugins,cn=config",
properties=properties_for_search,
)
assert "cn=vlvSrch,cn=userRoot,cn=ldbm database,cn=plugins,cn=config" in M2.getEntry(
"cn=vlvSrch,cn=userRoot,cn=ldbm database,cn=plugins,cn=config").dn
# generate vlvIndex entry
properties_for_index = {
"objectclass": ["top", "vlvIndex"],
"cn": "vlvIdx",
"vlvsort": "cn ou sn",
}
vlv_index = VLVIndex(M2)
userroot_index = vlv_index.create(
basedn="cn=vlvSrch,cn=userRoot,cn=ldbm database,cn=plugins,cn=config",
properties=properties_for_index,
)
assert "cn=vlvIdx,cn=vlvSrch,cn=userRoot,cn=ldbm database,cn=plugins,cn=config" in M2.getEntry(
"cn=vlvIdx,cn=vlvSrch,cn=userRoot,cn=ldbm database,cn=plugins,cn=config").dn
# Delete the backend instance on Master 2."
userroot_index.delete()
userroot_vlvsearch.delete_all()
# delete the agreement, replica, and mapping tree, too.
repl = ReplicationManager(DEFAULT_SUFFIX)
repl.remove_master(M2)
MappingTrees(M2).list()[0].delete()
Backends(M2).list()[0].delete()
# Recreate the backend and the VLV index on Master 2.
> M2.mappingtree.create(DEFAULT_SUFFIX, "userRoot")

suites/vlv/regression_test.py:87:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.mappingTree.MappingTreeLegacy object at 0x7f65e53ce340>
suffix = 'dc=example,dc=com', bename = 'userRoot', parent = None

def create(self, suffix=None, bename=None, parent=None):
'''
Create a mapping tree entry (under "cn=mapping tree,cn=config"),
for the 'suffix' and that is stored in 'bename' backend.
'bename' backend must exist before creating the mapping tree entry.

If a 'parent' is provided that means that we are creating a
sub-suffix mapping tree.

@param suffix - suffix mapped by this mapping tree entry. It will
be the common name ('cn') of the entry
@param benamebase - backend common name (e.g. 'userRoot')
@param parent - if provided is a parent suffix of 'suffix'

@return DN of the mapping tree entry

@raise ldap.NO_SUCH_OBJECT - if the backend entry or parent mapping
tree does not exist
ValueError - if missing a parameter,

'''
# Check suffix is provided
if not suffix:
raise ValueError("suffix is mandatory")
else:
nsuffix = normalizeDN(suffix)

# Check backend name is provided
if not bename:
raise ValueError("backend name is mandatory")

# Check that if the parent suffix is provided then
# it exists a mapping tree for it
if parent:
nparent = normalizeDN(parent)
filt = suffixfilt(parent)
try:
entry = self.conn.getEntry(DN_MAPPING_TREE, ldap.SCOPE_SUBTREE,
filt)
pass
except NoSuchEntryError:
raise ValueError("parent suffix has no mapping tree")
else:
nparent = ""

# Check if suffix exists, return
filt = suffixfilt(suffix)
try:
entry = self.conn.getEntry(DN_MAPPING_TREE, ldap.SCOPE_SUBTREE,
filt)
return entry
except ldap.NO_SUCH_OBJECT:
entry = None

#
# Now start the real work
#

# fix me when we can actually used escaped DNs
dn = ','.join(('cn="%s"' % nsuffix, DN_MAPPING_TREE))
entry = Entry(dn)
entry.update({
'objectclass': ['top', 'extensibleObject', MT_OBJECTCLASS_VALUE],
'nsslapd-state': 'backend',
# the value in the dn has to be DN escaped
# internal code will add the quoted value - unquoted value is
# useful for searching.
MT_PROPNAME_TO_ATTRNAME[MT_SUFFIX]: nsuffix,
MT_PROPNAME_TO_ATTRNAME[MT_BACKEND]: bename
})

# possibly add the parent
if parent:
entry.setValues(MT_PROPNAME_TO_ATTRNAME[MT_PARENT_SUFFIX], nparent)

try:
self.log.debug("Creating entry: %s", entry.dn)
self.log.info("Entry %r", entry)
self.conn.add_s(entry)
except ldap.LDAPError as e:
> raise ldap.LDAPError("Error adding suffix entry " + dn, e)
E ldap.LDAPError: ('Error adding suffix entry cn="dc=example,dc=com",cn=mapping tree,cn=config', UNWILLING_TO_PERFORM({'msgtype': 105, 'msgid': 76, 'result': 53, 'desc': 'Server is unwilling to perform', 'ctrls': []}))

/usr/local/lib/python3.8/site-packages/lib389/mappingTree.py:157: LDAPError
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 6fa0a78f-56cb-4f41-9cc8-4f43abebc37c / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect c958b936-adec-48bb-b8f2-6ea459c8dcf0 / got description=6fa0a78f-56cb-4f41-9cc8-4f43abebc37c) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.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--------------------------------
INFO  lib389:mappingTree.py:154 Entry dn: cn="dc=example,dc=com",cn=mapping tree,cn=config cn: dc=example,dc=com nsslapd-backend: userRoot nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree
Failed tickets/ticket47619_test.py::test_ticket47619_init 6.06
topology_m1c1 = <lib389.topologies.TopologyMain object at 0x7f65e436bf10>

def test_ticket47619_init(topology_m1c1):
"""
Initialize the test environment
"""
topology_m1c1.ms["master1"].plugins.enable(name=PLUGIN_RETRO_CHANGELOG)
# topology_m1c1.ms["master1"].plugins.enable(name=PLUGIN_MEMBER_OF)
# topology_m1c1.ms["master1"].plugins.enable(name=PLUGIN_REFER_INTEGRITY)
topology_m1c1.ms["master1"].stop(timeout=10)
> topology_m1c1.ms["master1"].start(timeout=10)

tickets/ticket47619_test.py:46:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:1135: in start
subprocess.check_output(["systemctl", "start", "dirsrv@%s" % self.serverid], stderr=subprocess.STDOUT)
/usr/lib64/python3.8/subprocess.py:411: in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

input = None, capture_output = False, timeout = None, check = True
popenargs = (['systemctl', 'start', 'dirsrv@master1'],)
kwargs = {'stderr': -2, 'stdout': -1}
process = <subprocess.Popen object at 0x7f65e4d84fa0>
stdout = b'Job for dirsrv@master1.service failed because the control process exited with error code.\nSee "systemctl status dirsrv@master1.service" and "journalctl -xe" for details.\n'
stderr = None, retcode = 1

def run(*popenargs,
input=None, capture_output=False, timeout=None, check=False, **kwargs):
"""Run command with arguments and return a CompletedProcess instance.

The returned instance will have attributes args, returncode, stdout and
stderr. By default, stdout and stderr are not captured, and those attributes
will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them.

If check is True and the exit code was non-zero, it raises a
CalledProcessError. The CalledProcessError object will have the return code
in the returncode attribute, and output & stderr attributes if those streams
were captured.

If timeout is given, and the process takes too long, a TimeoutExpired
exception will be raised.

There is an optional argument "input", allowing you to
pass bytes or a string to the subprocess's stdin. If you use this argument
you may not also use the Popen constructor's "stdin" argument, as
it will be used internally.

By default, all communication is in bytes, and therefore any "input" should
be bytes, and the stdout and stderr will be bytes. If in text mode, any
"input" should be a string, and stdout and stderr will be strings decoded
according to locale encoding, or by "encoding" if set. Text mode is
triggered by setting any of text, encoding, errors or universal_newlines.

The other arguments are the same as for the Popen constructor.
"""
if input is not None:
if kwargs.get('stdin') is not None:
raise ValueError('stdin and input arguments may not both be used.')
kwargs['stdin'] = PIPE

if capture_output:
if kwargs.get('stdout') is not None or kwargs.get('stderr') is not None:
raise ValueError('stdout and stderr arguments may not be used '
'with capture_output.')
kwargs['stdout'] = PIPE
kwargs['stderr'] = PIPE

with Popen(*popenargs, **kwargs) as process:
try:
stdout, stderr = process.communicate(input, timeout=timeout)
except TimeoutExpired as exc:
process.kill()
if _mswindows:
# Windows accumulates the output in a single blocking
# read() call run on child threads, with the timeout
# being done in a join() on those threads. communicate()
# _after_ kill() is required to collect that and add it
# to the exception.
exc.stdout, exc.stderr = process.communicate()
else:
# POSIX _communicate already populated the output so
# far into the TimeoutExpired exception.
process.wait()
raise
except: # Including KeyboardInterrupt, communicate handled that.
process.kill()
# We don't call process.wait() as .__exit__ does that for us.
raise
retcode = process.poll()
if check and retcode:
> raise CalledProcessError(retcode, process.args,
output=stdout, stderr=stderr)
E subprocess.CalledProcessError: Command '['systemctl', 'start', 'dirsrv@master1']' returned non-zero exit status 1.

/usr/lib64/python3.8/subprocess.py:512: CalledProcessError
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39201, 'ldap-secureport': 63901, 'server-id': 'consumer1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:175 Joining consumer consumer1 from master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 009ad636-a639-4eac-b341-78ed6973cd1b / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working INFO  lib389.replica:replica.py:2285 SUCCESS: joined consumer from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 INFO  lib389.topologies:topologies.py:180 Ensuring consumer consumer1 from master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 already exists
Failed tickets/ticket47619_test.py::test_ticket47619_create_index 0.00
topology_m1c1 = <lib389.topologies.TopologyMain object at 0x7f65e436bf10>

def test_ticket47619_create_index(topology_m1c1):
args = {INDEX_TYPE: 'eq'}
for attr in ATTRIBUTES:
> topology_m1c1.ms["master1"].index.create(suffix=RETROCL_SUFFIX, attr=attr, args=args)

tickets/ticket47619_test.py:73:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/index.py:210: in create
return self.addIndex(suffix, be_name, attr, indexTypes=indexTypes,
/usr/local/lib/python3.8/site-packages/lib389/index.py:224: in addIndex
entries_backend = self.conn.backend.list(suffix=suffix)
/usr/local/lib/python3.8/site-packages/lib389/backend.py:100: in list
ents = self.conn.search_s(base, scope, filt)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:870: in search_s
return self.search_ext_s(base,scope,filterstr,attrlist,attrsonly,None,None,timeout=self.timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:864: in search_ext_s
return self.result(msgid,all=1,timeout=timeout)[1]
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:148: in inner
objtype, data = f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:756: in result
resp_type, resp_data, resp_msgid = self.result2(msgid,all,timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:760: in result2
resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all,timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3
resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4(
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4
ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call
reraise(exc_type, exc_value, exc_traceback)
/usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise
raise exc_value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65e438c970>
func = <built-in method result4 of LDAP object at 0x7f65e4d7bf00>
args = (41, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None
exc_type = None, exc_value = None, exc_traceback = None

def _ldap_call(self,func,*args,**kwargs):
"""
Wrapper method mainly for serializing calls into OpenLDAP libs
and trace logs
"""
self._ldap_object_lock.acquire()
if __debug__:
if self._trace_level>=1:
self._trace_file.write('*** %s %s - %s\n%s\n' % (
repr(self),
self._uri,
'.'.join((self.__class__.__name__,func.__name__)),
pprint.pformat((args,kwargs))
))
if self._trace_level>=9:
traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file)
diagnostic_message_success = None
try:
try:
> result = func(*args,**kwargs)
E ldap.SERVER_DOWN: {'result': -1, 'desc': "Can't contact LDAP server", 'ctrls': []}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: SERVER_DOWN
-------------------------------Captured log call--------------------------------
INFO  lib389:backend.py:80 List backend with suffix=cn=changelog
Failed tickets/ticket47619_test.py::test_ticket47619_reindex 0.00
topology_m1c1 = <lib389.topologies.TopologyMain object at 0x7f65e436bf10>

def test_ticket47619_reindex(topology_m1c1):
'''
Reindex all the attributes in ATTRIBUTES
'''
args = {TASK_WAIT: True}
for attr in ATTRIBUTES:
> rc = topology_m1c1.ms["master1"].tasks.reindex(suffix=RETROCL_SUFFIX, attrname=attr, args=args)

tickets/ticket47619_test.py:83:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/tasks.py:723: in reindex
entries_backend = self.conn.backends.list()
/usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:1048: in list
results = self._instance.search_ext_s(
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:863: in search_ext_s
msgid = self.search_ext(base,scope,filterstr,attrlist,attrsonly,serverctrls,clientctrls,timeout,sizelimit)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:853: in search_ext
return self._ldap_call(
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call
reraise(exc_type, exc_value, exc_traceback)
/usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise
raise exc_value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65e438c970>
func = <built-in method search_ext of LDAP object at 0x7f65e4d7bf00>
args = ('cn=ldbm database,cn=plugins,cn=config', 2, '(&(objectclass=nsBackendInstance))', ['dn'], 0, None, ...)
kwargs = {}, diagnostic_message_success = None, exc_type = None
exc_value = None, exc_traceback = None

def _ldap_call(self,func,*args,**kwargs):
"""
Wrapper method mainly for serializing calls into OpenLDAP libs
and trace logs
"""
self._ldap_object_lock.acquire()
if __debug__:
if self._trace_level>=1:
self._trace_file.write('*** %s %s - %s\n%s\n' % (
repr(self),
self._uri,
'.'.join((self.__class__.__name__,func.__name__)),
pprint.pformat((args,kwargs))
))
if self._trace_level>=9:
traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file)
diagnostic_message_success = None
try:
try:
> result = func(*args,**kwargs)
E ldap.SERVER_DOWN: {'result': -1, 'desc': "Can't contact LDAP server", 'ctrls': []}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: SERVER_DOWN
Failed tickets/ticket47619_test.py::test_ticket47619_check_indexed_search 0.00
topology_m1c1 = <lib389.topologies.TopologyMain object at 0x7f65e436bf10>

def test_ticket47619_check_indexed_search(topology_m1c1):
for attr in ATTRIBUTES:
> ents = topology_m1c1.ms["master1"].search_s(RETROCL_SUFFIX, ldap.SCOPE_SUBTREE, "(%s=hello)" % attr)

tickets/ticket47619_test.py:89:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:870: in search_s
return self.search_ext_s(base,scope,filterstr,attrlist,attrsonly,None,None,timeout=self.timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:863: in search_ext_s
msgid = self.search_ext(base,scope,filterstr,attrlist,attrsonly,serverctrls,clientctrls,timeout,sizelimit)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:853: in search_ext
return self._ldap_call(
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call
reraise(exc_type, exc_value, exc_traceback)
/usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise
raise exc_value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65e438c970>
func = <built-in method search_ext of LDAP object at 0x7f65e4d7bf00>
args = ('cn=changelog', 2, '(street=hello)', None, 0, None, ...), kwargs = {}
diagnostic_message_success = None, exc_type = None, exc_value = None
exc_traceback = None

def _ldap_call(self,func,*args,**kwargs):
"""
Wrapper method mainly for serializing calls into OpenLDAP libs
and trace logs
"""
self._ldap_object_lock.acquire()
if __debug__:
if self._trace_level>=1:
self._trace_file.write('*** %s %s - %s\n%s\n' % (
repr(self),
self._uri,
'.'.join((self.__class__.__name__,func.__name__)),
pprint.pformat((args,kwargs))
))
if self._trace_level>=9:
traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file)
diagnostic_message_success = None
try:
try:
> result = func(*args,**kwargs)
E ldap.SERVER_DOWN: {'result': -1, 'desc': "Can't contact LDAP server", 'ctrls': []}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: SERVER_DOWN
Failed tickets/ticket47781_test.py::test_ticket47781 3.38
topology_st = <lib389.topologies.TopologyMain object at 0x7f65e5062760>

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 0x7f65e506f610>
suffix = 'dc=example,dc=com', benamebase = None, input_file = '/tmp/export.ldif'
args = {'wait': True}

def importLDIF(self, suffix=None, benamebase=None, input_file=None,
args=None):
'''
Import from a LDIF format a given 'suffix' (or 'benamebase' that stores
that suffix). It uses an internal task to acheive this request.

If 'suffix' and 'benamebase' are specified, it uses 'benamebase' first
else 'suffix'.
If both 'suffix' and 'benamebase' are missing it raise ValueError

'input_file' is the ldif input file

@param suffix - suffix of the backend
@param benamebase - 'commonname'/'cn' of the backend (e.g. 'userRoot')
@param ldif_input - file that will contain the entries in LDIF format
to import
@param args - is a dictionary that contains modifier of the import task
wait: True/[False] - If True, 'export' waits for the completion
of the task before to return

@return None

@raise ValueError

'''
if self.conn.state != DIRSRV_STATE_ONLINE:
raise ValueError("Invalid Server State %s! Must be online" % self.conn.state)

# Checking the parameters
if not benamebase and not suffix:
raise ValueError("Specify either bename or suffix")

if not input_file:
raise ValueError("input_file is mandatory")

if not os.path.exists(input_file):
> raise ValueError("Import file (%s) does not exist" % input_file)
E ValueError: Import file (/tmp/export.ldif) does not exist

/usr/local/lib/python3.8/site-packages/lib389/tasks.py:473: ValueError
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  lib389:tasks.py:567 Export task export_10242020_220848 for file /tmp/export.ldif completed successfully
Failed tickets/ticket47871_test.py::test_ticket47871_init 6.50
topology_m1c1 = <lib389.topologies.TopologyMain object at 0x7f65e43e6a30>

def test_ticket47871_init(topology_m1c1):
"""
Initialize the test environment
"""
topology_m1c1.ms["master1"].plugins.enable(name=PLUGIN_RETRO_CHANGELOG)
mod = [(ldap.MOD_REPLACE, 'nsslapd-changelogmaxage', b"10s"), # 10 second triming
(ldap.MOD_REPLACE, 'nsslapd-changelog-trim-interval', b"5s")]
topology_m1c1.ms["master1"].modify_s("cn=%s,%s" % (PLUGIN_RETRO_CHANGELOG, DN_PLUGIN), mod)
# topology_m1c1.ms["master1"].plugins.enable(name=PLUGIN_MEMBER_OF)
# topology_m1c1.ms["master1"].plugins.enable(name=PLUGIN_REFER_INTEGRITY)
topology_m1c1.ms["master1"].stop(timeout=10)
> topology_m1c1.ms["master1"].start(timeout=10)

tickets/ticket47871_test.py:51:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:1135: in start
subprocess.check_output(["systemctl", "start", "dirsrv@%s" % self.serverid], stderr=subprocess.STDOUT)
/usr/lib64/python3.8/subprocess.py:411: in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

input = None, capture_output = False, timeout = None, check = True
popenargs = (['systemctl', 'start', 'dirsrv@master1'],)
kwargs = {'stderr': -2, 'stdout': -1}
process = <subprocess.Popen object at 0x7f65e43bde20>
stdout = b'Job for dirsrv@master1.service failed because the control process exited with error code.\nSee "systemctl status dirsrv@master1.service" and "journalctl -xe" for details.\n'
stderr = None, retcode = 1

def run(*popenargs,
input=None, capture_output=False, timeout=None, check=False, **kwargs):
"""Run command with arguments and return a CompletedProcess instance.

The returned instance will have attributes args, returncode, stdout and
stderr. By default, stdout and stderr are not captured, and those attributes
will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them.

If check is True and the exit code was non-zero, it raises a
CalledProcessError. The CalledProcessError object will have the return code
in the returncode attribute, and output & stderr attributes if those streams
were captured.

If timeout is given, and the process takes too long, a TimeoutExpired
exception will be raised.

There is an optional argument "input", allowing you to
pass bytes or a string to the subprocess's stdin. If you use this argument
you may not also use the Popen constructor's "stdin" argument, as
it will be used internally.

By default, all communication is in bytes, and therefore any "input" should
be bytes, and the stdout and stderr will be bytes. If in text mode, any
"input" should be a string, and stdout and stderr will be strings decoded
according to locale encoding, or by "encoding" if set. Text mode is
triggered by setting any of text, encoding, errors or universal_newlines.

The other arguments are the same as for the Popen constructor.
"""
if input is not None:
if kwargs.get('stdin') is not None:
raise ValueError('stdin and input arguments may not both be used.')
kwargs['stdin'] = PIPE

if capture_output:
if kwargs.get('stdout') is not None or kwargs.get('stderr') is not None:
raise ValueError('stdout and stderr arguments may not be used '
'with capture_output.')
kwargs['stdout'] = PIPE
kwargs['stderr'] = PIPE

with Popen(*popenargs, **kwargs) as process:
try:
stdout, stderr = process.communicate(input, timeout=timeout)
except TimeoutExpired as exc:
process.kill()
if _mswindows:
# Windows accumulates the output in a single blocking
# read() call run on child threads, with the timeout
# being done in a join() on those threads. communicate()
# _after_ kill() is required to collect that and add it
# to the exception.
exc.stdout, exc.stderr = process.communicate()
else:
# POSIX _communicate already populated the output so
# far into the TimeoutExpired exception.
process.wait()
raise
except: # Including KeyboardInterrupt, communicate handled that.
process.kill()
# We don't call process.wait() as .__exit__ does that for us.
raise
retcode = process.poll()
if check and retcode:
> raise CalledProcessError(retcode, process.args,
output=stdout, stderr=stderr)
E subprocess.CalledProcessError: Command '['systemctl', 'start', 'dirsrv@master1']' returned non-zero exit status 1.

/usr/lib64/python3.8/subprocess.py:512: CalledProcessError
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39201, 'ldap-secureport': 63901, 'server-id': 'consumer1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:175 Joining consumer consumer1 from master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect db1b827a-1ab0-407a-8fc4-79589714ea75 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working INFO  lib389.replica:replica.py:2285 SUCCESS: joined consumer from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 INFO  lib389.topologies:topologies.py:180 Ensuring consumer consumer1 from master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 already exists
Failed tickets/ticket47871_test.py::test_ticket47871_1 0.00
topology_m1c1 = <lib389.topologies.TopologyMain object at 0x7f65e43e6a30>

def test_ticket47871_1(topology_m1c1):
'''
ADD entries and check they are all in the retrocl
'''
# add dummy entries
for cpt in range(MAX_OTHERS):
name = "%s%d" % (OTHER_NAME, cpt)
> topology_m1c1.ms["master1"].add_s(Entry(("cn=%s,%s" % (name, SUFFIX), {
'objectclass': "top person".split(),
'sn': name,
'cn': name})))

tickets/ticket47871_test.py:66:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:176: in inner
return f(ent.dn, ent.toTupleList(), *args[2:])
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:439: in add_s
return self.add_ext_s(dn,modlist,None,None)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:178: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:425: in add_ext_s
resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3
resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4(
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4
ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call
reraise(exc_type, exc_value, exc_traceback)
/usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise
raise exc_value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65def210a0>
func = <built-in method result4 of LDAP object at 0x7f65e42ab3c0>
args = (42, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None
exc_type = None, exc_value = None, exc_traceback = None

def _ldap_call(self,func,*args,**kwargs):
"""
Wrapper method mainly for serializing calls into OpenLDAP libs
and trace logs
"""
self._ldap_object_lock.acquire()
if __debug__:
if self._trace_level>=1:
self._trace_file.write('*** %s %s - %s\n%s\n' % (
repr(self),
self._uri,
'.'.join((self.__class__.__name__,func.__name__)),
pprint.pformat((args,kwargs))
))
if self._trace_level>=9:
traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file)
diagnostic_message_success = None
try:
try:
> result = func(*args,**kwargs)
E ldap.SERVER_DOWN: {'result': -1, 'desc': "Can't contact LDAP server", 'ctrls': []}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: SERVER_DOWN
Failed tickets/ticket47871_test.py::test_ticket47871_2 6.01
topology_m1c1 = <lib389.topologies.TopologyMain object at 0x7f65e43e6a30>

def test_ticket47871_2(topology_m1c1):
'''
Wait until there is just a last entries
'''
MAX_TRIES = 10
TRY_NO = 1
while TRY_NO <= MAX_TRIES:
time.sleep(6) # at least 1 trimming occurred
> ents = topology_m1c1.ms["master1"].search_s(RETROCL_SUFFIX, ldap.SCOPE_ONELEVEL, "(objectclass=*)")

tickets/ticket47871_test.py:91:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:870: in search_s
return self.search_ext_s(base,scope,filterstr,attrlist,attrsonly,None,None,timeout=self.timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:863: in search_ext_s
msgid = self.search_ext(base,scope,filterstr,attrlist,attrsonly,serverctrls,clientctrls,timeout,sizelimit)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:853: in search_ext
return self._ldap_call(
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call
reraise(exc_type, exc_value, exc_traceback)
/usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise
raise exc_value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65def210a0>
func = <built-in method search_ext of LDAP object at 0x7f65e42ab3c0>
args = ('cn=changelog', 1, '(objectclass=*)', None, 0, None, ...), kwargs = {}
diagnostic_message_success = None, exc_type = None, exc_value = None
exc_traceback = None

def _ldap_call(self,func,*args,**kwargs):
"""
Wrapper method mainly for serializing calls into OpenLDAP libs
and trace logs
"""
self._ldap_object_lock.acquire()
if __debug__:
if self._trace_level>=1:
self._trace_file.write('*** %s %s - %s\n%s\n' % (
repr(self),
self._uri,
'.'.join((self.__class__.__name__,func.__name__)),
pprint.pformat((args,kwargs))
))
if self._trace_level>=9:
traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file)
diagnostic_message_success = None
try:
try:
> result = func(*args,**kwargs)
E ldap.SERVER_DOWN: {'result': -1, 'desc': "Can't contact LDAP server", 'ctrls': []}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: SERVER_DOWN
Failed tickets/ticket47931_test.py::test_ticket47931 0.54
topology_st = <lib389.topologies.TopologyMain object at 0x7f65e4cf7d00>

def test_ticket47931(topology_st):
"""Test Retro Changelog and MemberOf deadlock fix.
Verification steps:
- Enable retro cl and memberOf.
- Create two backends: A & B.
- Configure retrocl scoping for backend A.
- Configure memberOf plugin for uniquemember
- Create group in backend A.
- In parallel, add members to the group on A, and make modifications
to entries in backend B.
- Make sure the server does not hang during the updates to both
backends.

"""

# Enable dynamic plugins to make plugin configuration easier
try:
topology_st.standalone.modify_s(DN_CONFIG,
[(ldap.MOD_REPLACE,
'nsslapd-dynamic-plugins',
b'on')])
except ldap.LDAPError as e:
log.error('Failed to enable dynamic plugins! ' + e.args[0]['desc'])
assert False

# Enable the plugins
topology_st.standalone.plugins.enable(name=PLUGIN_MEMBER_OF)
> topology_st.standalone.plugins.enable(name=PLUGIN_RETRO_CHANGELOG)

tickets/ticket47931_test.py:80:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/plugins.py:2105: in enable
plugin.enable()
/usr/local/lib/python3.8/site-packages/lib389/plugins.py:58: in enable
self.set('nsslapd-pluginEnabled', 'on')
/usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:446: in set
return self._instance.modify_ext_s(self._dn, [(action, key, value)],
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:613: in modify_ext_s
resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3
resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4(
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4
ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call
reraise(exc_type, exc_value, exc_traceback)
/usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise
raise exc_value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65e4db5ee0>
func = <built-in method result4 of LDAP object at 0x7f65e4cf77e0>
args = (7, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None
exc_type = None, exc_value = None, exc_traceback = None

def _ldap_call(self,func,*args,**kwargs):
"""
Wrapper method mainly for serializing calls into OpenLDAP libs
and trace logs
"""
self._ldap_object_lock.acquire()
if __debug__:
if self._trace_level>=1:
self._trace_file.write('*** %s %s - %s\n%s\n' % (
repr(self),
self._uri,
'.'.join((self.__class__.__name__,func.__name__)),
pprint.pformat((args,kwargs))
))
if self._trace_level>=9:
traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file)
diagnostic_message_success = None
try:
try:
> result = func(*args,**kwargs)
E ldap.UNWILLING_TO_PERFORM: {'msgtype': 103, 'msgid': 7, 'result': 53, 'desc': 'Server is unwilling to perform', 'ctrls': [], 'info': 'Failed to start plugin "Retro Changelog Plugin". See errors log.'}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: UNWILLING_TO_PERFORM
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Failed tickets/ticket47988_test.py::test_ticket47988_init 3.82
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f65e4069340>

def test_ticket47988_init(topology_m2):
"""
It adds
- Objectclass with MAY 'member'
- an entry ('bind_entry') with which we bind to test the 'SELFDN' operation
It deletes the anonymous aci

"""

_header(topology_m2, 'test_ticket47988_init')

# enable acl error logging
mod = [(ldap.MOD_REPLACE, 'nsslapd-errorlog-level', ensure_bytes(str(8192)))] # REPL
topology_m2.ms["master1"].modify_s(DN_CONFIG, mod)
topology_m2.ms["master2"].modify_s(DN_CONFIG, mod)

mod = [(ldap.MOD_REPLACE, 'nsslapd-accesslog-level', ensure_bytes(str(260)))] # Internal op
topology_m2.ms["master1"].modify_s(DN_CONFIG, mod)
topology_m2.ms["master2"].modify_s(DN_CONFIG, mod)

# add dummy entries
for cpt in range(MAX_OTHERS):
name = "%s%d" % (OTHER_NAME, cpt)
topology_m2.ms["master1"].add_s(Entry(("cn=%s,%s" % (name, SUFFIX), {
'objectclass': "top person".split(),
'sn': name,
'cn': name})))

# check that entry 0 is replicated before
loop = 0
entryDN = "cn=%s0,%s" % (OTHER_NAME, SUFFIX)
while loop <= 10:
try:
ent = topology_m2.ms["master2"].getEntry(entryDN, ldap.SCOPE_BASE, "(objectclass=*)", ['telephonenumber'])
break
except ldap.NO_SUCH_OBJECT:
time.sleep(1)
loop += 1
assert (loop <= 10)

topology_m2.ms["master1"].stop(timeout=10)
topology_m2.ms["master2"].stop(timeout=10)

# install the specific schema M1: ipa3.3, M2: ipa4.1
schema_file = os.path.join(topology_m2.ms["master1"].getDir(__file__, DATA_DIR), "ticket47988/schema_ipa3.3.tar.gz")
_install_schema(topology_m2.ms["master1"], schema_file)
schema_file = os.path.join(topology_m2.ms["master1"].getDir(__file__, DATA_DIR), "ticket47988/schema_ipa4.1.tar.gz")
_install_schema(topology_m2.ms["master2"], schema_file)

> topology_m2.ms["master1"].start(timeout=10)

/export/tests/tickets/ticket47988_test.py:157:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:1135: in start
subprocess.check_output(["systemctl", "start", "dirsrv@%s" % self.serverid], stderr=subprocess.STDOUT)
/usr/lib64/python3.8/subprocess.py:411: in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

input = None, capture_output = False, timeout = None, check = True
popenargs = (['systemctl', 'start', 'dirsrv@master1'],)
kwargs = {'stderr': -2, 'stdout': -1}
process = <subprocess.Popen object at 0x7f65def2cee0>
stdout = b'Job for dirsrv@master1.service failed because the control process exited with error code.\nSee "systemctl status dirsrv@master1.service" and "journalctl -xe" for details.\n'
stderr = None, retcode = 1

def run(*popenargs,
input=None, capture_output=False, timeout=None, check=False, **kwargs):
"""Run command with arguments and return a CompletedProcess instance.

The returned instance will have attributes args, returncode, stdout and
stderr. By default, stdout and stderr are not captured, and those attributes
will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them.

If check is True and the exit code was non-zero, it raises a
CalledProcessError. The CalledProcessError object will have the return code
in the returncode attribute, and output & stderr attributes if those streams
were captured.

If timeout is given, and the process takes too long, a TimeoutExpired
exception will be raised.

There is an optional argument "input", allowing you to
pass bytes or a string to the subprocess's stdin. If you use this argument
you may not also use the Popen constructor's "stdin" argument, as
it will be used internally.

By default, all communication is in bytes, and therefore any "input" should
be bytes, and the stdout and stderr will be bytes. If in text mode, any
"input" should be a string, and stdout and stderr will be strings decoded
according to locale encoding, or by "encoding" if set. Text mode is
triggered by setting any of text, encoding, errors or universal_newlines.

The other arguments are the same as for the Popen constructor.
"""
if input is not None:
if kwargs.get('stdin') is not None:
raise ValueError('stdin and input arguments may not both be used.')
kwargs['stdin'] = PIPE

if capture_output:
if kwargs.get('stdout') is not None or kwargs.get('stderr') is not None:
raise ValueError('stdout and stderr arguments may not be used '
'with capture_output.')
kwargs['stdout'] = PIPE
kwargs['stderr'] = PIPE

with Popen(*popenargs, **kwargs) as process:
try:
stdout, stderr = process.communicate(input, timeout=timeout)
except TimeoutExpired as exc:
process.kill()
if _mswindows:
# Windows accumulates the output in a single blocking
# read() call run on child threads, with the timeout
# being done in a join() on those threads. communicate()
# _after_ kill() is required to collect that and add it
# to the exception.
exc.stdout, exc.stderr = process.communicate()
else:
# POSIX _communicate already populated the output so
# far into the TimeoutExpired exception.
process.wait()
raise
except: # Including KeyboardInterrupt, communicate handled that.
process.kill()
# We don't call process.wait() as .__exit__ does that for us.
raise
retcode = process.poll()
if check and retcode:
> raise CalledProcessError(retcode, process.args,
output=stdout, stderr=stderr)
E subprocess.CalledProcessError: Command '['systemctl', 'start', 'dirsrv@master1']' returned non-zero exit status 1.

/usr/lib64/python3.8/subprocess.py:512: CalledProcessError
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1c4daad5-98bd-4be6-bee9-168d67b4c531 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 84c14be6-dfdc-403b-80e3-9a7b7e5ac2af / got description=1c4daad5-98bd-4be6-bee9-168d67b4c531) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47988_test.py:64 ############################################### INFO  lib389:ticket47988_test.py:65 ####### INFO  lib389:ticket47988_test.py:66 ####### test_ticket47988_init INFO  lib389:ticket47988_test.py:67 ####### INFO  lib389:ticket47988_test.py:68 ################################################### INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/02common.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/50ns-admin.ldif INFO  lib389:ticket47988_test.py:98 replace /etc/dirsrv/slapd-master1/schema/99user.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60nss-ldap.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60autofs.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/50ns-web.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60samba.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/10dna-plugin.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/05rfc4523.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60basev2.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/10automember-plugin.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/05rfc2927.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/10mep-plugin.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60ipadns.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/10rfc2307.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/50ns-mail.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/05rfc4524.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60trust.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60ipaconfig.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/50ns-directory.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60eduperson.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60mozilla.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/65ipasudo.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60rfc3712.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60rfc2739.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/50ns-value.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60acctpolicy.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/01core389.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60sabayon.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60pam-plugin.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/00core.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/25java-object.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60sudo.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/70ipaotp.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60pureftpd.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/61kerberos-ipav3.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60kerberos.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60basev3.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/06inetorgperson.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/30ns-common.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/28pilot.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/20subscriber.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/50ns-certificate.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master1/schema/60posix-winsync-plugin.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/02common.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/50ns-admin.ldif INFO  lib389:ticket47988_test.py:98 replace /etc/dirsrv/slapd-master2/schema/99user.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60nss-ldap.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60autofs.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/50ns-web.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60samba.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/10dna-plugin.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/05rfc4523.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60basev2.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/10automember-plugin.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/05rfc2927.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/10mep-plugin.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60ipadns.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/10rfc2307.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/50ns-mail.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/05rfc4524.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60trust.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60ipaconfig.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/50ns-directory.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60eduperson.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60mozilla.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/65ipasudo.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60rfc3712.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60rfc2739.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/50ns-value.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60acctpolicy.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/01core389.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60sabayon.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60pam-plugin.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/00core.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/25java-object.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60sudo.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/70ipaotp.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60pureftpd.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/61kerberos-ipav3.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60kerberos.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/60basev3.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/06inetorgperson.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/30ns-common.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/28pilot.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/20subscriber.ldif INFO  lib389:ticket47988_test.py:102 add /etc/dirsrv/slapd-master2/schema/50ns-certificate.ldif INFO  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 0x7f65e4069340>

def test_ticket47988_1(topology_m2):
'''
Check that replication is working and pause replication M2->M1
'''
_header(topology_m2, 'test_ticket47988_1')

topology_m2.ms["master1"].log.debug("\n\nCheck that replication is working and pause replication M2->M1\n")
> _do_update_entry(supplier=topology_m2.ms["master2"], consumer=topology_m2.ms["master1"], attempts=5)

/export/tests/tickets/ticket47988_test.py:234:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/export/tests/tickets/ticket47988_test.py:184: in _do_update_entry
supplier.modify_s(entryDN, mod)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:640: in modify_s
return self.modify_ext_s(dn,modlist,None,None)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:613: in modify_ext_s
resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3
resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4(
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4
ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call
reraise(exc_type, exc_value, exc_traceback)
/usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise
raise exc_value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65e40946a0>
func = <built-in method result4 of LDAP object at 0x7f65e40831b0>
args = (26, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None
exc_type = None, exc_value = None, exc_traceback = None

def _ldap_call(self,func,*args,**kwargs):
"""
Wrapper method mainly for serializing calls into OpenLDAP libs
and trace logs
"""
self._ldap_object_lock.acquire()
if __debug__:
if self._trace_level>=1:
self._trace_file.write('*** %s %s - %s\n%s\n' % (
repr(self),
self._uri,
'.'.join((self.__class__.__name__,func.__name__)),
pprint.pformat((args,kwargs))
))
if self._trace_level>=9:
traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file)
diagnostic_message_success = None
try:
try:
> result = func(*args,**kwargs)
E ldap.SERVER_DOWN: {'result': -1, 'desc': "Can't contact LDAP server", 'ctrls': []}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: SERVER_DOWN
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47988_test.py:64 ############################################### INFO  lib389:ticket47988_test.py:65 ####### INFO  lib389:ticket47988_test.py:66 ####### test_ticket47988_1 INFO  lib389:ticket47988_test.py:67 ####### INFO  lib389:ticket47988_test.py:68 ###################################################
Failed tickets/ticket47988_test.py::test_ticket47988_2 0.00
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f65e4069340>

def test_ticket47988_2(topology_m2):
'''
Update M1 schema and trigger update M1->M2
So M1 should learn new/extended definitions that are in M2 schema
'''
_header(topology_m2, 'test_ticket47988_2')

topology_m2.ms["master1"].log.debug("\n\nUpdate M1 schema and an entry on M1\n")
> master1_schema_csn = topology_m2.ms["master1"].schema.get_schema_csn()

/export/tests/tickets/ticket47988_test.py:246:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/schema.py:604: in get_schema_csn
ents = self.conn.search_s(DN_SCHEMA, ldap.SCOPE_BASE,
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:870: in search_s
return self.search_ext_s(base,scope,filterstr,attrlist,attrsonly,None,None,timeout=self.timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:864: in search_ext_s
return self.result(msgid,all=1,timeout=timeout)[1]
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:148: in inner
objtype, data = f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:756: in result
resp_type, resp_data, resp_msgid = self.result2(msgid,all,timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:760: in result2
resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all,timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3
resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4(
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4
ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call
reraise(exc_type, exc_value, exc_traceback)
/usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise
raise exc_value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65e4083be0>
func = <built-in method result4 of LDAP object at 0x7f65e4072a80>
args = (62, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None
exc_type = None, exc_value = None, exc_traceback = None

def _ldap_call(self,func,*args,**kwargs):
"""
Wrapper method mainly for serializing calls into OpenLDAP libs
and trace logs
"""
self._ldap_object_lock.acquire()
if __debug__:
if self._trace_level>=1:
self._trace_file.write('*** %s %s - %s\n%s\n' % (
repr(self),
self._uri,
'.'.join((self.__class__.__name__,func.__name__)),
pprint.pformat((args,kwargs))
))
if self._trace_level>=9:
traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file)
diagnostic_message_success = None
try:
try:
> result = func(*args,**kwargs)
E ldap.SERVER_DOWN: {'result': -1, 'desc': "Can't contact LDAP server", 'ctrls': []}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: SERVER_DOWN
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47988_test.py:64 ############################################### INFO  lib389:ticket47988_test.py:65 ####### INFO  lib389:ticket47988_test.py:66 ####### test_ticket47988_2 INFO  lib389:ticket47988_test.py:67 ####### INFO  lib389:ticket47988_test.py:68 ###################################################
Failed tickets/ticket47988_test.py::test_ticket47988_3 0.00
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f65e4069340>

def test_ticket47988_3(topology_m2):
'''
Resume replication M2->M1 and check replication is still working
'''
_header(topology_m2, 'test_ticket47988_3')

> _resume_M2_to_M1(topology_m2)

/export/tests/tickets/ticket47988_test.py:283:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/export/tests/tickets/ticket47988_test.py:222: in _resume_M2_to_M1
ents = topology_m2.ms["master2"].agreement.list(suffix=SUFFIX)
/usr/local/lib/python3.8/site-packages/lib389/agreement.py:905: in list
replica_entries = self.conn.replica.list(suffix)
/usr/local/lib/python3.8/site-packages/lib389/replica.py:178: in list
ents = self.conn.search_s(base, ldap.SCOPE_SUBTREE, filtr)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:870: in search_s
return self.search_ext_s(base,scope,filterstr,attrlist,attrsonly,None,None,timeout=self.timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:863: in search_ext_s
msgid = self.search_ext(base,scope,filterstr,attrlist,attrsonly,serverctrls,clientctrls,timeout,sizelimit)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:853: in search_ext
return self._ldap_call(
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call
reraise(exc_type, exc_value, exc_traceback)
/usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise
raise exc_value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65e40946a0>
func = <built-in method search_ext of LDAP object at 0x7f65e40831b0>
args = ('cn=mapping tree,cn=config', 2, '(&(objectclass=nsds5Replica)(nsDS5ReplicaRoot=dc=example,dc=com))', None, 0, None, ...)
kwargs = {}, diagnostic_message_success = None, exc_type = None
exc_value = None, exc_traceback = None

def _ldap_call(self,func,*args,**kwargs):
"""
Wrapper method mainly for serializing calls into OpenLDAP libs
and trace logs
"""
self._ldap_object_lock.acquire()
if __debug__:
if self._trace_level>=1:
self._trace_file.write('*** %s %s - %s\n%s\n' % (
repr(self),
self._uri,
'.'.join((self.__class__.__name__,func.__name__)),
pprint.pformat((args,kwargs))
))
if self._trace_level>=9:
traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file)
diagnostic_message_success = None
try:
try:
> result = func(*args,**kwargs)
E ldap.SERVER_DOWN: {'result': -1, 'desc': "Can't contact LDAP server", 'ctrls': []}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: SERVER_DOWN
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47988_test.py:64 ############################################### INFO  lib389:ticket47988_test.py:65 ####### INFO  lib389:ticket47988_test.py:66 ####### test_ticket47988_3 INFO  lib389:ticket47988_test.py:67 ####### INFO  lib389:ticket47988_test.py:68 ################################################### INFO  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 0x7f65e4069340>

def test_ticket47988_4(topology_m2):
'''
Check schemaCSN is identical on both server
And save the nsschemaCSN to later check they do not change unexpectedly
'''
_header(topology_m2, 'test_ticket47988_4')

> master1_schema_csn = topology_m2.ms["master1"].schema.get_schema_csn()

/export/tests/tickets/ticket47988_test.py:295:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/schema.py:604: in get_schema_csn
ents = self.conn.search_s(DN_SCHEMA, ldap.SCOPE_BASE,
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:870: in search_s
return self.search_ext_s(base,scope,filterstr,attrlist,attrsonly,None,None,timeout=self.timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:863: in search_ext_s
msgid = self.search_ext(base,scope,filterstr,attrlist,attrsonly,serverctrls,clientctrls,timeout,sizelimit)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:853: in search_ext
return self._ldap_call(
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call
reraise(exc_type, exc_value, exc_traceback)
/usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise
raise exc_value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65e4083be0>
func = <built-in method search_ext of LDAP object at 0x7f65e4072a80>
args = ('cn=schema', 0, 'objectclass=*', ['nsSchemaCSN'], 0, None, ...)
kwargs = {}, diagnostic_message_success = None, exc_type = None
exc_value = None, exc_traceback = None

def _ldap_call(self,func,*args,**kwargs):
"""
Wrapper method mainly for serializing calls into OpenLDAP libs
and trace logs
"""
self._ldap_object_lock.acquire()
if __debug__:
if self._trace_level>=1:
self._trace_file.write('*** %s %s - %s\n%s\n' % (
repr(self),
self._uri,
'.'.join((self.__class__.__name__,func.__name__)),
pprint.pformat((args,kwargs))
))
if self._trace_level>=9:
traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file)
diagnostic_message_success = None
try:
try:
> result = func(*args,**kwargs)
E ldap.SERVER_DOWN: {'result': -1, 'desc': "Can't contact LDAP server", 'ctrls': []}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: SERVER_DOWN
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47988_test.py:64 ############################################### INFO  lib389:ticket47988_test.py:65 ####### INFO  lib389:ticket47988_test.py:66 ####### test_ticket47988_4 INFO  lib389:ticket47988_test.py:67 ####### INFO  lib389:ticket47988_test.py:68 ###################################################
Failed tickets/ticket47988_test.py::test_ticket47988_5 0.00
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f65e4069340>

def test_ticket47988_5(topology_m2):
'''
Check schemaCSN do not change unexpectedly
'''
_header(topology_m2, 'test_ticket47988_5')

> _do_update_entry(supplier=topology_m2.ms["master1"], consumer=topology_m2.ms["master2"], attempts=5)

/export/tests/tickets/ticket47988_test.py:313:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/export/tests/tickets/ticket47988_test.py:184: in _do_update_entry
supplier.modify_s(entryDN, mod)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:640: in modify_s
return self.modify_ext_s(dn,modlist,None,None)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:612: in modify_ext_s
msgid = self.modify_ext(dn,modlist,serverctrls,clientctrls)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:609: in modify_ext
return self._ldap_call(self._l.modify_ext,dn,modlist,RequestControlTuples(serverctrls),RequestControlTuples(clientctrls))
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call
reraise(exc_type, exc_value, exc_traceback)
/usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise
raise exc_value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65e4083be0>
func = <built-in method modify_ext of LDAP object at 0x7f65e4072a80>
args = ('cn=other_entry0,dc=example,dc=com', [(2, 'telephonenumber', b'181')], None, None)
kwargs = {}, diagnostic_message_success = None, exc_type = None
exc_value = None, exc_traceback = None

def _ldap_call(self,func,*args,**kwargs):
"""
Wrapper method mainly for serializing calls into OpenLDAP libs
and trace logs
"""
self._ldap_object_lock.acquire()
if __debug__:
if self._trace_level>=1:
self._trace_file.write('*** %s %s - %s\n%s\n' % (
repr(self),
self._uri,
'.'.join((self.__class__.__name__,func.__name__)),
pprint.pformat((args,kwargs))
))
if self._trace_level>=9:
traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file)
diagnostic_message_success = None
try:
try:
> result = func(*args,**kwargs)
E ldap.SERVER_DOWN: {'result': -1, 'desc': "Can't contact LDAP server", 'ctrls': []}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: SERVER_DOWN
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47988_test.py:64 ############################################### INFO  lib389:ticket47988_test.py:65 ####### INFO  lib389:ticket47988_test.py:66 ####### test_ticket47988_5 INFO  lib389:ticket47988_test.py:67 ####### INFO  lib389:ticket47988_test.py:68 ###################################################
Failed tickets/ticket47988_test.py::test_ticket47988_6 0.00
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f65e4069340>

def test_ticket47988_6(topology_m2):
'''
Update M1 schema and trigger update M2->M1
So M2 should learn new/extended definitions that are in M1 schema
'''

_header(topology_m2, 'test_ticket47988_6')

topology_m2.ms["master1"].log.debug("\n\nUpdate M1 schema and an entry on M1\n")
> master1_schema_csn = topology_m2.ms["master1"].schema.get_schema_csn()

/export/tests/tickets/ticket47988_test.py:336:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/schema.py:604: in get_schema_csn
ents = self.conn.search_s(DN_SCHEMA, ldap.SCOPE_BASE,
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:870: in search_s
return self.search_ext_s(base,scope,filterstr,attrlist,attrsonly,None,None,timeout=self.timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:863: in search_ext_s
msgid = self.search_ext(base,scope,filterstr,attrlist,attrsonly,serverctrls,clientctrls,timeout,sizelimit)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:853: in search_ext
return self._ldap_call(
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call
reraise(exc_type, exc_value, exc_traceback)
/usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise
raise exc_value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65e4083be0>
func = <built-in method search_ext of LDAP object at 0x7f65e4072a80>
args = ('cn=schema', 0, 'objectclass=*', ['nsSchemaCSN'], 0, None, ...)
kwargs = {}, diagnostic_message_success = None, exc_type = None
exc_value = None, exc_traceback = None

def _ldap_call(self,func,*args,**kwargs):
"""
Wrapper method mainly for serializing calls into OpenLDAP libs
and trace logs
"""
self._ldap_object_lock.acquire()
if __debug__:
if self._trace_level>=1:
self._trace_file.write('*** %s %s - %s\n%s\n' % (
repr(self),
self._uri,
'.'.join((self.__class__.__name__,func.__name__)),
pprint.pformat((args,kwargs))
))
if self._trace_level>=9:
traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file)
diagnostic_message_success = None
try:
try:
> result = func(*args,**kwargs)
E ldap.SERVER_DOWN: {'result': -1, 'desc': "Can't contact LDAP server", 'ctrls': []}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: SERVER_DOWN
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47988_test.py:64 ############################################### INFO  lib389:ticket47988_test.py:65 ####### INFO  lib389:ticket47988_test.py:66 ####### test_ticket47988_6 INFO  lib389:ticket47988_test.py:67 ####### INFO  lib389:ticket47988_test.py:68 ###################################################
Failed tickets/ticket48005_test.py::test_ticket48005_usn 4.52
topology_st = <lib389.topologies.TopologyMain object at 0x7f65def2ccd0>

def test_ticket48005_usn(topology_st):
'''
Enable entryusn
Delete all user entries.
Run USN tombstone cleanup task
Shutdown the server
Check if a core file was generated or not
If no core was found, this test case was successful.
'''
log.info("Ticket 48005 usn test...")
topology_st.standalone.plugins.enable(name=PLUGIN_USN)

topology_st.standalone.restart(timeout=10)

try:
> entries = topology_st.standalone.search_s(SUFFIX, ldap.SCOPE_SUBTREE, "(objectclass=inetorgperson)")

/export/tests/tickets/ticket48005_test.py:283:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:870: in search_s
return self.search_ext_s(base,scope,filterstr,attrlist,attrsonly,None,None,timeout=self.timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:864: in search_ext_s
return self.result(msgid,all=1,timeout=timeout)[1]
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:148: in inner
objtype, data = f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:756: in result
resp_type, resp_data, resp_msgid = self.result2(msgid,all,timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:760: in result2
resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all,timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3
resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4(
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4
ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call
reraise(exc_type, exc_value, exc_traceback)
/usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise
raise exc_value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65def2c8b0>
func = <built-in method result4 of LDAP object at 0x7f65e4fd8ed0>
args = (3, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None
exc_type = None, exc_value = None, exc_traceback = None

def _ldap_call(self,func,*args,**kwargs):
"""
Wrapper method mainly for serializing calls into OpenLDAP libs
and trace logs
"""
self._ldap_object_lock.acquire()
if __debug__:
if self._trace_level>=1:
self._trace_file.write('*** %s %s - %s\n%s\n' % (
repr(self),
self._uri,
'.'.join((self.__class__.__name__,func.__name__)),
pprint.pformat((args,kwargs))
))
if self._trace_level>=9:
traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file)
diagnostic_message_success = None
try:
try:
> result = func(*args,**kwargs)
E ldap.NO_SUCH_OBJECT: {'msgtype': 101, 'msgid': 3, 'result': 32, 'desc': 'No such object', 'ctrls': []}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: NO_SUCH_OBJECT
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48005_test:ticket48005_test.py:277 Ticket 48005 usn test...
Failed tickets/ticket48013_test.py::test_ticket48013 0.03
topology_st = <lib389.topologies.TopologyMain object at 0x7f65e4fb2ac0>

def test_ticket48013(topology_st):
'''
Content Synchonization: Test that invalid cookies are caught
'''

cookies = ('#', '##', 'a#a#a', 'a#a#1')

# Enable dynamic plugins
try:
topology_st.standalone.modify_s(DN_CONFIG, [(ldap.MOD_REPLACE, 'nsslapd-dynamic-plugins', b'on')])
except ldap.LDAPError as e:
log.error('Failed to enable dynamic plugin! {}'.format(e.args[0]['desc']))
assert False

# Enable retro changelog
> topology_st.standalone.plugins.enable(name=PLUGIN_RETRO_CHANGELOG)

/export/tests/tickets/ticket48013_test.py:58:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/plugins.py:2105: in enable
plugin.enable()
/usr/local/lib/python3.8/site-packages/lib389/plugins.py:58: in enable
self.set('nsslapd-pluginEnabled', 'on')
/usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:446: in set
return self._instance.modify_ext_s(self._dn, [(action, key, value)],
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:613: in modify_ext_s
resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3
resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4(
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4
ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call
reraise(exc_type, exc_value, exc_traceback)
/usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise
raise exc_value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65e4fb27f0>
func = <built-in method result4 of LDAP object at 0x7f65deca3750>
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.UNWILLING_TO_PERFORM: {'msgtype': 103, 'msgid': 5, 'result': 53, 'desc': 'Server is unwilling to perform', 'ctrls': [], 'info': 'Failed to start plugin "Retro Changelog Plugin". See errors log.'}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: UNWILLING_TO_PERFORM
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Failed tickets/ticket48194_test.py::test_run_1 7.04
topology_st = <lib389.topologies.TopologyMain object at 0x7f65e42e9c70>

def test_run_1(topology_st):
"""
Check nsSSL3Ciphers: +all
All ciphers are enabled except null.
Note: default allowWeakCipher (i.e., off) for +all
"""
_header(topology_st, 'Test Case 2 - Check the ciphers availability for "+all" with default allowWeakCiphers')

topology_st.standalone.simple_bind_s(DN_DM, PASSWORD)
topology_st.standalone.modify_s(CONFIG_DN, [(ldap.MOD_REPLACE, 'nsslapd-errorlog-level', b'64')])
# Make sure allowWeakCipher is not set.
topology_st.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_DELETE, 'allowWeakCipher', None)])

log.info("\n######################### Restarting the server ######################\n")
topology_st.standalone.stop(timeout=10)
os.system('mv %s %s.48194_0' % (topology_st.standalone.errlog, topology_st.standalone.errlog))
os.system('touch %s' % (topology_st.standalone.errlog))
time.sleep(2)
topology_st.standalone.start(timeout=120)

> connectWithOpenssl(topology_st, 'DES-CBC3-SHA', False)

/export/tests/tickets/ticket48194_test.py:158:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

topology_st = <lib389.topologies.TopologyMain object at 0x7f65e42e9c70>
cipher = 'DES-CBC3-SHA', expect = False

def connectWithOpenssl(topology_st, cipher, expect):
"""
Connect with the given cipher
Condition:
If expect is True, the handshake should be successful.
If expect is False, the handshake should be refused with
access log: "Cannot communicate securely with peer:
no common encryption algorithm(s)."
"""
log.info("Testing %s -- expect to handshake %s", cipher, "successfully" if expect else "failed")

myurl = 'localhost:%s' % LDAPSPORT
cmdline = ['/usr/bin/openssl', 's_client', '-connect', myurl, '-cipher', cipher]

strcmdline = " ".join(cmdline)
log.info("Running cmdline: %s", strcmdline)

try:
proc = subprocess.Popen(cmdline, stdout=subprocess.PIPE, stdin=subprocess.PIPE, stderr=subprocess.STDOUT)
except ValueError:
log.info("%s failed: %s", cmdline, ValueError)
proc.kill()

while True:
l = proc.stdout.readline()
if l == b"":
break
if b'Cipher is' in l:
log.info("Found: %s", l)
if expect:
if b'(NONE)' in l:
assert False
else:
proc.stdin.close()
assert True
else:
if b'(NONE)' in l:
assert True
else:
proc.stdin.close()
> assert False
E assert False

/export/tests/tickets/ticket48194_test.py:117: AssertionError
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket48194_test.py:40 ############################################### INFO  lib389:ticket48194_test.py:41 ####### Test Case 2 - Check the ciphers availability for "+all" with default allowWeakCiphers INFO  lib389:ticket48194_test.py:42 ############################################### INFO  lib389.utils:ticket48194_test.py:151 ######################### Restarting the server ###################### INFO  lib389.utils:ticket48194_test.py:86 Testing DES-CBC3-SHA -- expect to handshake failed INFO  lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher DES-CBC3-SHA INFO  lib389.utils:ticket48194_test.py:105 Found: b'New, TLSv1.3, Cipher is TLS_AES_128_GCM_SHA256\n'
Failed tickets/ticket48194_test.py::test_run_2 6.54
topology_st = <lib389.topologies.TopologyMain object at 0x7f65e42e9c70>

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 0x7f65e42e9c70>
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--------------------------------
INFO  lib389:ticket48194_test.py:40 ############################################### INFO  lib389:ticket48194_test.py:41 ####### Test Case 3 - Check the ciphers availability for "+rsa_aes_128_sha,+rsa_aes_256_sha" with default allowWeakCipher INFO  lib389:ticket48194_test.py:42 ############################################### INFO  lib389.utils:ticket48194_test.py:175 ######################### Restarting the server ###################### INFO  lib389.utils:ticket48194_test.py:86 Testing DES-CBC3-SHA -- expect to handshake failed INFO  lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher DES-CBC3-SHA INFO  lib389.utils:ticket48194_test.py:105 Found: b'New, (NONE), Cipher is (NONE)\n' INFO  lib389.utils:ticket48194_test.py:86 Testing AES256-SHA256 -- expect to handshake failed INFO  lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher AES256-SHA256 INFO  lib389.utils:ticket48194_test.py:105 Found: b'New, (NONE), Cipher is (NONE)\n' INFO  lib389.utils:ticket48194_test.py:86 Testing AES128-SHA -- expect to handshake successfully INFO  lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher AES128-SHA INFO  lib389.utils:ticket48194_test.py:105 Found: b'New, (NONE), Cipher is (NONE)\n'
Failed tickets/ticket48194_test.py::test_run_4 6.89
topology_st = <lib389.topologies.TopologyMain object at 0x7f65e42e9c70>

def test_run_4(topology_st):
"""
Check no nsSSL3Ciphers
Default ciphers are enabled.
default allowWeakCipher
"""
_header(topology_st, 'Test Case 5 - Check no nsSSL3Ciphers (-all) with default allowWeakCipher')

topology_st.standalone.simple_bind_s(DN_DM, PASSWORD)
topology_st.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_DELETE, 'nsSSL3Ciphers', b'-all')])

log.info("\n######################### Restarting the server ######################\n")
topology_st.standalone.stop(timeout=10)
os.system('mv %s %s.48194_3' % (topology_st.standalone.errlog, topology_st.standalone.errlog))
os.system('touch %s' % (topology_st.standalone.errlog))
time.sleep(2)
topology_st.standalone.start(timeout=120)

> connectWithOpenssl(topology_st, 'DES-CBC3-SHA', False)

/export/tests/tickets/ticket48194_test.py:228:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

topology_st = <lib389.topologies.TopologyMain object at 0x7f65e42e9c70>
cipher = 'DES-CBC3-SHA', expect = False

def connectWithOpenssl(topology_st, cipher, expect):
"""
Connect with the given cipher
Condition:
If expect is True, the handshake should be successful.
If expect is False, the handshake should be refused with
access log: "Cannot communicate securely with peer:
no common encryption algorithm(s)."
"""
log.info("Testing %s -- expect to handshake %s", cipher, "successfully" if expect else "failed")

myurl = 'localhost:%s' % LDAPSPORT
cmdline = ['/usr/bin/openssl', 's_client', '-connect', myurl, '-cipher', cipher]

strcmdline = " ".join(cmdline)
log.info("Running cmdline: %s", strcmdline)

try:
proc = subprocess.Popen(cmdline, stdout=subprocess.PIPE, stdin=subprocess.PIPE, stderr=subprocess.STDOUT)
except ValueError:
log.info("%s failed: %s", cmdline, ValueError)
proc.kill()

while True:
l = proc.stdout.readline()
if l == b"":
break
if b'Cipher is' in l:
log.info("Found: %s", l)
if expect:
if b'(NONE)' in l:
assert False
else:
proc.stdin.close()
assert True
else:
if b'(NONE)' in l:
assert True
else:
proc.stdin.close()
> assert False
E assert False

/export/tests/tickets/ticket48194_test.py:117: AssertionError
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket48194_test.py:40 ############################################### INFO  lib389:ticket48194_test.py:41 ####### Test Case 5 - Check no nsSSL3Ciphers (-all) with default allowWeakCipher INFO  lib389:ticket48194_test.py:42 ############################################### INFO  lib389.utils:ticket48194_test.py:221 ######################### Restarting the server ###################### INFO  lib389.utils:ticket48194_test.py:86 Testing DES-CBC3-SHA -- expect to handshake failed INFO  lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher DES-CBC3-SHA INFO  lib389.utils:ticket48194_test.py:105 Found: b'New, TLSv1.3, Cipher is TLS_AES_128_GCM_SHA256\n'
Failed tickets/ticket48194_test.py::test_run_5 6.70
topology_st = <lib389.topologies.TopologyMain object at 0x7f65e42e9c70>

def test_run_5(topology_st):
"""
Check nsSSL3Ciphers: default
Default ciphers are enabled.
default allowWeakCipher
"""
_header(topology_st, 'Test Case 6 - Check default nsSSL3Ciphers (default setting) with default allowWeakCipher')

topology_st.standalone.simple_bind_s(DN_DM, PASSWORD)
topology_st.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3Ciphers', b'default')])

log.info("\n######################### Restarting the server ######################\n")
topology_st.standalone.stop(timeout=10)
os.system('mv %s %s.48194_4' % (topology_st.standalone.errlog, topology_st.standalone.errlog))
os.system('touch %s' % (topology_st.standalone.errlog))
time.sleep(2)
topology_st.standalone.start(timeout=120)

> connectWithOpenssl(topology_st, 'DES-CBC3-SHA', False)

/export/tests/tickets/ticket48194_test.py:250:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

topology_st = <lib389.topologies.TopologyMain object at 0x7f65e42e9c70>
cipher = 'DES-CBC3-SHA', expect = False

def connectWithOpenssl(topology_st, cipher, expect):
"""
Connect with the given cipher
Condition:
If expect is True, the handshake should be successful.
If expect is False, the handshake should be refused with
access log: "Cannot communicate securely with peer:
no common encryption algorithm(s)."
"""
log.info("Testing %s -- expect to handshake %s", cipher, "successfully" if expect else "failed")

myurl = 'localhost:%s' % LDAPSPORT
cmdline = ['/usr/bin/openssl', 's_client', '-connect', myurl, '-cipher', cipher]

strcmdline = " ".join(cmdline)
log.info("Running cmdline: %s", strcmdline)

try:
proc = subprocess.Popen(cmdline, stdout=subprocess.PIPE, stdin=subprocess.PIPE, stderr=subprocess.STDOUT)
except ValueError:
log.info("%s failed: %s", cmdline, ValueError)
proc.kill()

while True:
l = proc.stdout.readline()
if l == b"":
break
if b'Cipher is' in l:
log.info("Found: %s", l)
if expect:
if b'(NONE)' in l:
assert False
else:
proc.stdin.close()
assert True
else:
if b'(NONE)' in l:
assert True
else:
proc.stdin.close()
> assert False
E assert False

/export/tests/tickets/ticket48194_test.py:117: AssertionError
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket48194_test.py:40 ############################################### INFO  lib389:ticket48194_test.py:41 ####### Test Case 6 - Check default nsSSL3Ciphers (default setting) with default allowWeakCipher INFO  lib389:ticket48194_test.py:42 ############################################### INFO  lib389.utils:ticket48194_test.py:243 ######################### Restarting the server ###################### INFO  lib389.utils:ticket48194_test.py:86 Testing DES-CBC3-SHA -- expect to handshake failed INFO  lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher DES-CBC3-SHA INFO  lib389.utils:ticket48194_test.py:105 Found: b'New, TLSv1.3, Cipher is TLS_AES_128_GCM_SHA256\n'
Failed tickets/ticket48194_test.py::test_run_6 6.71
topology_st = <lib389.topologies.TopologyMain object at 0x7f65e42e9c70>

def test_run_6(topology_st):
"""
Check nsSSL3Ciphers: +all,-TLS_RSA_WITH_AES_256_CBC_SHA256
All ciphers are disabled.
default allowWeakCipher
"""
_header(topology_st,
'Test Case 7 - Check nsSSL3Ciphers: +all,-TLS_RSA_WITH_AES_256_CBC_SHA256 with default allowWeakCipher')

topology_st.standalone.simple_bind_s(DN_DM, PASSWORD)
topology_st.standalone.modify_s(ENCRYPTION_DN,
[(ldap.MOD_REPLACE, 'nsSSL3Ciphers', b'+all,-TLS_RSA_WITH_AES_256_CBC_SHA256')])

log.info("\n######################### Restarting the server ######################\n")
topology_st.standalone.stop(timeout=10)
os.system('mv %s %s.48194_5' % (topology_st.standalone.errlog, topology_st.standalone.errlog))
os.system('touch %s' % (topology_st.standalone.errlog))
time.sleep(2)
topology_st.standalone.start(timeout=120)

> connectWithOpenssl(topology_st, 'DES-CBC3-SHA', False)

/export/tests/tickets/ticket48194_test.py:274:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

topology_st = <lib389.topologies.TopologyMain object at 0x7f65e42e9c70>
cipher = 'DES-CBC3-SHA', expect = False

def connectWithOpenssl(topology_st, cipher, expect):
"""
Connect with the given cipher
Condition:
If expect is True, the handshake should be successful.
If expect is False, the handshake should be refused with
access log: "Cannot communicate securely with peer:
no common encryption algorithm(s)."
"""
log.info("Testing %s -- expect to handshake %s", cipher, "successfully" if expect else "failed")

myurl = 'localhost:%s' % LDAPSPORT
cmdline = ['/usr/bin/openssl', 's_client', '-connect', myurl, '-cipher', cipher]

strcmdline = " ".join(cmdline)
log.info("Running cmdline: %s", strcmdline)

try:
proc = subprocess.Popen(cmdline, stdout=subprocess.PIPE, stdin=subprocess.PIPE, stderr=subprocess.STDOUT)
except ValueError:
log.info("%s failed: %s", cmdline, ValueError)
proc.kill()

while True:
l = proc.stdout.readline()
if l == b"":
break
if b'Cipher is' in l:
log.info("Found: %s", l)
if expect:
if b'(NONE)' in l:
assert False
else:
proc.stdin.close()
assert True
else:
if b'(NONE)' in l:
assert True
else:
proc.stdin.close()
> assert False
E assert False

/export/tests/tickets/ticket48194_test.py:117: AssertionError
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket48194_test.py:40 ############################################### INFO  lib389:ticket48194_test.py:41 ####### Test Case 7 - Check nsSSL3Ciphers: +all,-TLS_RSA_WITH_AES_256_CBC_SHA256 with default allowWeakCipher INFO  lib389:ticket48194_test.py:42 ############################################### INFO  lib389.utils:ticket48194_test.py:267 ######################### Restarting the server ###################### INFO  lib389.utils:ticket48194_test.py:86 Testing DES-CBC3-SHA -- expect to handshake failed INFO  lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher DES-CBC3-SHA INFO  lib389.utils:ticket48194_test.py:105 Found: b'New, TLSv1.3, Cipher is TLS_AES_128_GCM_SHA256\n'
Failed tickets/ticket48194_test.py::test_run_8 6.80
topology_st = <lib389.topologies.TopologyMain object at 0x7f65e42e9c70>

def test_run_8(topology_st):
"""
Check nsSSL3Ciphers: default + allowWeakCipher: off
Strong Default ciphers are enabled.
"""
_header(topology_st, 'Test Case 9 - Check default nsSSL3Ciphers (default setting + allowWeakCipher: off)')

topology_st.standalone.simple_bind_s(DN_DM, PASSWORD)
topology_st.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3Ciphers', b'default'),
(ldap.MOD_REPLACE, 'allowWeakCipher', b'off')])

log.info("\n######################### Restarting the server ######################\n")
topology_st.standalone.stop(timeout=10)
os.system('mv %s %s.48194_7' % (topology_st.standalone.errlog, topology_st.standalone.errlog))
os.system('touch %s' % (topology_st.standalone.errlog))
time.sleep(2)
topology_st.standalone.start(timeout=120)

> connectWithOpenssl(topology_st, 'DES-CBC3-SHA', False)

/export/tests/tickets/ticket48194_test.py:297:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

topology_st = <lib389.topologies.TopologyMain object at 0x7f65e42e9c70>
cipher = 'DES-CBC3-SHA', expect = False

def connectWithOpenssl(topology_st, cipher, expect):
"""
Connect with the given cipher
Condition:
If expect is True, the handshake should be successful.
If expect is False, the handshake should be refused with
access log: "Cannot communicate securely with peer:
no common encryption algorithm(s)."
"""
log.info("Testing %s -- expect to handshake %s", cipher, "successfully" if expect else "failed")

myurl = 'localhost:%s' % LDAPSPORT
cmdline = ['/usr/bin/openssl', 's_client', '-connect', myurl, '-cipher', cipher]

strcmdline = " ".join(cmdline)
log.info("Running cmdline: %s", strcmdline)

try:
proc = subprocess.Popen(cmdline, stdout=subprocess.PIPE, stdin=subprocess.PIPE, stderr=subprocess.STDOUT)
except ValueError:
log.info("%s failed: %s", cmdline, ValueError)
proc.kill()

while True:
l = proc.stdout.readline()
if l == b"":
break
if b'Cipher is' in l:
log.info("Found: %s", l)
if expect:
if b'(NONE)' in l:
assert False
else:
proc.stdin.close()
assert True
else:
if b'(NONE)' in l:
assert True
else:
proc.stdin.close()
> assert False
E assert False

/export/tests/tickets/ticket48194_test.py:117: AssertionError
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket48194_test.py:40 ############################################### INFO  lib389:ticket48194_test.py:41 ####### Test Case 9 - Check default nsSSL3Ciphers (default setting + allowWeakCipher: off) INFO  lib389:ticket48194_test.py:42 ############################################### INFO  lib389.utils:ticket48194_test.py:290 ######################### Restarting the server ###################### INFO  lib389.utils:ticket48194_test.py:86 Testing DES-CBC3-SHA -- expect to handshake failed INFO  lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher DES-CBC3-SHA INFO  lib389.utils:ticket48194_test.py:105 Found: b'New, TLSv1.3, Cipher is TLS_AES_128_GCM_SHA256\n'
Failed tickets/ticket48266_test.py::test_ticket48266_count_csn_evaluation 0.36
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f65defa5eb0>
entries = None

def test_ticket48266_count_csn_evaluation(topology_m2, entries):
ents = topology_m2.ms["master1"].agreement.list(suffix=SUFFIX)
assert len(ents) == 1
> first_csn = _get_first_not_replicated_csn(topology_m2)

/export/tests/tickets/ticket48266_test.py:176:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

topology_m2 = <lib389.topologies.TopologyMain object at 0x7f65defa5eb0>

def _get_first_not_replicated_csn(topology_m2):
name = "cn=%s2,%s" % (NEW_ACCOUNT, SUFFIX)

# read the first CSN that will not be replicated
mod = [(ldap.MOD_REPLACE, 'telephonenumber', ensure_bytes('123456'))]
topology_m2.ms["master1"].modify_s(name, mod)
msgid = topology_m2.ms["master1"].search_ext(name, ldap.SCOPE_SUBTREE, 'objectclass=*', ['nscpentrywsi'])
rtype, rdata, rmsgid = topology_m2.ms["master1"].result2(msgid)
attrs = None
for dn, raw_attrs in rdata:
topology_m2.ms["master1"].log.info("dn: %s" % dn)
if 'nscpentrywsi' in raw_attrs:
attrs = raw_attrs['nscpentrywsi']
assert attrs
for attr in attrs:
if ensure_str(attr.lower()).startswith('telephonenumber'):
break
assert attr

log.info("############# %s " % name)
# now retrieve the CSN of the operation we are looking for
csn = None
found_ops = topology_m2.ms['master1'].ds_access_log.match(".*MOD dn=\"%s\".*" % name)
assert(len(found_ops) > 0)
found_op = topology_m2.ms['master1'].ds_access_log.parse_line(found_ops[-1])
log.info(found_op)

# Now look for the related CSN
found_csns = topology_m2.ms['master1'].ds_access_log.match(".*conn=%s op=%s RESULT.*" % (found_op['conn'], found_op['op']))
assert(len(found_csns) > 0)
found_csn = topology_m2.ms['master1'].ds_access_log.parse_line(found_csns[-1])
log.info(found_csn)
> return found_csn['csn']
E KeyError: 'csn'

/export/tests/tickets/ticket48266_test.py:147: KeyError
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket48266_test.py:125 dn: cn=new_account2,dc=example,dc=com INFO  tests.tickets.ticket48266_test:ticket48266_test.py:134 ############# cn=new_account2,dc=example,dc=com INFO  tests.tickets.ticket48266_test:ticket48266_test.py:140 {'action': 'MOD', 'timestamp': '[24/Oct/2020:22:22:36.681526506 -0400]', 'conn': '1', 'op': '11', 'rem': 'dn="cn=new_account2,dc=example,dc=com"', 'datetime': datetime.datetime(2020, 9, 24, 22, 0, 0, 681526, tzinfo=tzoffset(None, -14400))} INFO  tests.tickets.ticket48266_test:ticket48266_test.py:146 {'action': 'RESULT', 'timestamp': '[24/Oct/2020:22:22:36.743309017 -0400]', 'conn': '1', 'op': '11', 'rem': 'err=0 tag=103 nentries=0 wtime=0.000186244 optime=0.061792156 etime=0.061971441 csn=5f94e16c000000010000', 'datetime': datetime.datetime(2020, 9, 24, 22, 0, 0, 743309, tzinfo=tzoffset(None, -14400))}
Failed tickets/ticket48325_test.py::test_ticket48325 0.01
topology_m1h1c1 = <lib389.topologies.TopologyMain object at 0x7f65dec3d4c0>

def test_ticket48325(topology_m1h1c1):
"""
Test that the RUV element order is correctly maintained when promoting
a hub or consumer.
"""

#
# Promote consumer to master
#
C1 = topology_m1h1c1.cs["consumer1"]
M1 = topology_m1h1c1.ms["master1"]
H1 = topology_m1h1c1.hs["hub1"]
repl = ReplicationManager(DEFAULT_SUFFIX)
> repl._ensure_changelog(C1)

/export/tests/tickets/ticket48325_test.py:53:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/replica.py:1945: in _ensure_changelog
cl.create(properties={
/usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:971: in create
return self._create(rdn, properties, basedn, ensure=False)
/usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:946: in _create
self._instance.add_ext_s(e, serverctrls=self._server_controls, clientctrls=self._client_controls, escapehatch='i am sure')
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:176: in inner
return f(ent.dn, ent.toTupleList(), *args[2:])
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:425: in add_ext_s
resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3
resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4(
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4
ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call
reraise(exc_type, exc_value, exc_traceback)
/usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise
raise exc_value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65dec08550>
func = <built-in method result4 of LDAP object at 0x7f65dec30cc0>
args = (15, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None
exc_type = None, exc_value = None, exc_traceback = None

def _ldap_call(self,func,*args,**kwargs):
"""
Wrapper method mainly for serializing calls into OpenLDAP libs
and trace logs
"""
self._ldap_object_lock.acquire()
if __debug__:
if self._trace_level>=1:
self._trace_file.write('*** %s %s - %s\n%s\n' % (
repr(self),
self._uri,
'.'.join((self.__class__.__name__,func.__name__)),
pprint.pformat((args,kwargs))
))
if self._trace_level>=9:
traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file)
diagnostic_message_success = None
try:
try:
> result = func(*args,**kwargs)
E ldap.UNWILLING_TO_PERFORM: {'msgtype': 105, 'msgid': 15, 'result': 53, 'desc': 'Server is unwilling to perform', 'ctrls': [], 'info': 'Changelog configuration is part of the backend configuration'}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: UNWILLING_TO_PERFORM
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39101, 'ldap-secureport': 63801, 'server-id': 'hub1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39201, 'ldap-secureport': 63901, 'server-id': 'consumer1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:515 Creating replication topology. INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39101 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39101 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39101 is NOT working (expect f70eeb28-4555-4a49-9d3b-37d4708b0bd7 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39101 is working INFO  lib389.replica:replica.py:2228 SUCCESS: joined consumer from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39101 INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39101 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is was created INFO  lib389.replica:replica.py:2285 SUCCESS: joined consumer from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39101 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 14b78aea-01ec-47a5-94fa-50ec115cda8b / got description=f70eeb28-4555-4a49-9d3b-37d4708b0bd7) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working
Failed tickets/ticket48637_test.py::test_ticket48637 4.50
topology_st = <lib389.topologies.TopologyMain object at 0x7f65debb27f0>

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-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
CRITICAL tests.tickets.ticket48637_test:ticket48637_test.py:138 Entry was incorrectly returned
Failed tickets/ticket48759_test.py::test_ticket48759 0.61
topology_st = <lib389.topologies.TopologyMain object at 0x7f65dea81cd0>

def test_ticket48759(topology_st):
"""
The fix for ticket 48759 has to prevent plugin calls for tombstone purging

The test uses the memberof and retrocl plugins to verify this.
In tombstone purging without the fix the mmeberof plugin is called,
if the tombstone entry is a group,
it modifies the user entries for the group
and if retrocl is enabled this mod is written to the retrocl

The test sequence is:
- enable replication
- enable memberof and retro cl plugin
- add user entries
- add a group and add the users as members
- verify memberof is set to users
- delete the group
- verify memberof is removed from users
- add group again
- verify memberof is set to users
- get number of changes in retro cl for one user
- configure tombstone purging
- wait for purge interval to pass
- add a dummy entry to increase maxcsn
- wait for purge interval to pass two times
- get number of changes in retro cl for user again
- assert there was no additional change
"""

log.info('Testing Ticket 48759 - no plugin calls for tombstone purging')

#
# Setup Replication
#
log.info('Setting up replication...')
repl = ReplicationManager(DEFAULT_SUFFIX)
repl.create_first_master(topology_st.standalone)
#
# enable dynamic plugins, memberof and retro cl plugin
#
log.info('Enable plugins...')
try:
topology_st.standalone.config.set('nsslapd-dynamic-plugins', 'on')
except ldap.LDAPError as e:
ldap.error('Failed to enable dynamic plugins! ' + e.args[0]['desc'])
assert False

topology_st.standalone.plugins.enable(name=PLUGIN_MEMBER_OF)
> topology_st.standalone.plugins.enable(name=PLUGIN_RETRO_CHANGELOG)

/export/tests/tickets/ticket48759_test.py:125:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/plugins.py:2105: in enable
plugin.enable()
/usr/local/lib/python3.8/site-packages/lib389/plugins.py:58: in enable
self.set('nsslapd-pluginEnabled', 'on')
/usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:446: in set
return self._instance.modify_ext_s(self._dn, [(action, key, value)],
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:613: in modify_ext_s
resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3
resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4(
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4
ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call
reraise(exc_type, exc_value, exc_traceback)
/usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise
raise exc_value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65dea81880>
func = <built-in method result4 of LDAP object at 0x7f65dea7ef00>
args = (19, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None
exc_type = None, exc_value = None, exc_traceback = None

def _ldap_call(self,func,*args,**kwargs):
"""
Wrapper method mainly for serializing calls into OpenLDAP libs
and trace logs
"""
self._ldap_object_lock.acquire()
if __debug__:
if self._trace_level>=1:
self._trace_file.write('*** %s %s - %s\n%s\n' % (
repr(self),
self._uri,
'.'.join((self.__class__.__name__,func.__name__)),
pprint.pformat((args,kwargs))
))
if self._trace_level>=9:
traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file)
diagnostic_message_success = None
try:
try:
> result = func(*args,**kwargs)
E ldap.UNWILLING_TO_PERFORM: {'msgtype': 103, 'msgid': 19, 'result': 53, 'desc': 'Server is unwilling to perform', 'ctrls': [], 'info': 'Failed to start plugin "Retro Changelog Plugin". See errors log.'}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: UNWILLING_TO_PERFORM
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Failed tickets/ticket48784_test.py::test_ticket48784 33.46
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-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 5498003a-4fe3-4f5d-ac5d-b38498554747 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 65b6852d-05b8-4603-9987-a751869fa95b / got description=5498003a-4fe3-4f5d-ac5d-b38498554747) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48784_test:ticket48784_test.py:90 Ticket 48784 - Allow usage of OpenLDAP libraries that don't use NSS for crypto INFO  tests.tickets.ticket48784_test:ticket48784_test.py:50 ######################### Configure SSL/TLS agreements ###################### INFO  tests.tickets.ticket48784_test:ticket48784_test.py:51 ######################## master1 <-- startTLS -> master2 ##################### INFO  tests.tickets.ticket48784_test:ticket48784_test.py:53 ##### Update the agreement of master1 INFO  tests.tickets.ticket48784_test:ticket48784_test.py:58 ##### Update the agreement of master2 INFO  tests.tickets.ticket48784_test:ticket48784_test.py:68 ######################### Configure SSL/TLS agreements Done ######################
Failed tickets/ticket48798_test.py::test_ticket48798 10.79
topology_st = <lib389.topologies.TopologyMain object at 0x7f65e433bc70>

def test_ticket48798(topology_st):
"""
Test DH param sizes offered by DS.

"""
topology_st.standalone.enable_tls()

# Confirm that we have a connection, and that it has DH

# Open a socket to the port.
# Check the security settings.
> size = check_socket_dh_param_size(topology_st.standalone.host, topology_st.standalone.sslport)

/export/tests/tickets/ticket48798_test.py:46:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/export/tests/tickets/ticket48798_test.py:23: in check_socket_dh_param_size
output = check_output(cmd, shell=True)
/usr/lib64/python3.8/subprocess.py:411: in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

input = None, capture_output = False, timeout = None, check = True
popenargs = ('echo quit | openssl s_client -connect ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63601 -msg -cipher DH | grep -A 1 ServerKeyExchange',)
kwargs = {'shell': True, 'stdout': -1}
process = <subprocess.Popen object at 0x7f65ded34fd0>, stdout = b''
stderr = None, retcode = 1

def run(*popenargs,
input=None, capture_output=False, timeout=None, check=False, **kwargs):
"""Run command with arguments and return a CompletedProcess instance.

The returned instance will have attributes args, returncode, stdout and
stderr. By default, stdout and stderr are not captured, and those attributes
will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them.

If check is True and the exit code was non-zero, it raises a
CalledProcessError. The CalledProcessError object will have the return code
in the returncode attribute, and output & stderr attributes if those streams
were captured.

If timeout is given, and the process takes too long, a TimeoutExpired
exception will be raised.

There is an optional argument "input", allowing you to
pass bytes or a string to the subprocess's stdin. If you use this argument
you may not also use the Popen constructor's "stdin" argument, as
it will be used internally.

By default, all communication is in bytes, and therefore any "input" should
be bytes, and the stdout and stderr will be bytes. If in text mode, any
"input" should be a string, and stdout and stderr will be strings decoded
according to locale encoding, or by "encoding" if set. Text mode is
triggered by setting any of text, encoding, errors or universal_newlines.

The other arguments are the same as for the Popen constructor.
"""
if input is not None:
if kwargs.get('stdin') is not None:
raise ValueError('stdin and input arguments may not both be used.')
kwargs['stdin'] = PIPE

if capture_output:
if kwargs.get('stdout') is not None or kwargs.get('stderr') is not None:
raise ValueError('stdout and stderr arguments may not be used '
'with capture_output.')
kwargs['stdout'] = PIPE
kwargs['stderr'] = PIPE

with Popen(*popenargs, **kwargs) as process:
try:
stdout, stderr = process.communicate(input, timeout=timeout)
except TimeoutExpired as exc:
process.kill()
if _mswindows:
# Windows accumulates the output in a single blocking
# read() call run on child threads, with the timeout
# being done in a join() on those threads. communicate()
# _after_ kill() is required to collect that and add it
# to the exception.
exc.stdout, exc.stderr = process.communicate()
else:
# POSIX _communicate already populated the output so
# far into the TimeoutExpired exception.
process.wait()
raise
except: # Including KeyboardInterrupt, communicate handled that.
process.kill()
# We don't call process.wait() as .__exit__ does that for us.
raise
retcode = process.poll()
if check and retcode:
> raise CalledProcessError(retcode, process.args,
output=stdout, stderr=stderr)
E subprocess.CalledProcessError: Command 'echo quit | openssl s_client -connect ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63601 -msg -cipher DH | grep -A 1 ServerKeyExchange' returned non-zero exit status 1.

/usr/lib64/python3.8/subprocess.py:512: CalledProcessError
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
------------------------------Captured stderr call------------------------------
depth=1 C = AU, ST = Queensland, L = 389ds, O = testing, CN = ssca.389ds.example.com verify return:1 depth=0 C = AU, ST = Queensland, L = 389ds, O = testing, GN = 22209b97-16ed-4de9-b8bd-b19ccdb47f0d, CN = ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com verify error:num=7:certificate signature failure verify return:1 depth=0 C = AU, ST = Queensland, L = 389ds, O = testing, GN = 22209b97-16ed-4de9-b8bd-b19ccdb47f0d, CN = ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com verify return:1 DONE
Failed tickets/ticket48961_test.py::test_ticket48961_storagescheme 0.26
topology_st = <lib389.topologies.TopologyMain object at 0x7f65dea81a30>

def test_ticket48961_storagescheme(topology_st):
"""
Test deleting of the storage scheme.
"""

default = topology_st.standalone.config.get_attr_val('passwordStorageScheme')
# Change it
topology_st.standalone.config.set('passwordStorageScheme', 'CLEAR')
# Now delete it
> topology_st.standalone.config.remove('passwordStorageScheme', None)

/export/tests/tickets/ticket48961_test.py:28:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:316: in remove
self.set(key, value, action=ldap.MOD_DELETE)
/usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:446: in set
return self._instance.modify_ext_s(self._dn, [(action, key, value)],
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:613: in modify_ext_s
resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3
resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4(
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4
ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call
reraise(exc_type, exc_value, exc_traceback)
/usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise
raise exc_value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65dea816d0>
func = <built-in method result4 of LDAP object at 0x7f65dea6fa20>
args = (5, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None
exc_type = None, exc_value = None, exc_traceback = None

def _ldap_call(self,func,*args,**kwargs):
"""
Wrapper method mainly for serializing calls into OpenLDAP libs
and trace logs
"""
self._ldap_object_lock.acquire()
if __debug__:
if self._trace_level>=1:
self._trace_file.write('*** %s %s - %s\n%s\n' % (
repr(self),
self._uri,
'.'.join((self.__class__.__name__,func.__name__)),
pprint.pformat((args,kwargs))
))
if self._trace_level>=9:
traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file)
diagnostic_message_success = None
try:
try:
> result = func(*args,**kwargs)
E ldap.OPERATIONS_ERROR: {'msgtype': 103, 'msgid': 5, 'result': 1, 'desc': 'Operations error', 'ctrls': [], 'info': 'passwordStorageScheme: deleting the value is not allowed.'}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: OPERATIONS_ERROR
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Failed tickets/ticket48961_test.py::test_ticket48961_deleteall 0.00
topology_st = <lib389.topologies.TopologyMain object at 0x7f65dea81a30>

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 0x7f65dea6f610>, name = 'raw_entry'

def __getattr__(self, name):
"""This enables a bit of magic to allow us to wrap any function ending with
_json to it's form without json, then transformed. It means your function
*must* return it's values as a dict of:

{ attr : [val, val, ...], attr : [], ... }
to be supported.
"""

if (name.endswith('_json')):
int_name = name.replace('_json', '')
pfunc = partial(self._jsonify, getattr(self, int_name))
return pfunc
else:
> raise AttributeError("'%s' object has no attribute '%s'" % (self.__class__.__name__, name))
E AttributeError: 'Config' object has no attribute 'raw_entry'

/usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:199: AttributeError
Failed tickets/ticket48973_test.py::test_ticket48973_homeDirectory_indexing 9.74
topology = <tests.tickets.ticket48973_test.TopologyStandalone object at 0x7f65deccc4f0>

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 0x7f65deccc4f0>
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 '[24/Oct/2020:22:37:51.448814029 -0400] conn=1 op=2 RESULT err=0 tag=101 nentries=1 wtime=0.000424946 optime=0.004957611 etime=0.005377669\n'

/export/tests/tickets/ticket48973_test.py:188: AssertionError
-------------------------------Captured log call--------------------------------
INFO  lib389:tasks.py:798 Index task index_attrs_10242020_223745 completed successfully INFO  tests.tickets.ticket48973_test:ticket48973_test.py:244 Check indexing succeeded with no specified matching rule INFO  tests.tickets.ticket48973_test:ticket48973_test.py:173 Search (homeDirectory=/home/xyz_1) INFO  tests.tickets.ticket48973_test:ticket48973_test.py:184 result=[24/Oct/2020:22:37:47.299071793 -0400] conn=1 op=10 RESULT err=0 tag=101 nentries=1 wtime=0.000220760 optime=0.000325662 etime=0.000542537 INFO  tests.tickets.ticket48973_test:ticket48973_test.py:173 Search (homeDirectory:caseExactIA5Match:=/home/xyz_1) INFO  tests.tickets.ticket48973_test:ticket48973_test.py:184 result=[24/Oct/2020:22:37:51.448814029 -0400] conn=1 op=2 RESULT err=0 tag=101 nentries=1 wtime=0.000424946 optime=0.004957611 etime=0.005377669
Failed tickets/ticket49073_test.py::test_ticket49073 10.40
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f65dec97c40>

def test_ticket49073(topology_m2):
"""Write your replication test here.

To access each DirSrv instance use: topology_m2.ms["master1"], topology_m2.ms["master2"],
..., topology_m2.hub1, ..., topology_m2.consumer1,...

Also, if you need any testcase initialization,
please, write additional fixture for that(include finalizer).
"""
topology_m2.ms["master1"].plugins.enable(name=PLUGIN_MEMBER_OF)
topology_m2.ms["master1"].restart(timeout=10)
topology_m2.ms["master2"].plugins.enable(name=PLUGIN_MEMBER_OF)
topology_m2.ms["master2"].restart(timeout=10)

# Configure fractional to prevent total init to send memberof
ents = topology_m2.ms["master1"].agreement.list(suffix=SUFFIX)
assert len(ents) == 1
log.info('update %s to add nsDS5ReplicatedAttributeListTotal' % ents[0].dn)
> topology_m2.ms["master1"].modify_s(ents[0].dn,
[(ldap.MOD_REPLACE,
'nsDS5ReplicatedAttributeListTotal',
'(objectclass=*) $ EXCLUDE '),
(ldap.MOD_REPLACE,
'nsDS5ReplicatedAttributeList',
'(objectclass=*) $ EXCLUDE memberOf')])

/export/tests/tickets/ticket49073_test.py:97:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:640: in modify_s
return self.modify_ext_s(dn,modlist,None,None)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:612: in modify_ext_s
msgid = self.modify_ext(dn,modlist,serverctrls,clientctrls)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:609: in modify_ext
return self._ldap_call(self._l.modify_ext,dn,modlist,RequestControlTuples(serverctrls),RequestControlTuples(clientctrls))
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65dec97f70>
func = <built-in method modify_ext of LDAP object at 0x7f65decaa4e0>
args = ('cn=002,cn=replica,cn=dc\\3Dexample\\2Cdc\\3Dcom,cn=mapping tree,cn=config', [(2, 'nsDS5ReplicatedAttributeListTotal', '(objectclass=*) $ EXCLUDE '), (2, 'nsDS5ReplicatedAttributeList', '(objectclass=*) $ EXCLUDE memberOf')], None, None)
kwargs = {}, diagnostic_message_success = None

def _ldap_call(self,func,*args,**kwargs):
"""
Wrapper method mainly for serializing calls into OpenLDAP libs
and trace logs
"""
self._ldap_object_lock.acquire()
if __debug__:
if self._trace_level>=1:
self._trace_file.write('*** %s %s - %s\n%s\n' % (
repr(self),
self._uri,
'.'.join((self.__class__.__name__,func.__name__)),
pprint.pformat((args,kwargs))
))
if self._trace_level>=9:
traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file)
diagnostic_message_success = None
try:
try:
> result = func(*args,**kwargs)
E TypeError: ('Tuple_to_LDAPMod(): expected a byte string in the list', '(')

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: TypeError
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ad547093-deff-4d50-b1a1-df35a32ecba3 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 01297cdd-eb31-40b1-8f0c-ec12d5e2a3e9 / got description=ad547093-deff-4d50-b1a1-df35a32ecba3) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
-------------------------------Captured log call--------------------------------
INFO  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 0x7f65de93ac40>

def test_ticket49192(topo):
"""Trigger deadlock when removing suffix
"""

#
# Create a second suffix/backend
#
log.info('Creating second backend...')
> topo.standalone.backends.create(None, properties={
BACKEND_NAME: "Second_Backend",
'suffix': "o=hang.com",
})

/export/tests/tickets/ticket49192_test.py:35:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:1169: in create
return co.create(rdn, properties, self._basedn)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.backend.Backend object at 0x7f65e41bde80>, dn = None
properties = {'name': 'Second_Backend', 'suffix': 'o=hang.com'}
basedn = 'cn=ldbm database,cn=plugins,cn=config'

def create(self, dn=None, properties=None, basedn=DN_LDBM):
"""Add a new backend entry, create mapping tree,
and, if requested, sample entries

:param dn: DN of the new entry
:type dn: str
:param properties: Attributes and parameters for the new entry
:type properties: dict
:param basedn: Base DN of the new entry
:type basedn: str

:returns: DSLdapObject of the created entry
"""

sample_entries = False
parent_suffix = False

# normalize suffix (remove spaces between comps)
if dn is not None:
dn_comps = ldap.dn.explode_dn(dn.lower())
dn = ",".join(dn_comps)

if properties is not None:
> suffix_dn = properties['nsslapd-suffix'].lower()
E KeyError: 'nsslapd-suffix'

/usr/local/lib/python3.8/site-packages/lib389/backend.py:590: KeyError
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket49192_test:ticket49192_test.py:34 Creating second backend...
Failed tickets/ticket49287_test.py::test_ticket49287 14.01
self = <lib389.mappingTree.MappingTreeLegacy object at 0x7f65e4162af0>
suffix = 'dc=test,dc=com', bename = 'test', parent = None

def create(self, suffix=None, bename=None, parent=None):
'''
Create a mapping tree entry (under "cn=mapping tree,cn=config"),
for the 'suffix' and that is stored in 'bename' backend.
'bename' backend must exist before creating the mapping tree entry.

If a 'parent' is provided that means that we are creating a
sub-suffix mapping tree.

@param suffix - suffix mapped by this mapping tree entry. It will
be the common name ('cn') of the entry
@param benamebase - backend common name (e.g. 'userRoot')
@param parent - if provided is a parent suffix of 'suffix'

@return DN of the mapping tree entry

@raise ldap.NO_SUCH_OBJECT - if the backend entry or parent mapping
tree does not exist
ValueError - if missing a parameter,

'''
# Check suffix is provided
if not suffix:
raise ValueError("suffix is mandatory")
else:
nsuffix = normalizeDN(suffix)

# Check backend name is provided
if not bename:
raise ValueError("backend name is mandatory")

# Check that if the parent suffix is provided then
# it exists a mapping tree for it
if parent:
nparent = normalizeDN(parent)
filt = suffixfilt(parent)
try:
entry = self.conn.getEntry(DN_MAPPING_TREE, ldap.SCOPE_SUBTREE,
filt)
pass
except NoSuchEntryError:
raise ValueError("parent suffix has no mapping tree")
else:
nparent = ""

# Check if suffix exists, return
filt = suffixfilt(suffix)
try:
entry = self.conn.getEntry(DN_MAPPING_TREE, ldap.SCOPE_SUBTREE,
filt)
return entry
except ldap.NO_SUCH_OBJECT:
entry = None

#
# Now start the real work
#

# fix me when we can actually used escaped DNs
dn = ','.join(('cn="%s"' % nsuffix, DN_MAPPING_TREE))
entry = Entry(dn)
entry.update({
'objectclass': ['top', 'extensibleObject', MT_OBJECTCLASS_VALUE],
'nsslapd-state': 'backend',
# the value in the dn has to be DN escaped
# internal code will add the quoted value - unquoted value is
# useful for searching.
MT_PROPNAME_TO_ATTRNAME[MT_SUFFIX]: nsuffix,
MT_PROPNAME_TO_ATTRNAME[MT_BACKEND]: bename
})

# possibly add the parent
if parent:
entry.setValues(MT_PROPNAME_TO_ATTRNAME[MT_PARENT_SUFFIX], nparent)

try:
self.log.debug("Creating entry: %s", entry.dn)
self.log.info("Entry %r", entry)
> self.conn.add_s(entry)

/usr/local/lib/python3.8/site-packages/lib389/mappingTree.py:155:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = (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

,)
kwargs = {}
c_stack = [FrameInfo(frame=<frame at 0x7f65e5216240, file '/usr/local/lib/python3.8/site-packages/lib389/__init__.py', line 176,...neno=187, function='_multicall', code_context=[' res = hook_impl.function(*args)\n'], index=0), ...]
frame = FrameInfo(frame=<frame at 0x55d6044d2cc0, file '/usr/local/lib/python3.8/site-packages/lib389/mappingTree.py', line 15.../lib389/mappingTree.py', lineno=155, function='create', code_context=[' self.conn.add_s(entry)\n'], index=0)
ent = 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



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:])

/usr/local/lib/python3.8/site-packages/lib389/__init__.py:176:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65dec88a90>
dn = 'cn="dc=test,dc=com",cn=mapping tree,cn=config'
modlist = [('objectclass', [b'top', b'extensibleObject', b'nsMappingTree']), ('nsslapd-state', [b'backend']), ('cn', [b'dc=test,dc=com']), ('nsslapd-backend', [b'test'])]

def add_s(self,dn,modlist):
> return self.add_ext_s(dn,modlist,None,None)

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:439:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = ('cn="dc=test,dc=com",cn=mapping tree,cn=config', [('objectclass', [b'top', b'extensibleObject', b'nsMappingTree']), ('nsslapd-state', [b'backend']), ('cn', [b'dc=test,dc=com']), ('nsslapd-backend', [b'test'])], None, None)
kwargs = {}, ent = 'cn="dc=test,dc=com",cn=mapping tree,cn=config'

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)

/usr/local/lib/python3.8/site-packages/lib389/__init__.py:178:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65dec88a90>
dn = 'cn="dc=test,dc=com",cn=mapping tree,cn=config'
modlist = [('objectclass', [b'top', b'extensibleObject', b'nsMappingTree']), ('nsslapd-state', [b'backend']), ('cn', [b'dc=test,dc=com']), ('nsslapd-backend', [b'test'])]
serverctrls = None, clientctrls = None

def add_ext_s(self,dn,modlist,serverctrls=None,clientctrls=None):
msgid = self.add_ext(dn,modlist,serverctrls,clientctrls)
> resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout)

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:425:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = (4,), 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.8/site-packages/lib389/__init__.py:180:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65dec88a90>, msgid = 4, 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.8/site-packages/ldap/ldapobject.py:764:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = (4, 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.8/site-packages/lib389/__init__.py:180:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65dec88a90>, msgid = 4, 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.8/site-packages/ldap/ldapobject.py:774:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

args = (<built-in method result4 of LDAP object at 0x7f65de9aa390>, 4, 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.8/site-packages/lib389/__init__.py:180:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65dec88a90>
func = <built-in method result4 of LDAP object at 0x7f65de9aa390>
args = (4, 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.8/site-packages/ldap/ldapobject.py:340:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

exc_type = <class 'ldap.UNWILLING_TO_PERFORM'>
exc_value = UNWILLING_TO_PERFORM({'msgtype': 105, 'msgid': 4, 'result': 53, 'desc': 'Server is unwilling to perform', 'ctrls': []})
exc_traceback = <traceback object at 0x7f65decdc980>

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.8/site-packages/ldap/compat.py:46:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65dec88a90>
func = <built-in method result4 of LDAP object at 0x7f65de9aa390>
args = (4, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None
exc_type = None, exc_value = None, exc_traceback = None

def _ldap_call(self,func,*args,**kwargs):
"""
Wrapper method mainly for serializing calls into OpenLDAP libs
and trace logs
"""
self._ldap_object_lock.acquire()
if __debug__:
if self._trace_level>=1:
self._trace_file.write('*** %s %s - %s\n%s\n' % (
repr(self),
self._uri,
'.'.join((self.__class__.__name__,func.__name__)),
pprint.pformat((args,kwargs))
))
if self._trace_level>=9:
traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file)
diagnostic_message_success = None
try:
try:
> result = func(*args,**kwargs)
E ldap.UNWILLING_TO_PERFORM: {'msgtype': 105, 'msgid': 4, 'result': 53, 'desc': 'Server is unwilling to perform', 'ctrls': []}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: UNWILLING_TO_PERFORM

During handling of the above exception, another exception occurred:

topology_m2 = <lib389.topologies.TopologyMain object at 0x7f65dec88b80>

def test_ticket49287(topology_m2):
"""
test case for memberof and conflict entries

"""

# return
M1 = topology_m2.ms["master1"]
M2 = topology_m2.ms["master2"]

config_memberof(M1)
config_memberof(M2)

_enable_spec_logging(M1)
_enable_spec_logging(M2)

_disable_nunc_stans(M1)
_disable_nunc_stans(M2)

M1.restart(timeout=10)
M2.restart(timeout=10)

testbase = 'dc=test,dc=com'
bename = 'test'
> create_backend(M1, M2, testbase, bename)

/export/tests/tickets/ticket49287_test.py:282:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/export/tests/tickets/ticket49287_test.py:204: in create_backend
s1.mappingtree.create(beSuffix, beName)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.mappingTree.MappingTreeLegacy object at 0x7f65e4162af0>
suffix = 'dc=test,dc=com', bename = 'test', parent = None

def create(self, suffix=None, bename=None, parent=None):
'''
Create a mapping tree entry (under "cn=mapping tree,cn=config"),
for the 'suffix' and that is stored in 'bename' backend.
'bename' backend must exist before creating the mapping tree entry.

If a 'parent' is provided that means that we are creating a
sub-suffix mapping tree.

@param suffix - suffix mapped by this mapping tree entry. It will
be the common name ('cn') of the entry
@param benamebase - backend common name (e.g. 'userRoot')
@param parent - if provided is a parent suffix of 'suffix'

@return DN of the mapping tree entry

@raise ldap.NO_SUCH_OBJECT - if the backend entry or parent mapping
tree does not exist
ValueError - if missing a parameter,

'''
# Check suffix is provided
if not suffix:
raise ValueError("suffix is mandatory")
else:
nsuffix = normalizeDN(suffix)

# Check backend name is provided
if not bename:
raise ValueError("backend name is mandatory")

# Check that if the parent suffix is provided then
# it exists a mapping tree for it
if parent:
nparent = normalizeDN(parent)
filt = suffixfilt(parent)
try:
entry = self.conn.getEntry(DN_MAPPING_TREE, ldap.SCOPE_SUBTREE,
filt)
pass
except NoSuchEntryError:
raise ValueError("parent suffix has no mapping tree")
else:
nparent = ""

# Check if suffix exists, return
filt = suffixfilt(suffix)
try:
entry = self.conn.getEntry(DN_MAPPING_TREE, ldap.SCOPE_SUBTREE,
filt)
return entry
except ldap.NO_SUCH_OBJECT:
entry = None

#
# Now start the real work
#

# fix me when we can actually used escaped DNs
dn = ','.join(('cn="%s"' % nsuffix, DN_MAPPING_TREE))
entry = Entry(dn)
entry.update({
'objectclass': ['top', 'extensibleObject', MT_OBJECTCLASS_VALUE],
'nsslapd-state': 'backend',
# the value in the dn has to be DN escaped
# internal code will add the quoted value - unquoted value is
# useful for searching.
MT_PROPNAME_TO_ATTRNAME[MT_SUFFIX]: nsuffix,
MT_PROPNAME_TO_ATTRNAME[MT_BACKEND]: bename
})

# possibly add the parent
if parent:
entry.setValues(MT_PROPNAME_TO_ATTRNAME[MT_PARENT_SUFFIX], nparent)

try:
self.log.debug("Creating entry: %s", entry.dn)
self.log.info("Entry %r", entry)
self.conn.add_s(entry)
except ldap.LDAPError as e:
> raise ldap.LDAPError("Error adding suffix entry " + dn, e)
E ldap.LDAPError: ('Error adding suffix entry cn="dc=test,dc=com",cn=mapping tree,cn=config', UNWILLING_TO_PERFORM({'msgtype': 105, 'msgid': 4, 'result': 53, 'desc': 'Server is unwilling to perform', 'ctrls': []}))

/usr/local/lib/python3.8/site-packages/lib389/mappingTree.py:157: LDAPError
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 34b2ecda-08fd-442d-b9b0-b0d4dc27f4d8 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect dd4d1537-f102-49e3-bca0-4ecbd71620bd / got description=34b2ecda-08fd-442d-b9b0-b0d4dc27f4d8) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
-------------------------------Captured log call--------------------------------
INFO  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 INFO  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 INFO  lib389:mappingTree.py:154 Entry dn: cn="dc=test,dc=com",cn=mapping tree,cn=config cn: dc=test,dc=com nsslapd-backend: test nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree
Failed tickets/ticket49303_test.py::test_ticket49303 16.14
topo = <lib389.topologies.TopologyMain object at 0x7f65deeea6d0>

def test_ticket49303(topo):
"""
Test the nsTLSAllowClientRenegotiation setting.
"""
sslport = SECUREPORT_STANDALONE1

log.info("Ticket 49303 - Allow disabling of SSL renegotiation")

# No value set, defaults to reneg allowed
enable_ssl(topo.standalone, sslport)
> assert try_reneg(HOST_STANDALONE1, sslport) is True
E AssertionError: assert False is True
E + where False = try_reneg('LOCALHOST', 63601)

/export/tests/tickets/ticket49303_test.py:88: AssertionError
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket49303_test:ticket49303_test.py:84 Ticket 49303 - Allow disabling of SSL renegotiation
Failed tickets/ticket49412_test.py::test_ticket49412 0.00
topo = <lib389.topologies.TopologyMain object at 0x7f65deeee220>

def test_ticket49412(topo):
"""Specify a test case purpose or name here

:id: 4c7681ff-0511-4256-9589-bdcad84c13e6
:setup: Fill in set up configuration here
:steps:
1. Fill in test case steps here
2. And indent them like this (RST format requirement)
:expectedresults:
1. Fill in the result that is expected
2. For each test step
"""

M1 = topo.ms["master1"]

# wrong call with invalid value (should be str(60)
# that create replace with NULL value
# it should fail with UNWILLING_TO_PERFORM
try:
> M1.modify_s(CHANGELOG, [(ldap.MOD_REPLACE, MAXAGE_ATTR, 60),
(ldap.MOD_REPLACE, TRIMINTERVAL, 10)])

/export/tests/tickets/ticket49412_test.py:44:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:640: in modify_s
return self.modify_ext_s(dn,modlist,None,None)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:613: in modify_ext_s
resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3
resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4(
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4
ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call
reraise(exc_type, exc_value, exc_traceback)
/usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise
raise exc_value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65deef3160>
func = <built-in method result4 of LDAP object at 0x7f65deeece70>
args = (39, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None
exc_type = None, exc_value = None, exc_traceback = None

def _ldap_call(self,func,*args,**kwargs):
"""
Wrapper method mainly for serializing calls into OpenLDAP libs
and trace logs
"""
self._ldap_object_lock.acquire()
if __debug__:
if self._trace_level>=1:
self._trace_file.write('*** %s %s - %s\n%s\n' % (
repr(self),
self._uri,
'.'.join((self.__class__.__name__,func.__name__)),
pprint.pformat((args,kwargs))
))
if self._trace_level>=9:
traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file)
diagnostic_message_success = None
try:
try:
> result = func(*args,**kwargs)
E ldap.NO_SUCH_OBJECT: {'msgtype': 103, 'msgid': 39, 'result': 32, 'desc': 'No such object', 'ctrls': []}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: NO_SUCH_OBJECT
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39201, 'ldap-secureport': 63901, 'server-id': 'consumer1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:175 Joining consumer consumer1 from master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 583bdc60-495b-4406-9068-3ac4a1f33f19 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working INFO  lib389.replica:replica.py:2285 SUCCESS: joined consumer from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 INFO  lib389.topologies:topologies.py:180 Ensuring consumer consumer1 from master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 already exists
Failed tickets/ticket49463_test.py::test_ticket_49463 176.69
topo = <lib389.topologies.TopologyMain object at 0x7f65de8df4c0>

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 0x7f65e409ee30>('4:no:1:dc=example,dc=com')
E + where <built-in method match of re.Pattern object at 0x7f65e409ee30> = 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 0x7f65debf9df0>>('nsds5replicacleanruv')
E + where <bound method DSLdapObject.get_attr_val_utf8 of <lib389.replica.Replica object at 0x7f65debf9df0>> = <lib389.replica.Replica object at 0x7f65debf9df0>.get_attr_val_utf8

/export/tests/tickets/ticket49463_test.py:188: AssertionError
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39003, 'ldap-secureport': 63703, 'server-id': 'master3', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39004, 'ldap-secureport': 63704, 'server-id': 'master4', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 2ab6d441-3fce-477c-a4d5-553a47223bd5 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 29fa9900-f4f5-41ff-9776-c5a05c924545 / got description=2ab6d441-3fce-477c-a4d5-553a47223bd5) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:162 Joining master master3 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 62c36abb-1b58-41d7-8634-5a7725a09030 / got description=29fa9900-f4f5-41ff-9776-c5a05c924545) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 114ad22d-9db9-4ada-9644-fcaf36666cb2 / got description=62c36abb-1b58-41d7-8634-5a7725a09030) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 INFO  lib389.topologies:topologies.py:162 Joining master master4 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 04a35d3b-01de-4666-8ef7-5169fe6d9ca5 / got description=114ad22d-9db9-4ada-9644-fcaf36666cb2) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect fa7adc3f-7421-4d44-8f2a-d41f52d79979 / got description=04a35d3b-01de-4666-8ef7-5169fe6d9ca5) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master3 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master4 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master3 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master4 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master2 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master4 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master4 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master4 to master2 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master4 to master3 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 already exists INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 already exists INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 already exists INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 already exists INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 already exists INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 already exists INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect a03eda86-8d02-4397-a466-56e2f0b24e4b / got description=fa7adc3f-7421-4d44-8f2a-d41f52d79979) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 5cff984c-c365-42a5-9ab8-9c1820195c62 / got description=a03eda86-8d02-4397-a466-56e2f0b24e4b) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect d0e54b69-cb90-40e3-b06d-c55dd8a7f333 / got description=5cff984c-c365-42a5-9ab8-9c1820195c62) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect d0e54b69-cb90-40e3-b06d-c55dd8a7f333 / got description=5cff984c-c365-42a5-9ab8-9c1820195c62) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect aebe81a8-7f6b-4da0-bdca-48d9fe2336b7 / got description=d0e54b69-cb90-40e3-b06d-c55dd8a7f333) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect aebe81a8-7f6b-4da0-bdca-48d9fe2336b7 / got description=d0e54b69-cb90-40e3-b06d-c55dd8a7f333) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 6bb5d413-164f-4841-8420-f2d59b20b6f3 / got description=aebe81a8-7f6b-4da0-bdca-48d9fe2336b7) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 757a2c39-370d-40d6-a1b5-a65bd4a05c0a / got description=6bb5d413-164f-4841-8420-f2d59b20b6f3) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect d2b6d2bb-0c87-4431-a200-650ad2c5fda9 / got description=757a2c39-370d-40d6-a1b5-a65bd4a05c0a) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 216da540-657d-47ef-b77d-444696c668c0 / got description=d2b6d2bb-0c87-4431-a200-650ad2c5fda9) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 1cd98f2d-0620-4165-96f1-b957301f035e / got description=216da540-657d-47ef-b77d-444696c668c0) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 97713117-818d-4d71-b09f-4cfa5e6a0445 / got description=216da540-657d-47ef-b77d-444696c668c0) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 55d14d7a-7ad4-4eac-ae04-f3a07e108fdf / got description=97713117-818d-4d71-b09f-4cfa5e6a0445) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 55d14d7a-7ad4-4eac-ae04-f3a07e108fdf / got description=97713117-818d-4d71-b09f-4cfa5e6a0445) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 40c71cd4-ffef-4742-b507-8cdc8ba373ab / got description=55d14d7a-7ad4-4eac-ae04-f3a07e108fdf) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389:agreement.py:1095 Agreement (cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config) was successfully removed INFO  lib389:agreement.py:1095 Agreement (cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config) was successfully removed INFO  lib389:agreement.py:1095 Agreement (cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config) was successfully removed INFO  lib389:tasks.py:1400 cleanAllRUV task (task-10242020_225258) completed successfully INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 22df0272-a89d-4f55-a5cb-204bed0b39bd / got description=40c71cd4-ffef-4742-b507-8cdc8ba373ab) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 64c7b3d4-3894-4d5d-8cdf-df8e836dbbc3 / got description=22df0272-a89d-4f55-a5cb-204bed0b39bd) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 87b5efd2-92ce-4e42-9562-b052d4fa453f / got description=64c7b3d4-3894-4d5d-8cdf-df8e836dbbc3) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 87b5efd2-92ce-4e42-9562-b052d4fa453f / got description=64c7b3d4-3894-4d5d-8cdf-df8e836dbbc3) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 597cbf23-cdb2-45d4-8417-27a46e6fee61 / got description=87b5efd2-92ce-4e42-9562-b052d4fa453f) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 2993eb79-a497-4d2c-859c-1f6ad8a999f3 / got description=597cbf23-cdb2-45d4-8417-27a46e6fee61) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 95bb5d38-8d3e-48a3-b846-5e3107dc26c0 / got description=2993eb79-a497-4d2c-859c-1f6ad8a999f3) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389:agreement.py:1095 Agreement (cn=004,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config) was successfully removed INFO  lib389:agreement.py:1095 Agreement (cn=004,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config) was successfully removed INFO  lib389:tasks.py:1400 cleanAllRUV task (task-10242020_225345) completed successfully INFO  lib389.utils:ticket49463_test.py:186 M1: nsds5ReplicaCleanRUV=4:no:1:dc=example,dc=com
Failed tickets/ticket50232_test.py::test_ticket50232_normal 0.59
topology_st = <lib389.topologies.TopologyMain object at 0x7f65de6efe80>

def test_ticket50232_normal(topology_st):
"""
The fix for ticket 50232


The test sequence is:
- create suffix
- add suffix entry and some child entries
- "normally" done after populating suffix: enable replication
- get RUV and database generation
- export -r
- import
- get RUV and database generation
- assert database generation has not changed
"""

log.info('Testing Ticket 50232 - export creates not imprtable ldif file, normal creation order')

topology_st.standalone.backend.create(NORMAL_SUFFIX, {BACKEND_NAME: NORMAL_BACKEND_NAME})
topology_st.standalone.mappingtree.create(NORMAL_SUFFIX, bename=NORMAL_BACKEND_NAME, parent=None)

_populate_suffix(topology_st.standalone, NORMAL_BACKEND_NAME)

repl = ReplicationManager(DEFAULT_SUFFIX)
> repl._ensure_changelog(topology_st.standalone)

/export/tests/tickets/ticket50232_test.py:113:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/replica.py:1945: in _ensure_changelog
cl.create(properties={
/usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:971: in create
return self._create(rdn, properties, basedn, ensure=False)
/usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:946: in _create
self._instance.add_ext_s(e, serverctrls=self._server_controls, clientctrls=self._client_controls, escapehatch='i am sure')
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:176: in inner
return f(ent.dn, ent.toTupleList(), *args[2:])
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:425: in add_ext_s
resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3
resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4(
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4
ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call
reraise(exc_type, exc_value, exc_traceback)
/usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise
raise exc_value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65de6f4400>
func = <built-in method result4 of LDAP object at 0x7f65de6d2900>
args = (13, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None
exc_type = None, exc_value = None, exc_traceback = None

def _ldap_call(self,func,*args,**kwargs):
"""
Wrapper method mainly for serializing calls into OpenLDAP libs
and trace logs
"""
self._ldap_object_lock.acquire()
if __debug__:
if self._trace_level>=1:
self._trace_file.write('*** %s %s - %s\n%s\n' % (
repr(self),
self._uri,
'.'.join((self.__class__.__name__,func.__name__)),
pprint.pformat((args,kwargs))
))
if self._trace_level>=9:
traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file)
diagnostic_message_success = None
try:
try:
> result = func(*args,**kwargs)
E ldap.UNWILLING_TO_PERFORM: {'msgtype': 105, 'msgid': 13, 'result': 53, 'desc': 'Server is unwilling to perform', 'ctrls': [], 'info': 'Changelog configuration is part of the backend configuration'}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: UNWILLING_TO_PERFORM
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  lib389:backend.py:80 List backend with suffix=o=normal INFO  lib389:backend.py:290 Creating a local backend INFO  lib389:backend.py:76 List backend cn=normal,cn=ldbm database,cn=plugins,cn=config INFO  lib389:__init__.py:1772 Found entry dn: cn=normal,cn=ldbm database,cn=plugins,cn=config cn: normal nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-standalone1/db/normal nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: o=normal objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance INFO  lib389:mappingTree.py:154 Entry dn: cn="o=normal",cn=mapping tree,cn=config cn: o=normal nsslapd-backend: normal nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree INFO  lib389:__init__.py:1772 Found entry dn: cn=o\3Dnormal,cn=mapping tree,cn=config cn: o=normal nsslapd-backend: normal nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree
Failed tickets/ticket50232_test.py::test_ticket50232_reverse 0.08
topology_st = <lib389.topologies.TopologyMain object at 0x7f65de6efe80>

def test_ticket50232_reverse(topology_st):
"""
The fix for ticket 50232


The test sequence is:
- create suffix
- enable replication before suffix enztry is added
- add suffix entry and some child entries
- get RUV and database generation
- export -r
- import
- get RUV and database generation
- assert database generation has not changed
"""

log.info('Testing Ticket 50232 - export creates not imprtable ldif file, normal creation order')

#
# Setup Replication
#
log.info('Setting up replication...')
repl = ReplicationManager(DEFAULT_SUFFIX)
# repl.create_first_master(topology_st.standalone)
#
# enable dynamic plugins, memberof and retro cl plugin
#
topology_st.standalone.backend.create(REVERSE_SUFFIX, {BACKEND_NAME: REVERSE_BACKEND_NAME})
topology_st.standalone.mappingtree.create(REVERSE_SUFFIX, bename=REVERSE_BACKEND_NAME, parent=None)

> _enable_replica(topology_st.standalone, REVERSE_SUFFIX)

/export/tests/tickets/ticket50232_test.py:155:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/export/tests/tickets/ticket50232_test.py:35: in _enable_replica
repl._ensure_changelog(instance)
/usr/local/lib/python3.8/site-packages/lib389/replica.py:1945: in _ensure_changelog
cl.create(properties={
/usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:971: in create
return self._create(rdn, properties, basedn, ensure=False)
/usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:946: in _create
self._instance.add_ext_s(e, serverctrls=self._server_controls, clientctrls=self._client_controls, escapehatch='i am sure')
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:176: in inner
return f(ent.dn, ent.toTupleList(), *args[2:])
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:425: in add_ext_s
resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3
resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4(
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4
ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call
reraise(exc_type, exc_value, exc_traceback)
/usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise
raise exc_value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65de6f4400>
func = <built-in method result4 of LDAP object at 0x7f65de6d2900>
args = (22, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None
exc_type = None, exc_value = None, exc_traceback = None

def _ldap_call(self,func,*args,**kwargs):
"""
Wrapper method mainly for serializing calls into OpenLDAP libs
and trace logs
"""
self._ldap_object_lock.acquire()
if __debug__:
if self._trace_level>=1:
self._trace_file.write('*** %s %s - %s\n%s\n' % (
repr(self),
self._uri,
'.'.join((self.__class__.__name__,func.__name__)),
pprint.pformat((args,kwargs))
))
if self._trace_level>=9:
traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file)
diagnostic_message_success = None
try:
try:
> result = func(*args,**kwargs)
E ldap.UNWILLING_TO_PERFORM: {'msgtype': 105, 'msgid': 22, 'result': 53, 'desc': 'Server is unwilling to perform', 'ctrls': [], 'info': 'Changelog configuration is part of the backend configuration'}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: UNWILLING_TO_PERFORM
-------------------------------Captured log call--------------------------------
INFO  lib389:backend.py:80 List backend with suffix=o=reverse INFO  lib389:backend.py:290 Creating a local backend INFO  lib389:backend.py:76 List backend cn=reverse,cn=ldbm database,cn=plugins,cn=config INFO  lib389:__init__.py:1772 Found entry dn: cn=reverse,cn=ldbm database,cn=plugins,cn=config cn: reverse nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-standalone1/db/reverse nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: o=reverse objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance INFO  lib389:mappingTree.py:154 Entry dn: cn="o=reverse",cn=mapping tree,cn=config cn: o=reverse nsslapd-backend: reverse nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree INFO  lib389:__init__.py:1772 Found entry dn: cn=o\3Dreverse,cn=mapping tree,cn=config cn: o=reverse nsslapd-backend: reverse nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree
XFailed suites/acl/syntax_test.py::test_aci_invalid_syntax_fail[test_targattrfilters_18] 0.01
topo = <lib389.topologies.TopologyMain object at 0x7f65e82f3520>
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-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
XFailed suites/acl/syntax_test.py::test_aci_invalid_syntax_fail[test_targattrfilters_20] 0.02
topo = <lib389.topologies.TopologyMain object at 0x7f65e82f3520>
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 0x7f65e82f3520>
real_value = '(target = ldap:///dc=example,dc=com)(targetattr=*)(version 3.0; acl "Name of the ACI"; deny absolute (all)userdn="ldap:////////anyone";)'

@pytest.mark.xfail(reason='https://bugzilla.redhat.com/show_bug.cgi?id=1691473')
@pytest.mark.parametrize("real_value", [a[1] for a in FAILED],
ids=[a[0] for a in FAILED])
def test_aci_invalid_syntax_fail(topo, real_value):
"""

Try to set wrong ACI syntax.

:id: 83c40784-fff5-49c8-9535-7064c9c19e7e
:parametrized: yes
:setup: Standalone Instance
:steps:
1. Create ACI
2. Try to setup the ACI with Instance
:expectedresults:
1. It should pass
2. It should not pass
"""
domain = Domain(topo.standalone, DEFAULT_SUFFIX)
with pytest.raises(ldap.INVALID_SYNTAX):
> domain.add("aci", real_value)
E Failed: DID NOT RAISE <class 'ldap.INVALID_SYNTAX'>

suites/acl/syntax_test.py:215: Failed
XFailed suites/acl/userattr_test.py::test_mod_see_also_positive[(LEVEL_3, CHILDREN)] 0.16
topo = <lib389.topologies.TopologyMain object at 0x7f65e849b5b0>
_add_user = None, user = 'uid=Grandparent,ou=Inheritance,dc=example,dc=com'
entry = 'ou=CHILDREN,ou=PARENTS,ou=GRANDPARENTS,ou=ANCESTORS,ou=Inheritance,dc=example,dc=com'

@pytest.mark.parametrize("user,entry", [
(CAN, ROLEDNACCESS),
(CAN, USERDNACCESS),
(CAN, GROUPDNACCESS),
(CAN, LDAPURLACCESS),
(CAN, ATTRNAMEACCESS),
(LEVEL_0, OU_2),
(LEVEL_1, ANCESTORS),
(LEVEL_2, GRANDPARENTS),
(LEVEL_4, OU_2),
(LEVEL_4, ANCESTORS),
(LEVEL_4, GRANDPARENTS),
(LEVEL_4, PARENTS),
(LEVEL_4, CHILDREN),
pytest.param(LEVEL_3, CHILDREN, marks=pytest.mark.xfail(reason="May be some bug")),
], ids=[
"(CAN,ROLEDNACCESS)",
"(CAN,USERDNACCESS)",
"(CAN,GROUPDNACCESS)",
"(CAN,LDAPURLACCESS)",
"(CAN,ATTRNAMEACCESS)",
"(LEVEL_0, OU_2)",
"(LEVEL_1,ANCESTORS)",
"(LEVEL_2,GRANDPARENTS)",
"(LEVEL_4,OU_2)",
"(LEVEL_4, ANCESTORS)",
"(LEVEL_4,GRANDPARENTS)",
"(LEVEL_4,PARENTS)",
"(LEVEL_4,CHILDREN)",
"(LEVEL_3, CHILDREN)"
])
def test_mod_see_also_positive(topo, _add_user, user, entry):
"""
Try to set seeAlso on entry with binding specific user, it will success
as per the ACI.

:id: 65745426-7a01-11e8-8ac2-8c16451d917b
:parametrized: yes
:setup: Standalone Instance
:steps:
1. Add test entry
2. Add ACI
3. User should follow ACI role
:expectedresults:
1. Entry should be added
2. Operation should succeed
3. Operation should succeed
"""
conn = UserAccount(topo.standalone, user).bind(PW_DM)
> UserAccount(conn, entry).replace('seeAlso', 'cn=1')

suites/acl/userattr_test.py:216:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:280: in replace
self.set(key, value, action=ldap.MOD_REPLACE)
/usr/local/lib/python3.8/site-packages/lib389/_mapped_object.py:446: in set
return self._instance.modify_ext_s(self._dn, [(action, key, value)],
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:613: in modify_ext_s
resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:764: in result3
resp_type, resp_data, resp_msgid, decoded_resp_ctrls, retoid, retval = self.result4(
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:774: in result4
ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop)
/usr/local/lib/python3.8/site-packages/lib389/__init__.py:180: in inner
return f(*args, **kwargs)
/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:340: in _ldap_call
reraise(exc_type, exc_value, exc_traceback)
/usr/local/lib64/python3.8/site-packages/ldap/compat.py:46: in reraise
raise exc_value
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <lib389.DirSrv object at 0x7f65e811cdc0>
func = <built-in method result4 of LDAP object at 0x7f65e81222a0>
args = (5, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None
exc_type = None, exc_value = None, exc_traceback = None

def _ldap_call(self,func,*args,**kwargs):
"""
Wrapper method mainly for serializing calls into OpenLDAP libs
and trace logs
"""
self._ldap_object_lock.acquire()
if __debug__:
if self._trace_level>=1:
self._trace_file.write('*** %s %s - %s\n%s\n' % (
repr(self),
self._uri,
'.'.join((self.__class__.__name__,func.__name__)),
pprint.pformat((args,kwargs))
))
if self._trace_level>=9:
traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file)
diagnostic_message_success = None
try:
try:
> result = func(*args,**kwargs)
E ldap.INSUFFICIENT_ACCESS: {'msgtype': 103, 'msgid': 5, 'result': 50, 'desc': 'Insufficient access', 'ctrls': [], 'info': "Insufficient 'write' privilege to the 'seeAlso' attribute of entry 'ou=children,ou=parents,ou=grandparents,ou=ancestors,ou=inheritance,dc=example,dc=com'.\n"}

/usr/local/lib64/python3.8/site-packages/ldap/ldapobject.py:324: INSUFFICIENT_ACCESS
XFailed suites/config/config_test.py::test_defaultnamingcontext_1 0.23
topo = <lib389.topologies.TopologyMain object at 0x7f65e67a48b0>

@pytest.mark.xfail(reason="This may fail due to bug 1610234")
def test_defaultnamingcontext_1(topo):
"""This test case should be part of function test_defaultnamingcontext
Please move it back after we have a fix for bug 1610234
"""
log.info("Remove the original suffix which is currently nsslapd-defaultnamingcontext"
"and check nsslapd-defaultnamingcontext become empty.")

""" Please remove these declarations after moving the test
to function test_defaultnamingcontext
"""
backends = Backends(topo.standalone)
test_db2 = 'test2_db'
test_suffix2 = 'dc=test2,dc=com'
b2 = backends.create(properties={'cn': test_db2,
'nsslapd-suffix': test_suffix2})
b2.delete()
> assert topo.standalone.config.get_attr_val_utf8('nsslapd-defaultnamingcontext') == ' '
E AssertionError: assert 'dc=example,dc=com' == ' '
E Strings contain only whitespace, escaping them using repr()
E - ' '
E + 'dc=example,dc=com'

suites/config/config_test.py:280: AssertionError
-------------------------------Captured log call--------------------------------
INFO  tests.suites.config.config_test:config_test.py:268 Remove the original suffix which is currently nsslapd-defaultnamingcontextand check nsslapd-defaultnamingcontext become empty.
XFailed suites/export/export_test.py::test_dbtasks_db2ldif_with_non_accessible_ldif_file_path_output 3.48
topo = <lib389.topologies.TopologyMain object at 0x7f65e7c0eaf0>

@pytest.mark.bz1860291
@pytest.mark.xfail(reason="bug 1860291")
@pytest.mark.skipif(ds_is_older("1.3.10", "1.4.2"), reason="Not implemented")
def test_dbtasks_db2ldif_with_non_accessible_ldif_file_path_output(topo):
"""Export with db2ldif, giving a ldif file path which can't be accessed by the user (dirsrv by default)

:id: fcc63387-e650-40a7-b643-baa68c190037
:setup: Standalone Instance - entries imported in the db
:steps:
1. Stop the server
2. Launch db2ldif with a non accessible ldif file path
3. check the error reported in the command output
:expected results:
1. Operation successful
2. Operation properly fails
3. An clear error message is reported as output of the cli
"""
export_ldif = '/tmp/nonexistent/export.ldif'

log.info("Stopping the instance...")
topo.standalone.stop()

log.info("Performing an offline export to a non accessible ldif file path - should fail and output a clear error message")
expected_output="No such file or directory"
> run_db2ldif_and_clear_logs(topo, topo.standalone, DEFAULT_BENAME, export_ldif, expected_output)

suites/export/export_test.py:150:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

topology = <lib389.topologies.TopologyMain object at 0x7f65e7c0eaf0>
instance = <lib389.DirSrv object at 0x7f65e7e7ea60>, backend = 'userRoot'
ldif = '/tmp/nonexistent/export.ldif', output_msg = 'No such file or directory'
encrypt = False, repl = False

def run_db2ldif_and_clear_logs(topology, instance, backend, ldif, output_msg, encrypt=False, repl=False):
args = FakeArgs()
args.instance = instance.serverid
args.backend = backend
args.encrypted = encrypt
args.replication = repl
args.ldif = ldif

dbtasks_db2ldif(instance, topology.logcap.log, args)

log.info('checking output msg')
if not topology.logcap.contains(output_msg):
log.error('The output message is not the expected one')
> assert False
E assert False

suites/export/export_test.py:36: AssertionError
------------------------------Captured stderr call------------------------------
ldiffile: /tmp/nonexistent/export.ldif
-------------------------------Captured log call--------------------------------
INFO  lib389.utils:export_test.py:145 Stopping the instance... INFO  lib389.utils:export_test.py:148 Performing an offline export to a non accessible ldif file path - should fail and output a clear error message CRITICAL LogCapture:dbtasks.py:40 db2ldif failed INFO  lib389.utils:export_test.py:33 checking output msg ERROR  lib389.utils:export_test.py:35 The output message is not the expected one
XFailed suites/replication/conflict_resolve_test.py::TestTwoMasters::test_memberof_groups 0.00
self = <tests.suites.replication.conflict_resolve_test.TestTwoMasters object at 0x7f65e514ebb0>
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f65e53cf760>
base_m2 = <lib389.idm.nscontainer.nsContainer object at 0x7f65e5042ee0>

def test_memberof_groups(self, topology_m2, base_m2):
"""Check that conflict properly resolved for operations
with memberOf and groups

:id: 77f09b18-03d1-45da-940b-1ad2c2908eb3
:setup: Two master replication, test container for entries, enable plugin logging,
audit log, error log for replica and access log for internal
:steps:
1. Enable memberOf plugin
2. Add 30 users to m1 and wait for replication to happen
3. Pause replication
4. Create a group on m1 and m2
5. Create a group on m1 and m2, delete from m1
6. Create a group on m1, delete from m1, and create on m2,
7. Create a group on m2 and m1, delete from m1
8. Create two different groups on m2
9. Resume replication
10. Check that the entries on both masters are the same and replication is working
:expectedresults:
1. It should pass
2. It should pass
3. It should pass
4. It should pass
5. It should pass
6. It should pass
7. It should pass
8. It should pass
9. It should pass
10. It should pass
"""

> pytest.xfail("Issue 49591 - work in progress")
E _pytest.outcomes.XFailed: Issue 49591 - work in progress

suites/replication/conflict_resolve_test.py:402: XFailed
XFailed suites/replication/conflict_resolve_test.py::TestTwoMasters::test_managed_entries 0.00
self = <tests.suites.replication.conflict_resolve_test.TestTwoMasters object at 0x7f65e5055490>
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f65e53cf760>

def test_managed_entries(self, topology_m2):
"""Check that conflict properly resolved for operations
with managed entries

:id: 77f09b18-03d1-45da-940b-1ad2c2908eb4
:setup: Two master replication, test container for entries, enable plugin logging,
audit log, error log for replica and access log for internal
:steps:
1. Create ou=managed_users and ou=managed_groups under test container
2. Configure managed entries plugin and add a template to test container
3. Add a user to m1 and wait for replication to happen
4. Pause replication
5. Create a user on m1 and m2 with a same group ID on both master
6. Create a user on m1 and m2 with a different group ID on both master
7. Resume replication
8. Check that the entries on both masters are the same and replication is working
:expectedresults:
1. It should pass
2. It should pass
3. It should pass
4. It should pass
5. It should pass
6. It should pass
7. It should pass
8. It should pass
"""

> pytest.xfail("Issue 49591 - work in progress")
E _pytest.outcomes.XFailed: Issue 49591 - work in progress

suites/replication/conflict_resolve_test.py:493: XFailed
XFailed suites/replication/conflict_resolve_test.py::TestTwoMasters::test_nested_entries_with_children 0.00
self = <tests.suites.replication.conflict_resolve_test.TestTwoMasters object at 0x7f65e51eadc0>
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f65e53cf760>
base_m2 = <lib389.idm.nscontainer.nsContainer object at 0x7f65e505a250>

def test_nested_entries_with_children(self, topology_m2, base_m2):
"""Check that conflict properly resolved for operations
with nested entries with children

:id: 77f09b18-03d1-45da-940b-1ad2c2908eb5
:setup: Two master replication, test container for entries, enable plugin logging,
audit log, error log for replica and access log for internal
:steps:
1. Add 15 containers to m1 and wait for replication to happen
2. Pause replication
3. Create parent-child on master2 and master1
4. Create parent-child on master1 and master2
5. Create parent-child on master1 and master2 different child rdn
6. Create parent-child on master1 and delete parent on master2
7. Create parent on master1, delete it and parent-child on master2, delete them
8. Create parent on master1, delete it and parent-two children on master2
9. Create parent-two children on master1 and parent-child on master2, delete them
10. Create three subsets inside existing container entry, applying only part of changes on m2
11. Create more combinations of the subset with parent-child on m1 and parent on m2
12. Delete container on m1, modify user1 on m1, create parent on m2 and modify user2 on m2
13. Resume replication
14. Check that the entries on both masters are the same and replication is working
:expectedresults:
1. It should pass
2. It should pass
3. It should pass
4. It should pass
5. It should pass
6. It should pass
7. It should pass
8. It should pass
9. It should pass
10. It should pass
11. It should pass
12. It should pass
13. It should pass
14. It should pass
"""

> pytest.xfail("Issue 49591 - work in progress")
E _pytest.outcomes.XFailed: Issue 49591 - work in progress

suites/replication/conflict_resolve_test.py:584: XFailed
XFailed suites/replication/conflict_resolve_test.py::TestThreeMasters::test_nested_entries 0.00
self = <tests.suites.replication.conflict_resolve_test.TestThreeMasters object at 0x7f65e52e28e0>
topology_m3 = <lib389.topologies.TopologyMain object at 0x7f65e52e22b0>
base_m3 = <lib389.idm.nscontainer.nsContainer object at 0x7f65e52dd3a0>

def test_nested_entries(self, topology_m3, base_m3):
"""Check that conflict properly resolved for operations
with nested entries with children

:id: 77f09b18-03d1-45da-940b-1ad2c2908eb6
:setup: Three master replication, test container for entries, enable plugin logging,
audit log, error log for replica and access log for internal
:steps:
1. Add 15 containers to m1 and wait for replication to happen
2. Pause replication
3. Create two child entries under each of two entries
4. Create three child entries under each of three entries
5. Create two parents on m1 and m2, then on m1 - create a child and delete one parent,
on m2 - delete one parent and create a child
6. Test a few more parent-child combinations with three instances
7. Resume replication
8. Check that the entries on both masters are the same and replication is working
:expectedresults:
1. It should pass
2. It should pass
3. It should pass
4. It should pass
5. It should pass
6. It should pass
7. It should pass
8. It should pass
"""

> pytest.xfail("Issue 49591 - work in progress")
E _pytest.outcomes.XFailed: Issue 49591 - work in progress

suites/replication/conflict_resolve_test.py:968: XFailed
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39003, 'ldap-secureport': 63703, 'server-id': 'master3', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 7c01f0f5-1dc5-4318-a7b3-eb8b8af8e033 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect e3ba54b6-1e22-429e-bec2-257cd37add1e / got description=7c01f0f5-1dc5-4318-a7b3-eb8b8af8e033) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:162 Joining master master3 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 7272f3b2-5370-481b-89e2-6e4d70d83443 / got description=e3ba54b6-1e22-429e-bec2-257cd37add1e) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 09b1241a-6a9b-46bc-b933-696cb28fc22b / got description=7272f3b2-5370-481b-89e2-6e4d70d83443) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master3 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master3 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master2 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.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.19
topo = <lib389.topologies.TopologyMain object at 0x7f65e51e4880>
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 0x7f65e536d970>
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.18
topo = <lib389.topologies.TopologyMain object at 0x7f65e51e4880>
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 0x7f65e537e820>
attr = 'nsds5ReplicaPort', value = '0'

def perform_invalid_modify(o, attr, value):
with pytest.raises(ldap.LDAPError) as ei:
> o.replace(attr, value)
E Failed: DID NOT RAISE <class 'ldap.LDAPError'>

suites/replication/replica_config_test.py:113: Failed
XFailed suites/replication/replica_config_test.py::test_agmt_num_modify[nsds5ReplicaTimeout--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] 0.19
topo = <lib389.topologies.TopologyMain object at 0x7f65e51e4880>
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 0x7f65e51cbc10>
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.19
topo = <lib389.topologies.TopologyMain object at 0x7f65e51e4880>
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 0x7f65e5351eb0>
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.08
topo = <lib389.topologies.TopologyMain object at 0x7f65e51e4880>
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 0x7f65e50f9a90>
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.18
topo = <lib389.topologies.TopologyMain object at 0x7f65e51e4880>
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 0x7f65e5120dc0>
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.18
topo = <lib389.topologies.TopologyMain object at 0x7f65e51e4880>
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 0x7f65e534b2e0>
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.19
topo = <lib389.topologies.TopologyMain object at 0x7f65e51e4880>
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 0x7f65e53983d0>
attr = 'nsds5ReplicaProtocolTimeout', value = '9223372036854775807'

def perform_invalid_modify(o, attr, value):
with pytest.raises(ldap.LDAPError) as ei:
> o.replace(attr, value)
E Failed: DID NOT RAISE <class 'ldap.LDAPError'>

suites/replication/replica_config_test.py:113: Failed
XFailed suites/replication/ruvstore_test.py::test_memoryruv_sync_with_databaseruv 0.05
topo = <lib389.topologies.TopologyMain object at 0x7f65e829f310>

@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 0x7f65e829f310>
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--------------------------------
INFO  tests.suites.replication.ruvstore_test:ruvstore_test.py:136 Adding user: rep2lusr to master1 INFO  tests.suites.replication.ruvstore_test:ruvstore_test.py:75 Checking memory ruv for ldap: add operation INFO  tests.suites.replication.ruvstore_test:ruvstore_test.py:80 Checking database ruv for ldap: add operation
XPassed suites/acl/syntax_test.py::test_aci_invalid_syntax_fail[test_Use_double_equal_instead_of_equal_in_the_targetattr] 0.04
No log output captured.
XPassed suites/acl/syntax_test.py::test_aci_invalid_syntax_fail[test_Use_double_equal_instead_of_equal_in_the_targetfilter] 0.03
No log output captured.
XPassed suites/replication/replica_config_test.py::test_agmt_num_add[nsds5ReplicaTimeout--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] 0.20
No log output captured.
XPassed suites/replication/replica_config_test.py::test_agmt_num_add[nsds5ReplicaBusyWaitTime--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] 0.22
No log output captured.
XPassed suites/replication/replica_config_test.py::test_agmt_num_add[nsds5ReplicaSessionPauseTime--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] 0.20
No log output captured.
XPassed suites/replication/replica_config_test.py::test_agmt_num_add[nsds5ReplicaFlowControlWindow--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] 0.21
No log output captured.
XPassed suites/replication/replica_config_test.py::test_agmt_num_add[nsds5ReplicaFlowControlPause--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] 0.20
No log output captured.
XPassed suites/replication/replica_config_test.py::test_agmt_num_add[nsds5ReplicaProtocolTimeout--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] 0.23
No log output captured.
Skipped suites/auth_token/basic_auth_test.py::test_ldap_auth_token_config::setup 0.00
('suites/auth_token/basic_auth_test.py', 28, 'Skipped: Auth tokens are not available in older versions')
Skipped suites/auth_token/basic_auth_test.py::test_ldap_auth_token_nsuser::setup 0.00
('suites/auth_token/basic_auth_test.py', 75, 'Skipped: Auth tokens are not available in older versions')
Skipped suites/auth_token/basic_auth_test.py::test_ldap_auth_token_disabled::setup 0.00
('suites/auth_token/basic_auth_test.py', 144, 'Skipped: Auth tokens are not available in older versions')
Skipped suites/auth_token/basic_auth_test.py::test_ldap_auth_token_directory_manager::setup 0.00
('suites/auth_token/basic_auth_test.py', 194, 'Skipped: Auth tokens are not available in older versions')
Skipped suites/auth_token/basic_auth_test.py::test_ldap_auth_token_anonymous::setup 0.00
('suites/auth_token/basic_auth_test.py', 217, 'Skipped: Auth tokens are not available in older versions')
Skipped suites/config/regression_test.py::test_set_cachememsize_to_custom_value::setup 0.00
('suites/config/regression_test.py', 34, 'Skipped: available memory is too low')
Skipped suites/entryuuid/basic_test.py::test_entryuuid_indexed_import_and_search::setup 0.00
('suites/entryuuid/basic_test.py', 73, 'Skipped: Entryuuid is not available in older versions')
Skipped suites/entryuuid/basic_test.py::test_entryuuid_unindexed_import_and_search::setup 0.00
('suites/entryuuid/basic_test.py', 113, 'Skipped: Entryuuid is not available in older versions')
Skipped suites/entryuuid/basic_test.py::test_entryuuid_generation_on_add::setup 0.00
('suites/entryuuid/basic_test.py', 155, 'Skipped: Entryuuid is not available in older versions')
Skipped suites/entryuuid/basic_test.py::test_entryuuid_fixup_task::setup 0.00
('suites/entryuuid/basic_test.py', 179, 'Skipped: Entryuuid is not available in older versions')
Skipped suites/healthcheck/health_config_test.py::test_healthcheck_logging_format_should_be_revised::setup 0.00
('suites/healthcheck/health_config_test.py', 91, 'Skipped: These tests need to use python installer')
Skipped suites/healthcheck/health_config_test.py::test_healthcheck_RI_plugin_is_misconfigured::setup 0.00
('suites/healthcheck/health_config_test.py', 134, 'Skipped: These tests need to use python installer')
Skipped suites/healthcheck/health_config_test.py::test_healthcheck_RI_plugin_missing_indexes::setup 0.00
('suites/healthcheck/health_config_test.py', 183, 'Skipped: These tests need to use python installer')
Skipped suites/healthcheck/health_config_test.py::test_healthcheck_virtual_attr_incorrectly_indexed::setup 0.00
('suites/healthcheck/health_config_test.py', 235, 'Skipped: These tests need to use python installer')
Skipped suites/healthcheck/health_config_test.py::test_healthcheck_low_disk_space::setup 0.00
('suites/healthcheck/health_config_test.py', 295, 'Skipped: These tests need to use python installer')
Skipped suites/healthcheck/health_config_test.py::test_healthcheck_notes_unindexed_search::setup 0.00
('suites/healthcheck/health_config_test.py', 340, 'Skipped: These tests need to use python installer')
Skipped suites/healthcheck/health_config_test.py::test_healthcheck_notes_unknown_attribute::setup 0.00
('suites/healthcheck/health_config_test.py', 389, 'Skipped: These tests need to use python installer')
Skipped suites/healthcheck/health_repl_test.py::test_healthcheck_replication_replica_not_reachable::setup 0.00
('suites/healthcheck/health_repl_test.py', 80, 'Skipped: These tests need to use python installer')
Skipped suites/healthcheck/health_repl_test.py::test_healthcheck_changelog_trimming_not_configured::setup 0.00
('suites/healthcheck/health_repl_test.py', 132, 'Skipped: These tests need to use python installer')
Skipped suites/healthcheck/health_repl_test.py::test_healthcheck_replication_presence_of_conflict_entries::setup 0.00
('suites/healthcheck/health_repl_test.py', 179, 'Skipped: These tests need to use python installer')
Skipped suites/healthcheck/health_repl_test.py::test_healthcheck_replication_out_of_sync_broken::setup 0.00
('suites/healthcheck/health_repl_test.py', 224, 'Skipped: These tests need to use python installer')
Skipped suites/healthcheck/health_security_test.py::test_healthcheck_insecure_pwd_hash_configured::setup 0.00
('suites/healthcheck/health_security_test.py', 86, 'Skipped: These tests can only be run with python installer and disabled ASAN')
Skipped suites/healthcheck/health_security_test.py::test_healthcheck_min_allowed_tls_version_too_low::setup 0.00
('suites/healthcheck/health_security_test.py', 135, 'Skipped: These tests can only be run with python installer and disabled ASAN')
Skipped suites/healthcheck/health_security_test.py::test_healthcheck_resolvconf_bad_file_perm::setup 0.00
('suites/healthcheck/health_security_test.py', 194, 'Skipped: These tests can only be run with python installer and disabled ASAN')
Skipped suites/healthcheck/health_security_test.py::test_healthcheck_pwdfile_bad_file_perm::setup 0.00
('suites/healthcheck/health_security_test.py', 237, 'Skipped: These tests can only be run with python installer and disabled ASAN')
Skipped suites/healthcheck/health_security_test.py::test_healthcheck_certif_expiring_within_30d::setup 0.00
('suites/healthcheck/health_security_test.py', 281, 'Skipped: These tests can only be run with python installer and disabled ASAN')
Skipped suites/healthcheck/health_security_test.py::test_healthcheck_certif_expired::setup 0.00
('suites/healthcheck/health_security_test.py', 319, 'Skipped: These tests can only be run with python installer and disabled ASAN')
Skipped suites/healthcheck/health_sync_test.py::test_healthcheck_replication_out_of_sync_not_broken::setup 0.00
('suites/healthcheck/health_sync_test.py', 70, 'Skipped: These tests need to use python installer')
Skipped suites/healthcheck/healthcheck_test.py::test_healthcheck_disabled_suffix::setup 0.00
('suites/healthcheck/healthcheck_test.py', 75, 'Skipped: These tests need to use python installer')
Skipped suites/healthcheck/healthcheck_test.py::test_healthcheck_standalone::setup 0.00
('suites/healthcheck/healthcheck_test.py', 103, 'Skipped: These tests need to use python installer')
Skipped suites/healthcheck/healthcheck_test.py::test_healthcheck_list_checks::setup 0.00
('suites/healthcheck/healthcheck_test.py', 127, 'Skipped: These tests need to use python installer')
Skipped suites/healthcheck/healthcheck_test.py::test_healthcheck_list_errors::setup 0.00
('suites/healthcheck/healthcheck_test.py', 167, 'Skipped: These tests need to use python installer')
Skipped suites/healthcheck/healthcheck_test.py::test_healthcheck_check_option::setup 0.00
('suites/healthcheck/healthcheck_test.py', 216, 'Skipped: These tests need to use python installer')
Skipped suites/healthcheck/healthcheck_test.py::test_healthcheck_standalone_tls::setup 0.00
('suites/healthcheck/healthcheck_test.py', 261, 'Skipped: These tests need to use python installer')
Skipped suites/healthcheck/healthcheck_test.py::test_healthcheck_replication::setup 0.00
('suites/healthcheck/healthcheck_test.py', 288, 'Skipped: These tests need to use python installer')
Skipped suites/healthcheck/healthcheck_test.py::test_healthcheck_replication_tls::setup 0.00
('suites/healthcheck/healthcheck_test.py', 324, 'Skipped: These tests need to use python installer')
Skipped suites/healthcheck/healthcheck_test.py::test_healthcheck_backend_missing_mapping_tree::setup 0.00
('suites/healthcheck/healthcheck_test.py', 361, 'Skipped: These tests need to use python installer')
Skipped suites/healthcheck/healthcheck_test.py::test_healthcheck_unable_to_query_backend::setup 0.00
('suites/healthcheck/healthcheck_test.py', 412, 'Skipped: These tests need to use python installer')
Skipped suites/healthcheck/healthcheck_test.py::test_healthcheck_database_not_initialized::setup 0.00
('suites/healthcheck/healthcheck_test.py', 462, 'Skipped: These tests need to use python installer')
Skipped suites/memory_leaks/MMR_double_free_test.py::test_MMR_double_free::setup 0.00
('suites/memory_leaks/MMR_double_free_test.py', 67, "Skipped: Don't run if ASAN is not enabled")
Skipped suites/memory_leaks/range_search_test.py::test_range_search::setup 0.00
('suites/memory_leaks/range_search_test.py', 24, "Skipped: Don't run if ASAN is not enabled")
Skipped suites/migration/export_data_test.py::test_export_data_from_source_host::setup 0.00
('suites/migration/export_data_test.py', 24, 'Skipped: This test is meant to execute in specific test environment')
Skipped suites/migration/import_data_test.py::test_import_data_to_target_host::setup 0.00
('suites/migration/import_data_test.py', 24, 'Skipped: This test is meant to execute in specific test environment')
Skipped suites/replication/changelog_test.py::test_cldump_files_removed::setup 0.00
('suites/replication/changelog_test.py', 235, 'Skipped: does not work for prefix builds')
Skipped suites/replication/changelog_test.py::test_changelog_compactdbinterval::setup 0.00
('suites/replication/changelog_test.py', 630, 'Skipped: changelog compaction is done by the backend itself, with id2entry as well, nsslapd-changelogcompactdb-interval is no longer supported')
Skipped suites/rewriters/adfilter_test.py::test_adfilter_objectSid::setup 0.00
('suites/rewriters/adfilter_test.py', 90, 'Skipped: It is missing samba python bindings')
Skipped tickets/ticket47462_test.py::test_ticket47462::setup 0.00
('tickets/ticket47462_test.py', 39, 'Skipped: Upgrade scripts are supported only on versions < 1.4.x')
Skipped tickets/ticket47815_test.py::test_ticket47815::setup 0.00
('tickets/ticket47815_test.py', 26, 'Skipped: Not implemented, or invalid by nsMemberOf')
Skipped tickets/ticket49121_test.py::test_ticket49121::setup 0.00
('tickets/ticket49121_test.py', 32, "Skipped: Don't run if ASAN is not enabled")
Passed suites/acl/acivattr_test.py::test_positive[(ENG_USER, ENG_MANAGER, REAL_EQ_ACI)] 0.04
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/acl/acivattr_test.py::test_positive[(ENG_USER, ENG_MANAGER, REAL_PRES_ACI)] 0.05
No log output captured.
Passed suites/acl/acivattr_test.py::test_positive[(ENG_USER, ENG_MANAGER, REAL_SUB_ACI)] 0.05
No log output captured.
Passed suites/acl/acivattr_test.py::test_positive[(ENG_USER, ENG_MANAGER, ROLE_PRES_ACI)] 0.31
No log output captured.
Passed suites/acl/acivattr_test.py::test_positive[(ENG_USER, ENG_MANAGER, ROLE_SUB_ACI)] 0.06
No log output captured.
Passed suites/acl/acivattr_test.py::test_positive[(ENG_USER, ENG_MANAGER, COS_EQ_ACI)] 0.05
No log output captured.
Passed suites/acl/acivattr_test.py::test_positive[(ENG_USER, ENG_MANAGER, COS_PRES_ACI)] 0.05
No log output captured.
Passed suites/acl/acivattr_test.py::test_positive[(ENG_USER, ENG_MANAGER, COS_SUB_ACI)] 0.06
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.06
No log output captured.
Passed suites/acl/acivattr_test.py::test_negative[(ENG_USER, SALES_OU, REAL_PRES_ACI)] 0.06
No log output captured.
Passed suites/acl/acivattr_test.py::test_negative[(ENG_USER, SALES_MANAGER, REAL_SUB_ACI)] 0.06
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.06
No log output captured.
Passed suites/acl/acivattr_test.py::test_negative[(ENG_USER, SALES_MANAGER, ROLE_SUB_ACI)] 0.06
No log output captured.
Passed suites/acl/acivattr_test.py::test_negative[(ENG_USER, SALES_MANAGER, COS_EQ_ACI)] 0.06
No log output captured.
Passed suites/acl/acivattr_test.py::test_negative[(ENG_USER, SALES_MANAGER, COS_PRES_ACI)] 0.06
No log output captured.
Passed suites/acl/acivattr_test.py::test_negative[(ENG_USER, SALES_MANAGER, COS_SUB_ACI)] 0.12
No log output captured.
Passed suites/acl/acivattr_test.py::test_negative[(SALES_UESER, SALES_MANAGER, LDAPURL_ACI)] 0.06
No log output captured.
Passed suites/acl/acivattr_test.py::test_negative[(ENG_USER, ENG_MANAGER, ROLE_EQ_ACI)] 0.06
No log output captured.
Passed suites/acl/acl_deny_test.py::test_multi_deny_aci 12.14
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389:acl_deny_test.py:39 Add uid=tuser1,ou=People,dc=example,dc=com INFO  lib389:acl_deny_test.py:50 Add uid=tuser,ou=People,dc=example,dc=com
-------------------------------Captured log call--------------------------------
INFO  lib389:acl_deny_test.py:82 Pass 1 INFO  lib389:acl_deny_test.py:85 Testing two searches behave the same... INFO  lib389:acl_deny_test.py:128 Testing search does not return any entries... INFO  lib389:acl_deny_test.py:82 Pass 2 INFO  lib389:acl_deny_test.py:85 Testing two searches behave the same... INFO  lib389:acl_deny_test.py:128 Testing search does not return any entries... INFO  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-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 817000ae-092d-4366-8d91-9e8a1103c716 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 1367bbc5-6d40-4680-8780-05b645c9e2f4 / got description=817000ae-092d-4366-8d91-9e8a1103c716) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  tests.suites.acl.acl_test:acl_test.py:77 ========Executing test with 'lang-ja' subtype======== INFO  tests.suites.acl.acl_test:acl_test.py:78 Add a target attribute INFO  tests.suites.acl.acl_test:acl_test.py:81 Add a user attribute INFO  tests.suites.acl.acl_test:acl_test.py:89 Add an ACI with attribute subtype
-------------------------------Captured log call--------------------------------
INFO  tests.suites.acl.acl_test:acl_test.py:119 Search for the added attribute INFO  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-------------------------------
INFO  tests.suites.acl.acl_test:acl_test.py:77 ========Executing test with 'binary' subtype======== INFO  tests.suites.acl.acl_test:acl_test.py:78 Add a target attribute INFO  tests.suites.acl.acl_test:acl_test.py:81 Add a user attribute INFO  tests.suites.acl.acl_test:acl_test.py:89 Add an ACI with attribute subtype
-------------------------------Captured log call--------------------------------
INFO  tests.suites.acl.acl_test:acl_test.py:119 Search for the added attribute INFO  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-------------------------------
INFO  tests.suites.acl.acl_test:acl_test.py:77 ========Executing test with 'phonetic' subtype======== INFO  tests.suites.acl.acl_test:acl_test.py:78 Add a target attribute INFO  tests.suites.acl.acl_test:acl_test.py:81 Add a user attribute INFO  tests.suites.acl.acl_test:acl_test.py:89 Add an ACI with attribute subtype
-------------------------------Captured log call--------------------------------
INFO  tests.suites.acl.acl_test:acl_test.py:119 Search for the added attribute INFO  tests.suites.acl.acl_test:acl_test.py:126 The added attribute was found
Passed suites/acl/acl_test.py::test_mode_default_add_deny 0.03
-------------------------------Captured log setup-------------------------------
INFO  lib389:acl_test.py:234 ######## INITIALIZATION ######## INFO  lib389:acl_test.py:237 Add uid=bind_entry,dc=example,dc=com INFO  lib389:acl_test.py:247 Add cn=staged user,dc=example,dc=com INFO  lib389:acl_test.py:251 Add cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:255 Add cn=excepts,cn=accounts,dc=example,dc=com
-------------------------------Captured log call--------------------------------
INFO  lib389:acl_test.py:287 ######## mode moddn_aci : ADD (should fail) ######## INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  lib389:acl_test.py:295 Try to add cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:304 Exception (expected): INSUFFICIENT_ACCESS
Passed suites/acl/acl_test.py::test_mode_default_delete_deny 0.02
-------------------------------Captured log call--------------------------------
INFO  lib389:acl_test.py:322 ######## DELETE (should fail) ######## INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  lib389:acl_test.py:329 Try to delete cn=staged user,dc=example,dc=com INFO  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--------------------------------
INFO  lib389:acl_test.py:369 ######## MOVE staging -> Prod (0) ######## INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  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 INFO  lib389:acl_test.py:388 Exception (expected): INSUFFICIENT_ACCESS INFO  lib389:acl_test.py:392 ######## MOVE to and from equality filter ######## INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  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 INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  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.55
-------------------------------Captured log call--------------------------------
INFO  lib389:acl_test.py:369 ######## MOVE staging -> Prod (1) ######## INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  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 INFO  lib389:acl_test.py:388 Exception (expected): INSUFFICIENT_ACCESS INFO  lib389:acl_test.py:392 ######## MOVE to and from equality filter ######## INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  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 INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com
Passed suites/acl/acl_test.py::test_moddn_staging_prod[2-cn=staged user,dc=example,dc=com-cn=bad*,dc=example,dc=com-True] 0.34
-------------------------------Captured log call--------------------------------
INFO  lib389:acl_test.py:369 ######## MOVE staging -> Prod (2) ######## INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  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 INFO  lib389:acl_test.py:388 Exception (expected): INSUFFICIENT_ACCESS INFO  lib389:acl_test.py:392 ######## MOVE to and from equality filter ######## INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  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 INFO  lib389:acl_test.py:402 Exception (expected): INSUFFICIENT_ACCESS INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  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.47
-------------------------------Captured log call--------------------------------
INFO  lib389:acl_test.py:369 ######## MOVE staging -> Prod (3) ######## INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  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 INFO  lib389:acl_test.py:388 Exception (expected): INSUFFICIENT_ACCESS INFO  lib389:acl_test.py:392 ######## MOVE to and from equality filter ######## INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  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 INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  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.35
-------------------------------Captured log call--------------------------------
INFO  lib389:acl_test.py:369 ######## MOVE staging -> Prod (4) ######## INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  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 INFO  lib389:acl_test.py:388 Exception (expected): INSUFFICIENT_ACCESS INFO  lib389:acl_test.py:392 ######## MOVE to and from equality filter ######## INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  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 INFO  lib389:acl_test.py:402 Exception (expected): INSUFFICIENT_ACCESS INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  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--------------------------------
INFO  lib389:acl_test.py:369 ######## MOVE staging -> Prod (5) ######## INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  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 INFO  lib389:acl_test.py:388 Exception (expected): INSUFFICIENT_ACCESS INFO  lib389:acl_test.py:392 ######## MOVE to and from equality filter ######## INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  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 INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  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.32
-------------------------------Captured log call--------------------------------
INFO  lib389:acl_test.py:369 ######## MOVE staging -> Prod (6) ######## INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  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 INFO  lib389:acl_test.py:388 Exception (expected): INSUFFICIENT_ACCESS INFO  lib389:acl_test.py:392 ######## MOVE to and from equality filter ######## INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  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 INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  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.36
-------------------------------Captured log call--------------------------------
INFO  lib389:acl_test.py:369 ######## MOVE staging -> Prod (7) ######## INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  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 INFO  lib389:acl_test.py:388 Exception (expected): INSUFFICIENT_ACCESS INFO  lib389:acl_test.py:392 ######## MOVE to and from equality filter ######## INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  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 INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  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.31
-------------------------------Captured log call--------------------------------
INFO  lib389:acl_test.py:369 ######## MOVE staging -> Prod (8) ######## INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  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 INFO  lib389:acl_test.py:388 Exception (expected): INSUFFICIENT_ACCESS INFO  lib389:acl_test.py:392 ######## MOVE to and from equality filter ######## INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  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 INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  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.43
-------------------------------Captured log call--------------------------------
INFO  lib389:acl_test.py:446 ######## MOVE staging -> Prod (9) ######## INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  lib389:acl_test.py:459 Try to MODDN uid=new_account9,cn=staged user,dc=example,dc=com -> uid=new_account9,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:466 Exception (expected): INSUFFICIENT_ACCESS INFO  lib389:acl_test.py:472 Disable the moddn right INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  lib389:acl_test.py:477 ######## MOVE to and from equality filter ######## INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  lib389:acl_test.py:485 Try to MODDN uid=new_account9,cn=staged user,dc=example,dc=com -> uid=new_account9,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:492 Exception (expected): INSUFFICIENT_ACCESS INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  lib389:acl_test.py:514 Try to MODDN uid=new_account9,cn=staged user,dc=example,dc=com -> uid=new_account9,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  lib389:acl_test.py:525 Enable the moddn right INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  lib389:acl_test.py:529 ######## MOVE staging -> Prod (10) ######## INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  lib389:acl_test.py:541 Try to MODDN uid=new_account10,cn=staged user,dc=example,dc=com -> uid=new_account10,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:548 Exception (expected): INSUFFICIENT_ACCESS INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  lib389:acl_test.py:565 Try to MODDN uid=new_account10,cn=staged user,dc=example,dc=com -> uid=new_account10,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:572 Exception (expected): INSUFFICIENT_ACCESS INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  lib389:acl_test.py:581 ######## MOVE to and from equality filter ######## INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  lib389:acl_test.py:587 Try to MODDN uid=new_account10,cn=staged user,dc=example,dc=com -> uid=new_account10,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  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.60
-------------------------------Captured log call--------------------------------
INFO  lib389:acl_test.py:616 ######## MOVE staging -> Prod (11) ######## INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  lib389:acl_test.py:629 Try to MODDN uid=new_account11,cn=staged user,dc=example,dc=com -> uid=new_account11,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:636 Exception (expected): INSUFFICIENT_ACCESS INFO  lib389:acl_test.py:640 ######## MOVE to and from equality filter ######## INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  lib389:acl_test.py:646 Try to MODDN uid=new_account11,cn=staged user,dc=example,dc=com -> uid=new_account11,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  lib389:acl_test.py:661 Try to move back MODDN uid=new_account11,cn=accounts,dc=example,dc=com -> uid=new_account11,cn=staged user,dc=example,dc=com INFO  lib389:acl_test.py:668 Exception (expected): INSUFFICIENT_ACCESS INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  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.12
-------------------------------Captured log call--------------------------------
INFO  lib389:acl_test.py:698 Bind as cn=Directory Manager (M2) INFO  lib389:acl_test.py:718 Update (M2) uid=new_account12,cn=staged user,dc=example,dc=com (description) INFO  lib389:acl_test.py:731 Update uid=new_account12,cn=staged user,dc=example,dc=com (description) replicated on M1
Passed suites/acl/acl_test.py::test_moddn_staging_prod_except 0.60
-------------------------------Captured log call--------------------------------
INFO  lib389:acl_test.py:756 ######## MOVE staging -> Prod (13) ######## INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  lib389:acl_test.py:768 Try to MODDN uid=new_account13,cn=staged user,dc=example,dc=com -> uid=new_account13,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:775 Exception (expected): INSUFFICIENT_ACCESS INFO  lib389:acl_test.py:779 ######## MOVE to and from equality filter ######## INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  lib389:acl_test.py:161 Add a DENY aci under cn=excepts,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  lib389:acl_test.py:786 Try to MODDN uid=new_account13,cn=staged user,dc=example,dc=com -> uid=new_account13,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:792 ######## MOVE staging -> Prod/Except (14) ######## INFO  lib389:acl_test.py:798 Try to MODDN uid=new_account14,cn=staged user,dc=example,dc=com -> uid=new_account14,cn=excepts,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:805 Exception (expected): INSUFFICIENT_ACCESS INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  lib389:acl_test.py:161 Add a DENY aci under cn=excepts,cn=accounts,dc=example,dc=com INFO  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--------------------------------
INFO  lib389:acl_test.py:832 ######## mode moddn_aci : GER no moddn ######## INFO  lib389:acl_test.py:843 dn: cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:843 dn: cn=excepts,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:843 dn: uid=new_account0,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:843 dn: uid=new_account1,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:843 dn: uid=new_account3,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:843 dn: uid=new_account5,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:843 dn: uid=new_account6,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:843 dn: uid=new_account7,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:843 dn: uid=new_account8,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:843 dn: uid=new_account9,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:843 dn: uid=new_account10,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:843 dn: uid=new_account11,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:843 dn: uid=new_account13,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:846 ######## entryLevelRights: b'v'
Passed suites/acl/acl_test.py::test_mode_default_ger_with_moddn 0.29
-------------------------------Captured log call--------------------------------
INFO  lib389:acl_test.py:870 ######## mode moddn_aci: GER with moddn ######## INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  lib389:acl_test.py:888 dn: cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:888 dn: cn=excepts,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:888 dn: uid=new_account0,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:888 dn: uid=new_account1,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:888 dn: uid=new_account3,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:888 dn: uid=new_account5,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:888 dn: uid=new_account6,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:888 dn: uid=new_account7,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:888 dn: uid=new_account8,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:888 dn: uid=new_account9,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:888 dn: uid=new_account10,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:888 dn: uid=new_account11,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:888 dn: uid=new_account13,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:891 ######## entryLevelRights: b'vn' INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  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--------------------------------
INFO  lib389:acl_test.py:921 ######## Disable the moddn aci mod ######## INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  lib389:acl_test.py:925 ######## mode legacy 1: GER no moddn ######## INFO  lib389:acl_test.py:935 dn: cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:935 dn: cn=excepts,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:935 dn: uid=new_account0,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:935 dn: uid=new_account1,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:935 dn: uid=new_account3,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:935 dn: uid=new_account5,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:935 dn: uid=new_account6,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:935 dn: uid=new_account7,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:935 dn: uid=new_account8,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:935 dn: uid=new_account9,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:935 dn: uid=new_account10,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:935 dn: uid=new_account11,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:935 dn: uid=new_account13,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:938 ######## entryLevelRights: b'v'
Passed suites/acl/acl_test.py::test_mode_legacy_ger_no_moddn2 0.20
-------------------------------Captured log call--------------------------------
INFO  lib389:acl_test.py:964 ######## Disable the moddn aci mod ######## INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  lib389:acl_test.py:968 ######## mode legacy 2: GER no moddn ######## INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  lib389:acl_test.py:985 dn: cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:985 dn: cn=excepts,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:985 dn: uid=new_account0,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:985 dn: uid=new_account1,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:985 dn: uid=new_account3,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:985 dn: uid=new_account5,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:985 dn: uid=new_account6,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:985 dn: uid=new_account7,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:985 dn: uid=new_account8,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:985 dn: uid=new_account9,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:985 dn: uid=new_account10,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:985 dn: uid=new_account11,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:985 dn: uid=new_account13,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:988 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  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.29
-------------------------------Captured log call--------------------------------
INFO  lib389:acl_test.py:1024 ######## Disable the moddn aci mod ######## INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  lib389:acl_test.py:1028 ######## mode legacy : GER with moddn ######## INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager INFO  lib389:acl_test.py:140 Bind as uid=bind_entry,dc=example,dc=com INFO  lib389:acl_test.py:1050 dn: cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:1050 dn: cn=excepts,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:1050 dn: uid=new_account0,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:1050 dn: uid=new_account1,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:1050 dn: uid=new_account3,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:1050 dn: uid=new_account5,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:1050 dn: uid=new_account6,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:1050 dn: uid=new_account7,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:1050 dn: uid=new_account8,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:1050 dn: uid=new_account9,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:1050 dn: uid=new_account10,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:1050 dn: uid=new_account11,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:1050 dn: uid=new_account13,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:1053 ######## entryLevelRights: b'vn' INFO  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-------------------------------
INFO  lib389:acl_test.py:1064 ######## Add entry tuser ########
-------------------------------Captured log call--------------------------------
INFO  lib389:acl_test.py:1088 ######## GER rights for anonymous ######## INFO  lib389:acl_test.py:1098 dn: dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: cn=Directory Administrators,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: ou=Groups,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: ou=People,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: ou=Special Users,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: cn=Accounting Managers,ou=Groups,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: cn=HR Managers,ou=Groups,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: cn=QA Managers,ou=Groups,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: cn=PD Managers,ou=Groups,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: cn=replication_managers,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: ou=Services,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: cn=ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701,ou=Services,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: cn=ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702,ou=Services,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: uid=bind_entry,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: cn=staged user,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: cn=excepts,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: uid=new_account0,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: uid=new_account1,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: uid=new_account2,cn=staged user,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: uid=new_account3,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: uid=new_account4,cn=staged user,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: uid=new_account5,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: uid=new_account6,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: uid=new_account7,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: uid=new_account8,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: uid=new_account9,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: uid=new_account10,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: uid=new_account11,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: uid=new_account12,cn=staged user,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: uid=new_account13,cn=accounts,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: uid=new_account14,cn=staged user,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: uid=new_account15,cn=staged user,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: uid=new_account16,cn=staged user,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: uid=new_account17,cn=staged user,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: uid=new_account18,cn=staged user,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: uid=new_account19,cn=staged user,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v' INFO  lib389:acl_test.py:1098 dn: cn=tuser,dc=example,dc=com INFO  lib389:acl_test.py:1100 ######## entryLevelRights: b'v'
Passed suites/acl/acl_test.py::test_rdn_write_modrdn_anonymous 0.03
-------------------------------Captured log call--------------------------------
INFO  lib389:acl_test.py:1127 dn: INFO  lib389:acl_test.py:1129 ######## 'objectClass': [b'top'] INFO  lib389:acl_test.py:1129 ######## 'defaultnamingcontext': [b'dc=example,dc=com'] INFO  lib389:acl_test.py:1129 ######## 'dataversion': [b'020201024231809'] INFO  lib389:acl_test.py:1129 ######## 'netscapemdsuffix': [b'cn=ldap://dc=ci-vm-10-0-138-103,dc=hosted,dc=upshift,dc=rdu2,dc=redhat,dc=com:39001'] INFO  lib389:acl_test.py:1134 Exception (expected): INSUFFICIENT_ACCESS INFO  lib389:acl_test.py:1141 The entry was not renamed (expected) INFO  lib389:acl_test.py:134 Bind as cn=Directory Manager
Passed suites/acl/deladd_test.py::test_allow_delete_access_to_groupdn 0.10
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/acl/deladd_test.py::test_allow_add_access_to_anyone 0.30
No log output captured.
Passed suites/acl/deladd_test.py::test_allow_delete_access_to_anyone 0.04
No log output captured.
Passed suites/acl/deladd_test.py::test_allow_delete_access_not_to_userdn 0.06
No log output captured.
Passed suites/acl/deladd_test.py::test_allow_delete_access_not_to_group 0.07
No log output captured.
Passed suites/acl/deladd_test.py::test_allow_add_access_to_parent 0.06
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.07
No log output captured.
Passed suites/acl/enhanced_aci_modrnd_test.py::test_enhanced_aci_modrnd 0.51
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. INFO  tests.suites.acl.enhanced_aci_modrnd_test:enhanced_aci_modrnd_test.py:32 Add a container: ou=test_ou_1,dc=example,dc=com INFO  tests.suites.acl.enhanced_aci_modrnd_test:enhanced_aci_modrnd_test.py:39 Add a container: ou=test_ou_2,dc=example,dc=com INFO  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 INFO  tests.suites.acl.enhanced_aci_modrnd_test:enhanced_aci_modrnd_test.py:60 Add an ACI 'allow (all)' by cn=test_user,ou=test_ou_1,dc=example,dc=com to the ou=test_ou_1,dc=example,dc=com INFO  tests.suites.acl.enhanced_aci_modrnd_test:enhanced_aci_modrnd_test.py:64 Add an ACI 'allow (all)' by cn=test_user,ou=test_ou_1,dc=example,dc=com to the ou=test_ou_2,dc=example,dc=com
-------------------------------Captured log call--------------------------------
INFO  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 INFO  tests.suites.acl.enhanced_aci_modrnd_test:enhanced_aci_modrnd_test.py:99 User MODRDN operation from ou=test_ou_1,dc=example,dc=com to ou=test_ou_2,dc=example,dc=com INFO  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 INFO  tests.suites.acl.enhanced_aci_modrnd_test:enhanced_aci_modrnd_test.py:111 Check there is our user in ou=test_ou_2,dc=example,dc=com
Passed suites/acl/globalgroup_part2_test.py::test_undefined_in_group_eval_five 0.07
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/acl/globalgroup_part2_test.py::test_undefined_in_group_eval_six 0.06
No log output captured.
Passed suites/acl/globalgroup_part2_test.py::test_undefined_in_group_eval_seven 0.03
No log output captured.
Passed suites/acl/globalgroup_part2_test.py::test_undefined_in_group_eval_eight 0.03
No log output captured.
Passed suites/acl/globalgroup_part2_test.py::test_undefined_in_group_eval_nine 0.03
No log output captured.
Passed suites/acl/globalgroup_part2_test.py::test_undefined_in_group_eval_ten 0.05
No log output captured.
Passed suites/acl/globalgroup_part2_test.py::test_undefined_in_group_eval_eleven 0.04
No log output captured.
Passed suites/acl/globalgroup_part2_test.py::test_undefined_in_group_eval_twelve 0.03
No log output captured.
Passed suites/acl/globalgroup_part2_test.py::test_undefined_in_group_eval_fourteen 0.07
No log output captured.
Passed suites/acl/globalgroup_part2_test.py::test_undefined_in_group_eval_fifteen 0.27
No log output captured.
Passed suites/acl/globalgroup_part2_test.py::test_undefined_in_group_eval_sixteen 0.03
No log output captured.
Passed suites/acl/globalgroup_part2_test.py::test_undefined_in_group_eval_seventeen 0.02
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-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/acl/globalgroup_test.py::test_deny_group_member_all_rights_to_user 0.07
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.06
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.03
No log output captured.
Passed suites/acl/globalgroup_test.py::test_undefined_in_group_eval 0.03
No log output captured.
Passed suites/acl/globalgroup_test.py::test_undefined_in_group_eval_two 0.28
No log output captured.
Passed suites/acl/globalgroup_test.py::test_undefined_in_group_eval_three 0.02
No log output captured.
Passed suites/acl/globalgroup_test.py::test_undefined_in_group_eval_four 0.06
No log output captured.
Passed suites/acl/keywords_part2_test.py::test_access_from_certain_network_only_ip 3.86
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/acl/keywords_part2_test.py::test_connectin_from_an_unauthorized_network 0.14
No log output captured.
Passed suites/acl/keywords_part2_test.py::test_ip_keyword_test_noip_cannot 0.11
No log output captured.
Passed suites/acl/keywords_part2_test.py::test_user_can_access_the_data_at_any_time 0.09
No log output captured.
Passed suites/acl/keywords_part2_test.py::test_user_can_access_the_data_only_in_the_morning 0.13
No log output captured.
Passed suites/acl/keywords_part2_test.py::test_user_can_access_the_data_only_in_the_afternoon 0.09
No log output captured.
Passed suites/acl/keywords_part2_test.py::test_timeofday_keyword 1.19
No log output captured.
Passed suites/acl/keywords_part2_test.py::test_dayofweek_keyword_test_everyday_can_access 0.11
No log output captured.
Passed suites/acl/keywords_part2_test.py::test_dayofweek_keyword_today_can_access 0.11
No log output captured.
Passed suites/acl/keywords_part2_test.py::test_user_cannot_access_the_data_at_all 0.10
No log output captured.
Passed suites/acl/keywords_test.py::test_user_binds_with_a_password_and_can_access_the_data 0.06
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/acl/keywords_test.py::test_user_binds_with_a_bad_password_and_cannot_access_the_data 0.01
No log output captured.
Passed suites/acl/keywords_test.py::test_anonymous_user_cannot_access_the_data 0.04
No log output captured.
Passed suites/acl/keywords_test.py::test_authenticated_but_has_no_rigth_on_the_data 0.05
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.01
No log output captured.
Passed suites/acl/keywords_test.py::test_user_binds_without_any_password_and_cannot_access_the_data 0.03
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.06
No log output captured.
Passed suites/acl/keywords_test.py::test_from_an_unauthorized_network 0.04
No log output captured.
Passed suites/acl/keywords_test.py::test_user_cannot_access_the_data_when_connecting_from_an_unauthorized_network_2 0.02
No log output captured.
Passed suites/acl/keywords_test.py::test_user_cannot_access_the_data_if_not_from_a_certain_domain 0.07
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 0.12
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/acl/misc_test.py::test_more_then_40_acl_will_crash_slapd 0.41
-------------------------------Captured log setup-------------------------------
INFO  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-------------------------------
INFO  lib389:misc_test.py:65 Exception (expected): ALREADY_EXISTS
Passed suites/acl/misc_test.py::test_only_allow_some_targetattr 0.06
-------------------------------Captured log setup-------------------------------
INFO  lib389:misc_test.py:65 Exception (expected): ALREADY_EXISTS
Passed suites/acl/misc_test.py::test_only_allow_some_targetattr_two 0.60
-------------------------------Captured log setup-------------------------------
INFO  lib389:misc_test.py:65 Exception (expected): ALREADY_EXISTS
Passed suites/acl/misc_test.py::test_memberurl_needs_to_be_normalized 0.13
-------------------------------Captured log setup-------------------------------
INFO  lib389:misc_test.py:65 Exception (expected): ALREADY_EXISTS
Passed suites/acl/misc_test.py::test_greater_than_200_acls_can_be_created 4.79
-------------------------------Captured log setup-------------------------------
INFO  lib389:misc_test.py:65 Exception (expected): ALREADY_EXISTS
Passed suites/acl/misc_test.py::test_server_bahaves_properly_with_very_long_attribute_names 0.07
-------------------------------Captured log setup-------------------------------
INFO  lib389:misc_test.py:65 Exception (expected): ALREADY_EXISTS
Passed suites/acl/misc_test.py::test_do_bind_as_201_distinct_users 165.12
-------------------------------Captured log setup-------------------------------
INFO  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.83
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/acl/modify_test.py::test_allow_write_access_to_targetattr_with_multiple_attibutes 0.08
No log output captured.
Passed suites/acl/modify_test.py::test_allow_write_access_to_userdn_all 0.15
No log output captured.
Passed suites/acl/modify_test.py::test_allow_write_access_to_userdn_with_wildcards_in_dn 0.06
No log output captured.
Passed suites/acl/modify_test.py::test_allow_write_access_to_userdn_with_multiple_dns 0.48
No log output captured.
Passed suites/acl/modify_test.py::test_allow_write_access_to_target_with_wildcards 0.24
No log output captured.
Passed suites/acl/modify_test.py::test_allow_write_access_to_userdnattr 0.51
No log output captured.
Passed suites/acl/modify_test.py::test_allow_selfwrite_access_to_anyone 0.09
No log output captured.
Passed suites/acl/modify_test.py::test_uniquemember_should_also_be_the_owner 0.34
No log output captured.
Passed suites/acl/modify_test.py::test_aci_with_both_allow_and_deny 0.16
No log output captured.
Passed suites/acl/modify_test.py::test_allow_owner_to_modify_entry 0.10
No log output captured.
Passed suites/acl/modrdn_test.py::test_allow_write_privilege_to_anyone 0.03
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/acl/modrdn_test.py::test_allow_write_privilege_to_dynamic_group_with_scope_set_to_base_in_ldap_url 0.03
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.11
No log output captured.
Passed suites/acl/modrdn_test.py::test_access_aci_list_contains_any_deny_rule 0.13
No log output captured.
Passed suites/acl/modrdn_test.py::test_renaming_target_entry 0.10
No log output captured.
Passed suites/acl/repeated_ldap_add_test.py::test_repeated_ldap_add 35.18
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
------------------------------Captured stdout call------------------------------
uid=buser123,ou=BOU,dc=example,dc=com inactivated.
-------------------------------Captured log call--------------------------------
INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:186 Disabling accesslog logbuffering INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:189 Bind as {cn=Directory Manager,password} INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:192 Adding ou=BOU a bind user belongs to. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:197 Adding a bind user. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:204 Adding a test user. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:211 Deleting aci in dc=example,dc=com. INFO  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 INFO  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. INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:229 Access log path: /var/log/dirsrv/slapd-standalone1/access INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:231 Bind case 2-1. the bind user does not exist, bind should fail with error INVALID_CREDENTIALS INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:237 Exception (expected): INVALID_CREDENTIALS INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:238 Desc Invalid credentials INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:246 Cause found - 24/Oct/2020:19:23:10.764796375 -0400] conn=1 op=11 RESULT err=49 tag=97 nentries=0 wtime=0.000143162 optime=0.007920333 etime=0.008059478 - No such entry INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:249 Bind case 2-2. the bind user's suffix does not exist, bind should fail with error INVALID_CREDENTIALS INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:260 Cause found - 24/Oct/2020:19:23:12.775902935 -0400] conn=1 op=12 RESULT err=49 tag=97 nentries=0 wtime=0.000121852 optime=0.005580020 etime=0.005694688 - No suffix for bind dn found INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:263 Bind case 2-3. the bind user's password is wrong, bind should fail with error INVALID_CREDENTIALS INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:269 Exception (expected): INVALID_CREDENTIALS INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:270 Desc Invalid credentials INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:278 Cause found - 24/Oct/2020:19:23:14.814042578 -0400] conn=1 op=13 RESULT err=49 tag=97 nentries=0 wtime=0.000159174 optime=0.033005467 etime=0.033157609 - Invalid credentials INFO  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. INFO  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";) INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:284 Bind as {cn=Directory Manager,password} INFO  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. INFO  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. INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:297 Search case 1. the bind user has no rights to read the search entry, it should return no search results with <class 'ldap.SUCCESS'> INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:141 Search should return none INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:303 Search case 2-1. the search entry does not exist, the search should return no search results with SUCCESS INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:141 Search should return none INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:309 Search case 2-2. the search entry does not exist, the search should return no search results with SUCCESS INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:141 Search should return none INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:316 Add case 1. the bind user has no rights AND the adding entry exists, it should fail with INSUFFICIENT_ACCESS INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): INSUFFICIENT_ACCESS INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Insufficient access INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:322 Add case 2-1. the bind user has no rights AND the adding entry does not exist, it should fail with INSUFFICIENT_ACCESS INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): INSUFFICIENT_ACCESS INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Insufficient access INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:328 Add case 2-2. the bind user has no rights AND the adding entry does not exist, it should fail with INSUFFICIENT_ACCESS INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): INSUFFICIENT_ACCESS INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Insufficient access INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:335 Modify case 1. the bind user has no rights AND the modifying entry exists, it should fail with INSUFFICIENT_ACCESS INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): INSUFFICIENT_ACCESS INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Insufficient access INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:341 Modify case 2-1. the bind user has no rights AND the modifying entry does not exist, it should fail with INSUFFICIENT_ACCESS INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): INSUFFICIENT_ACCESS INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Insufficient access INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:347 Modify case 2-2. the bind user has no rights AND the modifying entry does not exist, it should fail with INSUFFICIENT_ACCESS INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): INSUFFICIENT_ACCESS INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Insufficient access INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:354 Modrdn case 1. the bind user has no rights AND the renaming entry exists, it should fail with INSUFFICIENT_ACCESS INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): INSUFFICIENT_ACCESS INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Insufficient access INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:360 Modrdn case 2-1. the bind user has no rights AND the renaming entry does not exist, it should fail with INSUFFICIENT_ACCESS INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): INSUFFICIENT_ACCESS INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Insufficient access INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:366 Modrdn case 2-2. the bind user has no rights AND the renaming entry does not exist, it should fail with INSUFFICIENT_ACCESS INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): INSUFFICIENT_ACCESS INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Insufficient access INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:372 Modrdn case 3. the bind user has no rights AND the node moving an entry to exists, it should fail with INSUFFICIENT_ACCESS INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): INSUFFICIENT_ACCESS INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Insufficient access INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:378 Modrdn case 4-1. the bind user has no rights AND the node moving an entry to does not, it should fail with INSUFFICIENT_ACCESS INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): INSUFFICIENT_ACCESS INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Insufficient access INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:384 Modrdn case 4-2. the bind user has no rights AND the node moving an entry to does not, it should fail with INSUFFICIENT_ACCESS INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): INSUFFICIENT_ACCESS INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Insufficient access INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:391 Delete case 1. the bind user has no rights AND the deleting entry exists, it should fail with INSUFFICIENT_ACCESS INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): INSUFFICIENT_ACCESS INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Insufficient access INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:397 Delete case 2-1. the bind user has no rights AND the deleting entry does not exist, it should fail with INSUFFICIENT_ACCESS INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): INSUFFICIENT_ACCESS INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Insufficient access INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:403 Delete case 2-2. the bind user has no rights AND the deleting entry does not exist, it should fail with INSUFFICIENT_ACCESS INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): INSUFFICIENT_ACCESS INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Insufficient access INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:407 EXTRA: Check no regressions INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:410 Bind as {cn=Directory Manager,password} INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:415 Bind as {uid=buser123,ou=BOU,dc=example,dc=com,buser123}. INFO  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 INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): NO_SUCH_OBJECT INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc No such object INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED INFO  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 INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): ALREADY_EXISTS INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc Already exists INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED INFO  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 INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): NO_SUCH_OBJECT INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc No such object INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED INFO  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 INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): NO_SUCH_OBJECT INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc No such object INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED INFO  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 INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): NO_SUCH_OBJECT INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc No such object INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED INFO  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 INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:131 Exception (expected): NO_SUCH_OBJECT INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:132 Desc No such object INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:148 PASSED INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:454 Inactivate uid=buser123,ou=BOU,dc=example,dc=com INFO  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'] INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:469 Exception (expected): UNWILLING_TO_PERFORM INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:470 Desc Server is unwilling to perform INFO  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. INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:477 Exception (expected): UNWILLING_TO_PERFORM INFO  tests.suites.acl.repeated_ldap_add_test:repeated_ldap_add_test.py:478 Desc Server is unwilling to perform INFO  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-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/acl/roledn_test.py::test_mod_seealso_positive[(HARRY_ROLE, NESTED_ROLE_TESTER)] 0.04
No log output captured.
Passed suites/acl/roledn_test.py::test_mod_seealso_positive[(MARY_ROLE, NOT_RULE_ACCESS)] 0.05
No log output captured.
Passed suites/acl/roledn_test.py::test_mod_seealso_positive[(STEVE_ROLE, OR_RULE_ACCESS)] 0.04
No log output captured.
Passed suites/acl/roledn_test.py::test_mod_seealso_positive[(HARRY_ROLE, OR_RULE_ACCESS)] 0.04
No log output captured.
Passed suites/acl/roledn_test.py::test_mod_seealso_positive[(STEVE_ROLE, ALL_ACCESS)] 0.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.30
No log output captured.
Passed suites/acl/roledn_test.py::test_mod_seealso_negative[(STEVE_ROLE, NOT_RULE_ACCESS)] 0.07
No log output captured.
Passed suites/acl/roledn_test.py::test_mod_seealso_negative[(HARRY_ROLE, NOT_RULE_ACCESS)] 0.07
No log output captured.
Passed suites/acl/roledn_test.py::test_mod_seealso_negative[(MARY_ROLE , OR_RULE_ACCESS)] 0.07
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.02
No log output captured.
Passed suites/acl/roledn_test.py::test_mod_anonseealso_negaive[OR_RULE_ACCESS] 0.02
No log output captured.
Passed suites/acl/search_real_part2_test.py::test_deny_all_access_with__target_set_on_non_leaf 1.46
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/acl/search_real_part2_test.py::test_deny_all_access_with__target_set_on_wildcard_non_leaf 1.05
No log output captured.
Passed suites/acl/search_real_part2_test.py::test_deny_all_access_with__target_set_on_wildcard_leaf 1.26
No log output captured.
Passed suites/acl/search_real_part2_test.py::test_deny_all_access_with_targetfilter_using_equality_search 0.78
No log output captured.
Passed suites/acl/search_real_part2_test.py::test_deny_all_access_with_targetfilter_using_equality_search_two 1.41
No log output captured.
Passed suites/acl/search_real_part2_test.py::test_deny_all_access_with_targetfilter_using_substring_search 1.17
No log output captured.
Passed suites/acl/search_real_part2_test.py::test_deny_all_access_with_targetfilter_using_substring_search_two 1.04
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.47
No log output captured.
Passed suites/acl/search_real_part2_test.py::test_deny_all_access_to__userdn_two 0.94
No log output captured.
Passed suites/acl/search_real_part2_test.py::test_deny_all_access_with_userdn 1.07
No log output captured.
Passed suites/acl/search_real_part2_test.py::test_deny_all_access_with_targetfilter_using_presence_search 0.16
No log output captured.
Passed suites/acl/search_real_part3_test.py::test_deny_search_access_to_userdn_with_ldap_url 0.87
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/acl/search_real_part3_test.py::test_deny_search_access_to_userdn_with_ldap_url_two 1.00
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.42
No log output captured.
Passed suites/acl/search_real_part3_test.py::test_deny_read_access_to_a_dynamic_group 0.95
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.76
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.63
No log output captured.
Passed suites/acl/search_real_part3_test.py::test_deny_read_access_to_dynamic_group_two 0.85
No log output captured.
Passed suites/acl/search_real_part3_test.py::test_deny_access_to_group_should_deny_access_to_all_uniquemember 0.86
No log output captured.
Passed suites/acl/search_real_part3_test.py::test_entry_with_lots_100_attributes 10.63
No log output captured.
Passed suites/acl/search_real_part3_test.py::test_groupdnattr_value_is_another_group 0.21
No log output captured.
Passed suites/acl/search_real_test.py::test_deny_all_access_with_target_set 0.97
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/acl/search_real_test.py::test_deny_all_access_to_a_target_with_wild_card 0.94
No log output captured.
Passed suites/acl/search_real_test.py::test_deny_all_access_without_a_target_set 1.08
No log output captured.
Passed suites/acl/search_real_test.py::test_deny_read_search_and_compare_access_with_target_and_targetattr_set 0.79
No log output captured.
Passed suites/acl/search_real_test.py::test_deny_read_access_to_multiple_groupdns 1.22
No log output captured.
Passed suites/acl/search_real_test.py::test_deny_all_access_to_userdnattr 1.00
No log output captured.
Passed suites/acl/search_real_test.py::test_deny_all_access_with__target_set 1.22
No log output captured.
Passed suites/acl/search_real_test.py::test_deny_all_access_with__targetattr_set 1.48
No log output captured.
Passed suites/acl/search_real_test.py::test_deny_all_access_with_targetattr_set 0.87
No log output captured.
Passed suites/acl/selfdn_permissions_test.py::test_selfdn_permission_add 0.54
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389:selfdn_permissions_test.py:58 Add OCticket47653 that allows 'member' attribute INFO  lib389:selfdn_permissions_test.py:63 Add cn=bind_entry, dc=example,dc=com
-------------------------------Captured log call--------------------------------
INFO  lib389:selfdn_permissions_test.py:106 ######################### ADD ###################### INFO  lib389:selfdn_permissions_test.py:109 Bind as cn=bind_entry, dc=example,dc=com INFO  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 INFO  lib389:selfdn_permissions_test.py:143 Exception (expected): INSUFFICIENT_ACCESS INFO  lib389:selfdn_permissions_test.py:147 Bind as cn=Directory Manager and add the ADD SELFDN aci INFO  lib389:selfdn_permissions_test.py:159 Bind as cn=bind_entry, dc=example,dc=com INFO  lib389:selfdn_permissions_test.py:164 Try to add Add cn=test_entry, dc=example,dc=com (member is missing) INFO  lib389:selfdn_permissions_test.py:172 Exception (expected): INSUFFICIENT_ACCESS INFO  lib389:selfdn_permissions_test.py:178 Try to add Add cn=test_entry, dc=example,dc=com (with several member values) INFO  lib389:selfdn_permissions_test.py:181 Exception (expected): INSUFFICIENT_ACCESS INFO  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.35
-------------------------------Captured log call--------------------------------
INFO  lib389:selfdn_permissions_test.py:205 ######################### SEARCH ###################### INFO  lib389:selfdn_permissions_test.py:207 Bind as cn=bind_entry, dc=example,dc=com INFO  lib389:selfdn_permissions_test.py:211 Try to search cn=test_entry, dc=example,dc=com (aci is missing) INFO  lib389:selfdn_permissions_test.py:216 Bind as cn=Directory Manager and add the READ/SEARCH SELFDN aci INFO  lib389:selfdn_permissions_test.py:229 Bind as cn=bind_entry, dc=example,dc=com INFO  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.57
-------------------------------Captured log call--------------------------------
INFO  lib389:selfdn_permissions_test.py:256 Bind as cn=bind_entry, dc=example,dc=com INFO  lib389:selfdn_permissions_test.py:259 ######################### MODIFY ###################### INFO  lib389:selfdn_permissions_test.py:263 Try to modify cn=test_entry, dc=example,dc=com (aci is missing) INFO  lib389:selfdn_permissions_test.py:267 Exception (expected): INSUFFICIENT_ACCESS INFO  lib389:selfdn_permissions_test.py:271 Bind as cn=Directory Manager and add the WRITE SELFDN aci INFO  lib389:selfdn_permissions_test.py:284 Bind as cn=bind_entry, dc=example,dc=com INFO  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.36
-------------------------------Captured log call--------------------------------
INFO  lib389:selfdn_permissions_test.py:314 ######################### DELETE ###################### INFO  lib389:selfdn_permissions_test.py:317 Bind as cn=bind_entry, dc=example,dc=com INFO  lib389:selfdn_permissions_test.py:322 Try to delete cn=test_entry, dc=example,dc=com (aci is missing) INFO  lib389:selfdn_permissions_test.py:325 Exception (expected): INSUFFICIENT_ACCESS INFO  lib389:selfdn_permissions_test.py:329 Bind as cn=Directory Manager and add the READ/SEARCH SELFDN aci INFO  lib389:selfdn_permissions_test.py:341 Bind as cn=bind_entry, dc=example,dc=com INFO  lib389:selfdn_permissions_test.py:345 Try to delete cn=test_entry, dc=example,dc=com should be successful
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_1] 0.03
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_2] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_3] 0.17
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_4] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_5] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_6] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_7] 0.03
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_8] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_9] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_10] 0.16
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_11] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_12] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_13] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_14] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_15] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_16] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_17] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_19] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_21] 0.03
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_22] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_targattrfilters_23] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_Missing_acl_mispel] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_Missing_acl_string] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_Wrong_version_string] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_Missing_version_string] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_Authenticate_statement] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_Multiple_targets] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_Target_set_to_self] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_target_set_with_ldap_instead_of_ldap] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_target_set_with_more_than_three] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_target_set_with_less_than_three] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_bind_rule_set_with_less_than_three] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_Use_semicolon_instead_of_comma_in_permission] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_Use_double_equal_instead_of_equal_in_the_target] 0.03
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.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_donot_cote_the_name_of_the_aci] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_extra_parentheses_case_1] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_extra_parentheses_case_2] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_extra_parentheses_case_3] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_no_semicolon_at_the_end_of_the_aci] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_a_character_different_of_a_semicolon_at_the_end_of_the_aci] 0.02
No log output captured.
Passed suites/acl/syntax_test.py::test_aci_invalid_syntax[test_bad_filter] 0.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.02
No log output captured.
Passed suites/acl/syntax_test.py::test_target_set_above_the_entry_test 0.02
No log output captured.
Passed suites/acl/userattr_test.py::test_mod_see_also_positive[(CAN,ROLEDNACCESS)] 0.04
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/acl/userattr_test.py::test_mod_see_also_positive[(CAN,USERDNACCESS)] 0.02
No log output captured.
Passed suites/acl/userattr_test.py::test_mod_see_also_positive[(CAN,GROUPDNACCESS)] 0.01
No log output captured.
Passed suites/acl/userattr_test.py::test_mod_see_also_positive[(CAN,LDAPURLACCESS)] 0.27
No log output captured.
Passed suites/acl/userattr_test.py::test_mod_see_also_positive[(CAN,ATTRNAMEACCESS)] 0.02
No log output captured.
Passed suites/acl/userattr_test.py::test_mod_see_also_positive[(LEVEL_0, OU_2)] 0.05
No log output captured.
Passed suites/acl/userattr_test.py::test_mod_see_also_positive[(LEVEL_1,ANCESTORS)] 0.04
No log output captured.
Passed suites/acl/userattr_test.py::test_mod_see_also_positive[(LEVEL_2,GRANDPARENTS)] 0.04
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.02
No log output captured.
Passed suites/acl/userattr_test.py::test_mod_see_also_positive[(LEVEL_4,GRANDPARENTS)] 0.02
No log output captured.
Passed suites/acl/userattr_test.py::test_mod_see_also_positive[(LEVEL_4,PARENTS)] 0.02
No log output captured.
Passed suites/acl/userattr_test.py::test_mod_see_also_positive[(LEVEL_4,CHILDREN)] 0.02
No log output captured.
Passed suites/acl/userattr_test.py::test_mod_see_also_negative[(CANNOT,ROLEDNACCESS)] 0.06
No log output captured.
Passed suites/acl/userattr_test.py::test_mod_see_also_negative[(CANNOT,USERDNACCESS)] 0.13
No log output captured.
Passed suites/acl/userattr_test.py::test_mod_see_also_negative[(CANNOT,GROUPDNACCESS)] 0.03
No log output captured.
Passed suites/acl/userattr_test.py::test_mod_see_also_negative[(CANNOT,LDAPURLACCESS)] 0.03
No log output captured.
Passed suites/acl/userattr_test.py::test_mod_see_also_negative[(CANNOT,ATTRNAMEACCESS)] 0.03
No log output captured.
Passed suites/acl/userattr_test.py::test_mod_see_also_negative[(LEVEL_0, ANCESTORS)] 0.06
No log output captured.
Passed suites/acl/userattr_test.py::test_mod_see_also_negative[(LEVEL_0,GRANDPARENTS)] 0.03
No log output captured.
Passed suites/acl/userattr_test.py::test_mod_see_also_negative[(LEVEL_0,PARENTS)] 0.03
No log output captured.
Passed suites/acl/userattr_test.py::test_mod_see_also_negative[(LEVEL_0,CHILDREN)] 0.03
No log output captured.
Passed suites/acl/userattr_test.py::test_mod_see_also_negative[(LEVEL_2,PARENTS)] 0.07
No log output captured.
Passed suites/acl/userattr_test.py::test_mod_see_also_negative[(LEVEL_4,GRANDSONS)] 0.05
No log output captured.
Passed suites/acl/userattr_test.py::test_last_three[uid=Ananda Borah,ou=Accounting,dc=example,dc=com-uid=USERDNACCESS,ou=Accounting,dc=example,dc=com] 0.06
No log output captured.
Passed suites/acl/userattr_test.py::test_last_three[uid=Ananda Borah,ou=Accounting,dc=example,dc=com-uid=ROLEDNACCESS,ou=Accounting,dc=example,dc=com] 0.03
No log output captured.
Passed suites/acl/userattr_test.py::test_last_three[uid=Ananda Borah,ou=Accounting,dc=example,dc=com-uid=GROUPDNACCESS,ou=Accounting,dc=example,dc=com] 0.03
No log output captured.
Passed suites/acl/valueacl_part2_test.py::test_we_can_search_as_expected 0.26
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/acl/valueacl_part2_test.py::test_we_can_mod_title_as_expected 0.06
No log output captured.
Passed suites/acl/valueacl_part2_test.py::test_modify_with_multiple_filters 0.06
No log output captured.
Passed suites/acl/valueacl_part2_test.py::test_denied_by_multiple_filters 0.07
No log output captured.
Passed suites/acl/valueacl_part2_test.py::test_allowed_add_one_attribute 0.05
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.05
No log output captured.
Passed suites/acl/valueacl_part2_test.py::test_on_modrdn_allow 0.30
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.08
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/acl/valueacl_test.py::test_donot_allow_write_access_to_title_if_value_is_not_architect 0.07
No log output captured.
Passed suites/acl/valueacl_test.py::test_delete_an_attribute_value_we_are_allowed_to_delete 0.30
No log output captured.
Passed suites/acl/valueacl_test.py::test_delete_an_attribute_value_we_are_not_allowed_to_deleted 0.06
No log output captured.
Passed suites/acl/valueacl_test.py::test_allow_modify_replace 0.08
No log output captured.
Passed suites/acl/valueacl_test.py::test_allow_modify_delete 0.09
No log output captured.
Passed suites/acl/valueacl_test.py::test_replace_an_attribute_if_we_lack 0.17
No log output captured.
Passed suites/acl/valueacl_test.py::test_remove_an_attribute_if_we_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_donot_have_del_rights_to_all_attr_value 0.07
No log output captured.
Passed suites/acl/valueacl_test.py::test_remove_an_attribute_if_we_have_del_rights_to_all_attr_values 0.06
No log output captured.
Passed suites/acl/valueacl_test.py::test_cantnot_delete_an_entry_with_attribute_values_we_are_not_allowed_delete 0.08
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.06
No log output captured.
Passed suites/acl/valueacl_test.py::test_allow_title 0.07
No log output captured.
Passed suites/acl/valueacl_test.py::test_allow_to_modify 0.06
No log output captured.
Passed suites/acl/valueacl_test.py::test_selfwrite_does_not_confer_write_on_a_targattrfilters_atribute 0.06
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.08
No log output captured.
Passed suites/acl/valueacl_test.py::test_targattrfilters_and_search_permissions_and_that_ldapmodify_works_as_expected 0.04
No log output captured.
Passed suites/acl/valueacl_test.py::test_targattrfilters_and_search_permissions_and_that_ldapmodify_works_as_expected_two 0.02
No log output captured.
Passed suites/attr_encryption/attr_encryption_test.py::test_basic 5.37
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:35 Enable TLS for attribute encryption INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:38 Enables attribute encryption INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:42 Enables attribute encryption for employeeNumber and telephoneNumber INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:46 Add a test user with encrypted attributes
-------------------------------Captured log call--------------------------------
INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:81 Restart the server INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:87 Extracting values of cn from the list of objects in encrypt_attrs INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:88 And appending the cn values in a list INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:93 Check employeenumber encryption is enabled INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:96 Check telephoneNumber encryption is enabled INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:99 Check that encrypted attribute is present for user i.e. telephonenumber
Passed suites/attr_encryption/attr_encryption_test.py::test_export_import_ciphertext 13.59
------------------------------Captured stderr call------------------------------
ldiffile: /var/lib/dirsrv/slapd-standalone1/ldif/export_ciphertext.ldif
-------------------------------Captured log call--------------------------------
INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:127 Export data as ciphertext INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:138 Check that the attribute is present in the exported file INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:139 Check that the encrypted value of attribute is not present in the exported file INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:145 Delete the test user entry with encrypted data INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:148 Import data as ciphertext, which was exported previously INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:159 Check that the data with encrypted attribute is imported properly
Passed suites/attr_encryption/attr_encryption_test.py::test_export_import_plaintext 15.91
------------------------------Captured stderr call------------------------------
[24/Oct/2020:19:26:45.610591669 -0400] - WARN - Security Initialization - /tmp is not a private namespace. pem files not exported there [24/Oct/2020:19:26:45.620441908 -0400] - INFO - slapd_extract_cert - CA CERT NAME: Self-Signed-CA [24/Oct/2020:19:26:45.623400918 -0400] - ERR - slapd_extract_cert - Unable to open "/tmp/slapd-standalone1/Self-Signed-CA.pem" for writing (-5950, 2). [24/Oct/2020:19:26:45.626760783 -0400] - WARN - Security Initialization - SSL alert: Sending pin request to SVRCore. You may need to run systemd-tty-ask-password-agent to provide the password. [24/Oct/2020:19:26:45.829978805 -0400] - INFO - slapd_extract_cert - SERVER CERT NAME: Server-Cert [24/Oct/2020:19:26:45.835764864 -0400] - WARN - Security Initialization - /tmp is not a private namespace. pem files not exported there [24/Oct/2020:19:26:45.868486149 -0400] - WARN - Security Initialization - /tmp is not a private namespace. pem files not exported there ldiffile: /var/lib/dirsrv/slapd-standalone1/ldif/export_plaintext.ldif [24/Oct/2020:19:26:52.871921569 -0400] - WARN - Security Initialization - /tmp is not a private namespace. pem files not exported there [24/Oct/2020:19:26:52.876695026 -0400] - INFO - slapd_extract_cert - CA CERT NAME: Self-Signed-CA [24/Oct/2020:19:26:52.880218365 -0400] - ERR - slapd_extract_cert - Unable to open "/tmp/slapd-standalone1/Self-Signed-CA.pem" for writing (-5950, 2). [24/Oct/2020:19:26:52.883759729 -0400] - WARN - Security Initialization - SSL alert: Sending pin request to SVRCore. You may need to run systemd-tty-ask-password-agent to provide the password. [24/Oct/2020:19:26:53.088610103 -0400] - INFO - slapd_extract_cert - SERVER CERT NAME: Server-Cert [24/Oct/2020:19:26:53.095531853 -0400] - WARN - Security Initialization - /tmp is not a private namespace. pem files not exported there [24/Oct/2020:19:26:53.099437934 -0400] - WARN - Security Initialization - /tmp is not a private namespace. pem files not exported there
-------------------------------Captured log call--------------------------------
INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:189 Export data as plain text INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:200 Check that the attribute is present in the exported file INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:201 Check that the plain text value of the encrypted attribute is present in the exported file INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:205 Delete the test user entry with encrypted data INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:208 Import data as plain text, which was exported previously INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:219 Check that the attribute is imported properly
Passed suites/attr_encryption/attr_encryption_test.py::test_attr_encryption_unindexed 5.89
------------------------------Captured stderr call------------------------------
ldiffile: /var/lib/dirsrv/slapd-standalone1/ldif/emp_num_ciphertext.ldif
-------------------------------Captured log call--------------------------------
INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:242 Export data as cipher text INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:253 Check that the attribute is present in the exported file INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:254 Check that the encrypted value of attribute is not present in the exported file
Passed suites/attr_encryption/attr_encryption_test.py::test_attr_encryption_multiple_backends 8.62
------------------------------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--------------------------------
INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:287 Add two test backends INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:307 Enables attribute encryption for telephoneNumber in test_backend1 INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:312 Enables attribute encryption for employeeNumber in test_backend2 INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:317 Add a test user with encrypted attributes in both backends INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:326 Export data as ciphertext from both backends INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:343 Check that the attribute is present in the exported file in db1 INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:344 Check that the encrypted value of attribute is not present in the exported file in db1 INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:350 Check that the attribute is present in the exported file in db2 INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:351 Check that the encrypted value of attribute is not present in the exported file in db2 INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:357 Delete test backends
Passed suites/attr_encryption/attr_encryption_test.py::test_attr_encryption_backends 10.24
------------------------------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--------------------------------
INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:386 Add two test backends INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:405 Enables attribute encryption for telephoneNumber in test_backend1 INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:410 Add a test user with telephoneNumber in both backends INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:419 Export data as ciphertext from both backends INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:436 Check that the attribute is present in the exported file in db1 INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:437 Check that the encrypted value of attribute is not present in the exported file in db1 INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:443 Check that the attribute is present in the exported file in db2 INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:444 Check that the value of attribute is also present in the exported file in db2 INFO  tests.suites.attr_encryption.attr_encryption_test:attr_encryption_test.py:450 Delete test backends
Passed suites/automember_plugin/automember_mod_test.py::test_mods 11.32
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.automember_plugin.automember_mod_test:automember_mod_test.py:135 Test PASSED
Passed suites/automember_plugin/automember_test.py::test_automemberscope 0.01
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/automember_plugin/automember_test.py::test_automemberfilter 0.02
No log output captured.
Passed suites/automember_plugin/automember_test.py::test_adduser 0.07
No log output captured.
Passed suites/automember_plugin/automember_test.py::test_delete_default_group 4.84
No log output captured.
Passed suites/automember_plugin/automember_test.py::test_no_default_group 4.13
No log output captured.
Passed suites/automember_plugin/automember_test.py::test_delete_target_group 5.09
No log output captured.
Passed suites/automember_plugin/basic_test.py::test_disable_the_plug_in 0.28
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology.
Passed suites/automember_plugin/basic_test.py::test_custom_config_area 0.03
No log output captured.
Passed suites/automember_plugin/basic_test.py::test_ability_to_control_behavior_of_modifiers_name 9.12
No log output captured.
Passed suites/automember_plugin/basic_test.py::test_posixaccount_objectclass_automemberdefaultgroup 0.28
No log output captured.
Passed suites/automember_plugin/basic_test.py::test_duplicated_member_attributes_added_when_the_entry_is_re_created 0.12
No log output captured.
Passed suites/automember_plugin/basic_test.py::test_multi_valued_automemberdefaultgroup_for_hostgroups 0.09
No log output captured.
Passed suites/automember_plugin/basic_test.py::test_plugin_creates_member_attributes_of_the_automemberdefaultgroup 0.09
No log output captured.
Passed suites/automember_plugin/basic_test.py::test_multi_valued_automemberdefaultgroup_with_uniquemember 8.63
No log output captured.
Passed suites/automember_plugin/basic_test.py::test_invalid_automembergroupingattr_member 0.29
No log output captured.
Passed suites/automember_plugin/basic_test.py::test_valid_and_invalid_automembergroupingattr 0.17
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.07
No log output captured.
Passed suites/automember_plugin/basic_test.py::test_matching_gid_role_inclusive_regular_expression[autoMembers_21-1161-1162-Contractor-1162-1163-Contractors] 0.07
No log output captured.
Passed suites/automember_plugin/basic_test.py::test_matching_gid_role_inclusive_regular_expression[autoMembers_20-1188-1189-CEO-1191-1192-Contractors] 0.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.05
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.07
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.08
No log output captured.
Passed suites/automember_plugin/basic_test.py::test_gid_and_role_inclusive_exclusive_regular_expression[autoMembers_23-2788-2789-Contractor-Contractors-SuffDef1-5] 0.09
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.07
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.11
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.07
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.07
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.10
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.09
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.07
No log output captured.
Passed suites/automember_plugin/basic_test.py::test_managers_inclusive_regex_rule[autoMembers_27-595-690-ContractHR-Managers-Contractors] 0.07
No log output captured.
Passed suites/automember_plugin/basic_test.py::test_managers_inclusive_regex_rule[autoMembers_29-8195-2753-Employee-Contractors-Managers] 0.06
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.07
No log output captured.
Passed suites/automember_plugin/basic_test.py::test_reject_invalid_config_and_we_donot_deadlock_the_server 8.54
No log output captured.
Passed suites/automember_plugin/basic_test.py::test_automemtask_re_build_task 11.16
No log output captured.
Passed suites/automember_plugin/basic_test.py::test_automemtask_export_task 9.61
-------------------------------Captured log call--------------------------------
INFO  lib389:tasks.py:1039 Automember Export Updates task (task-10242020_192926) completed successfully
Passed suites/automember_plugin/basic_test.py::test_automemtask_mapping 2.38
-------------------------------Captured log call--------------------------------
INFO  lib389:tasks.py:1087 Automember Map Updates task (task-10242020_192929) completed successfully
Passed suites/automember_plugin/basic_test.py::test_automemtask_re_build 7.66
No log output captured.
Passed suites/automember_plugin/basic_test.py::test_automemtask_export 13.68
-------------------------------Captured log call--------------------------------
INFO  lib389:tasks.py:1039 Automember Export Updates task (task-10242020_192948) completed successfully
Passed suites/automember_plugin/basic_test.py::test_automemtask_run_re_build 17.87
No log output captured.
Passed suites/automember_plugin/basic_test.py::test_automemtask_run_export 15.17
-------------------------------Captured log call--------------------------------
INFO  lib389:tasks.py:1039 Automember Export Updates task (task-10242020_193025) completed successfully
Passed suites/automember_plugin/configuration_test.py::test_configuration 4.63
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/backups/backup_test.py::test_missing_backend 5.16
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/basic/basic_test.py::test_basic_ops 0.40
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/basic/basic_test.py::test_basic_import_export 55.25
------------------------------Captured stderr call------------------------------
ldiffile: /var/lib/dirsrv/slapd-standalone1/ldif/export.ldif
Passed suites/basic/basic_test.py::test_basic_backup 9.70
-------------------------------Captured log call--------------------------------
INFO  lib389:tasks.py:619 Backup task backup_10242020_193155 completed successfully INFO  lib389:tasks.py:673 Restore task restore_10242020_193157 completed successfully
Passed suites/basic/basic_test.py::test_basic_db2index 5.89
------------------------------Captured stderr call------------------------------
[24/Oct/2020:19:32:07.704503268 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [24/Oct/2020:19:32:07.712363400 -0400] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7580528640, process usage 22994944 [24/Oct/2020:19:32:07.716064710 -0400] - INFO - check_and_set_import_cache - Import allocates 2961144KB import cache. [24/Oct/2020:19:32:07.720215055 -0400] - INFO - bdb_copy_directory - Backing up file 0 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/givenName.db) [24/Oct/2020:19:32:07.723679832 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/givenName.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/givenName.db [24/Oct/2020:19:32:07.727224509 -0400] - INFO - bdb_copy_directory - Backing up file 1 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/aci.db) [24/Oct/2020:19:32:07.729929179 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/aci.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/aci.db [24/Oct/2020:19:32:07.733077870 -0400] - INFO - bdb_copy_directory - Backing up file 2 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/sn.db) [24/Oct/2020:19:32:07.736062296 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/sn.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/sn.db [24/Oct/2020:19:32:07.741091068 -0400] - INFO - bdb_copy_directory - Backing up file 3 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/numsubordinates.db) [24/Oct/2020:19:32:07.744421974 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/numsubordinates.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/numsubordinates.db [24/Oct/2020:19:32:07.747627921 -0400] - INFO - bdb_copy_directory - Backing up file 4 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/entryusn.db) [24/Oct/2020:19:32:07.750536780 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryusn.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/entryusn.db [24/Oct/2020:19:32:07.753538983 -0400] - INFO - bdb_copy_directory - Backing up file 5 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/nsuniqueid.db) [24/Oct/2020:19:32:07.756342912 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/nsuniqueid.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/nsuniqueid.db [24/Oct/2020:19:32:07.759047369 -0400] - INFO - bdb_copy_directory - Backing up file 6 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/ancestorid.db) [24/Oct/2020:19:32:07.761681502 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/ancestorid.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/ancestorid.db [24/Oct/2020:19:32:07.765927693 -0400] - INFO - bdb_copy_directory - Backing up file 7 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/parentid.db) [24/Oct/2020:19:32:07.770604755 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/parentid.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/parentid.db [24/Oct/2020:19:32:07.774213374 -0400] - INFO - bdb_copy_directory - Backing up file 8 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/mail.db) [24/Oct/2020:19:32:07.777809255 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/mail.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/mail.db [24/Oct/2020:19:32:07.780555405 -0400] - INFO - bdb_copy_directory - Backing up file 9 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/telephoneNumber.db) [24/Oct/2020:19:32:07.783543673 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/telephoneNumber.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/telephoneNumber.db [24/Oct/2020:19:32:07.786533568 -0400] - INFO - bdb_copy_directory - Backing up file 10 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/cn.db) [24/Oct/2020:19:32:07.789216414 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/cn.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/cn.db [24/Oct/2020:19:32:07.791991195 -0400] - INFO - bdb_copy_directory - Backing up file 11 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/DBVERSION) [24/Oct/2020:19:32:07.794491666 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/DBVERSION to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/DBVERSION [24/Oct/2020:19:32:07.797128121 -0400] - INFO - bdb_copy_directory - Backing up file 12 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/uid.db) [24/Oct/2020:19:32:07.800252052 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/uid.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/uid.db [24/Oct/2020:19:32:07.803451309 -0400] - INFO - bdb_copy_directory - Backing up file 13 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/entryrdn.db) [24/Oct/2020:19:32:07.805997828 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryrdn.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/entryrdn.db [24/Oct/2020:19:32:07.809316088 -0400] - INFO - bdb_copy_directory - Backing up file 14 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/uniquemember.db) [24/Oct/2020:19:32:07.812195924 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/uniquemember.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/uniquemember.db [24/Oct/2020:19:32:07.815229243 -0400] - INFO - bdb_copy_directory - Backing up file 15 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/id2entry.db) [24/Oct/2020:19:32:07.817950329 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/id2entry.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/id2entry.db [24/Oct/2020:19:32:07.821265563 -0400] - INFO - bdb_copy_directory - Backing up file 16 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/objectclass.db) [24/Oct/2020:19:32:07.824198869 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/objectclass.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/userRoot/objectclass.db [24/Oct/2020:19:32:07.827765640 -0400] - INFO - upgradedb_core - userRoot: Start upgradedb. [24/Oct/2020:19:32:07.831179823 -0400] - INFO - bdb_instance_start - Import is running with nsslapd-db-private-import-mem on; No other process is allowed to access the database [24/Oct/2020:19:32:07.833944058 -0400] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7579807744, process usage 23904256 [24/Oct/2020:19:32:07.838225460 -0400] - INFO - check_and_set_import_cache - Import allocates 2960862KB import cache. [24/Oct/2020:19:32:08.224182711 -0400] - INFO - bdb_import_main - reindex userRoot: Index buffering enabled with bucket size 100 [24/Oct/2020:19:32:08.929981410 -0400] - INFO - import_monitor_threads - reindex userRoot: Workers finished; cleaning up... [24/Oct/2020:19:32:09.133632463 -0400] - INFO - import_monitor_threads - reindex userRoot: Workers cleaned up. [24/Oct/2020:19:32:09.137015544 -0400] - INFO - bdb_import_main - reindex userRoot: Cleaning up producer thread... [24/Oct/2020:19:32:09.139624849 -0400] - INFO - bdb_import_main - reindex userRoot: Indexing complete. Post-processing... [24/Oct/2020:19:32:09.143340664 -0400] - INFO - bdb_import_main - reindex userRoot: Generating numsubordinates (this may take several minutes to complete)... [24/Oct/2020:19:32:09.146749300 -0400] - INFO - bdb_import_main - reindex userRoot: Generating numSubordinates complete. [24/Oct/2020:19:32:09.150172785 -0400] - INFO - bdb_get_nonleaf_ids - reindex userRoot: Gathering ancestorid non-leaf IDs... [24/Oct/2020:19:32:09.153403958 -0400] - INFO - bdb_get_nonleaf_ids - reindex userRoot: Finished gathering ancestorid non-leaf IDs. [24/Oct/2020:19:32:09.156397058 -0400] - INFO - ldbm_get_nonleaf_ids - reindex userRoot: Starting sort of ancestorid non-leaf IDs... [24/Oct/2020:19:32:09.159205168 -0400] - INFO - ldbm_get_nonleaf_ids - reindex userRoot: Finished sort of ancestorid non-leaf IDs. [24/Oct/2020:19:32:09.165932130 -0400] - INFO - bdb_ancestorid_new_idl_create_index - reindex userRoot: Creating ancestorid index (new idl)... [24/Oct/2020:19:32:09.169773150 -0400] - INFO - bdb_ancestorid_new_idl_create_index - reindex userRoot: Created ancestorid index (new idl). [24/Oct/2020:19:32:09.173442632 -0400] - INFO - bdb_import_main - reindex userRoot: Flushing caches... [24/Oct/2020:19:32:09.176655060 -0400] - INFO - bdb_import_main - reindex userRoot: Closing files... [24/Oct/2020:19:32:09.298552426 -0400] - INFO - bdb_import_main - reindex userRoot: Reindexing complete. Processed 160 entries in 1 seconds. (160.00 entries/sec) [24/Oct/2020:19:32:09.302848697 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/log.0000000001 to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/log.0000000001 [24/Oct/2020:19:32:09.317380831 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/DBVERSION to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T19:32:07.564131/DBVERSION [24/Oct/2020:19:32:09.320675963 -0400] - INFO - bdb_pre_close - All database threads now stopped [24/Oct/2020:19:32:09.497167319 -0400] - INFO - slapd_exemode_db2index - Backend Instance: userRoot [24/Oct/2020:19:32:09.505409746 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [24/Oct/2020:19:32:09.513096312 -0400] - INFO - bdb_instance_start - Import is running with nsslapd-db-private-import-mem on; No other process is allowed to access the database [24/Oct/2020:19:32:09.516249084 -0400] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7583485952, process usage 22790144 [24/Oct/2020:19:32:09.519510610 -0400] - INFO - check_and_set_import_cache - Import allocates 2962299KB import cache. [24/Oct/2020:19:32:09.663712359 -0400] - INFO - bdb_db2index - userRoot: Indexing attribute: uid [24/Oct/2020:19:32:09.667221524 -0400] - ERR - libdb - BDB1566 txn_checkpoint interface requires an environment configured for the transaction subsystem [24/Oct/2020:19:32:09.669891988 -0400] - ERR - bdb_force_checkpoint - Checkpoint FAILED, error Invalid argument (22) [24/Oct/2020:19:32:09.682077330 -0400] - INFO - bdb_db2index - userRoot: Finished indexing. [24/Oct/2020:19:32:09.709657586 -0400] - INFO - bdb_pre_close - All database threads now stopped
Passed suites/basic/basic_test.py::test_basic_acl 0.29
No log output captured.
Passed suites/basic/basic_test.py::test_basic_searches 0.34
No log output captured.
Passed suites/basic/basic_test.py::test_search_req_attrs[attrs0-cn-False] 0.00
No log output captured.
Passed suites/basic/basic_test.py::test_search_req_attrs[attrs1-cn-True] 0.00
No log output captured.
Passed suites/basic/basic_test.py::test_search_req_attrs[attrs2-nsUniqueId-True] 0.00
No log output captured.
Passed suites/basic/basic_test.py::test_search_req_attrs[attrs3-cn-True] 0.01
No log output captured.
Passed suites/basic/basic_test.py::test_search_req_attrs[attrs4-cn-True] 0.00
No log output captured.
Passed suites/basic/basic_test.py::test_basic_referrals 3.34
No log output captured.
Passed suites/basic/basic_test.py::test_basic_systemctl 12.23
No log output captured.
Passed suites/basic/basic_test.py::test_basic_ldapagent 5.02
No log output captured.
Passed suites/basic/basic_test.py::test_basic_dse_survives_kill9 11.43
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.02
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.00
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.00
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.18
No log output captured.
Passed suites/basic/basic_test.py::test_connection_buffer_size 0.02
No log output captured.
Passed suites/basic/basic_test.py::test_critical_msg_on_empty_range_idl 6.60
No log output captured.
Passed suites/basic/basic_test.py::test_ldbm_modification_audit_log 13.02
No log output captured.
Passed suites/basic/basic_test.py::test_dscreate 16.76
------------------------------Captured stdout call------------------------------
Starting installation... Completed installation for test_dscreate
Passed suites/basic/basic_test.py::test_dscreate_ldapi 0.00
-----------------------------Captured stdout setup------------------------------
Starting installation... Completed installation for test-longname-deadbeef-deadbeef-deadbeef-deadbeef-deadbeef
-------------------------------Captured log call--------------------------------
DEBUG  RootDSE:_mapped_object.py:635 get_attr_vals('supportedControl')
Passed suites/basic/basic_test.py::test_dscreate_multiple_dashes_name 10.95
-----------------------------Captured stdout setup------------------------------
Starting installation... Completed installation for test-longname-deadbeef-deadbeef-deadbeef-deadbeef-deadbeef
Passed suites/basic/basic_test.py::test_dscreate_with_different_rdn[c=uk] 16.07
------------------------------Captured stdout call------------------------------
Starting installation... Completed installation for test_different_rdn
Passed suites/basic/basic_test.py::test_dscreate_with_different_rdn[cn=test_user] 16.75
-----------------------------Captured stdout setup------------------------------
Removing instance ... Completed instance removal
------------------------------Captured stdout call------------------------------
Starting installation... Completed installation for test_different_rdn
Passed suites/basic/basic_test.py::test_dscreate_with_different_rdn[dc=example,dc=com] 17.15
-----------------------------Captured stdout setup------------------------------
Removing instance ... Completed instance removal
------------------------------Captured stdout call------------------------------
Starting installation... Completed installation for test_different_rdn
Passed suites/basic/basic_test.py::test_dscreate_with_different_rdn[o=south] 15.57
-----------------------------Captured stdout setup------------------------------
Removing instance ... Completed instance removal
------------------------------Captured stdout call------------------------------
Starting installation... Completed installation for test_different_rdn
Passed suites/basic/basic_test.py::test_dscreate_with_different_rdn[ou=sales] 16.70
-----------------------------Captured stdout setup------------------------------
Removing instance ... Completed instance removal
------------------------------Captured stdout call------------------------------
Starting installation... Completed installation for test_different_rdn
Passed suites/basic/basic_test.py::test_dscreate_with_different_rdn[wrong=some_value] 15.36
-----------------------------Captured stdout setup------------------------------
Removing instance ... Completed instance removal
------------------------------Captured stdout call------------------------------
Starting installation... Error: Instance creation failed! Suffix RDN 'wrong' in 'wrong=some_value' is not supported. Supported RDN's are: 'c', 'cn', 'dc', 'o', and 'ou'
-------------------------------Captured log call--------------------------------
CRITICAL tests.suites.basic.basic_test:basic_test.py:1474 dscreate failed! Error (1) None
Passed suites/betxns/betxn_test.py::test_betxt_7bit 5.55
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.betxns.betxn_test:betxn_test.py:52 Running test_betxt_7bit... INFO  tests.suites.betxns.betxn_test:betxn_test.py:78 test_betxt_7bit: PASSED
Passed suites/betxns/betxn_test.py::test_betxn_attr_uniqueness 3.58
-------------------------------Captured log call--------------------------------
INFO  tests.suites.betxns.betxn_test:betxn_test.py:133 test_betxn_attr_uniqueness: PASSED
Passed suites/betxns/betxn_test.py::test_betxn_memberof 4.93
-------------------------------Captured log call--------------------------------
INFO  tests.suites.betxns.betxn_test:betxn_test.py:179 test_betxn_memberof: PASSED
Passed suites/betxns/betxn_test.py::test_betxn_modrdn_memberof_cache_corruption 4.77
-------------------------------Captured log call--------------------------------
INFO  tests.suites.betxns.betxn_test:betxn_test.py:233 test_betxn_modrdn_memberof: PASSED
Passed suites/betxns/betxn_test.py::test_ri_and_mep_cache_corruption 0.81
-------------------------------Captured log call--------------------------------
INFO  tests.suites.betxns.betxn_test:betxn_test.py:357 Test PASSED
Passed suites/clu/clu_test.py::test_clu_pwdhash 0.05
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.clu.clu_test:clu_test.py:40 Running test_clu_pwdhash... INFO  tests.suites.clu.clu_test:clu_test.py:54 pwdhash generated: {SSHA}m44wb1MZEesFl1x6/WjCAokoJSLb9z4f+l68Ww== INFO  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--------------------------------
INFO  tests.suites.clu.clu_test:clu_test.py:78 Running test_clu_pwdhash_mod... INFO  tests.suites.clu.clu_test:clu_test.py:87 pwdhash generated: {SSHA256}EVwhk/Yw28Go5mU0s+suk4AF1leBFBFZDwwHfq6Uy5r5ArvVv9Tz3w== INFO  tests.suites.clu.clu_test:clu_test.py:88 returned the hashed string using the algorithm set in nsslapd-rootpwstoragescheme
Passed suites/clu/dbgen_test.py::test_dsconf_dbgen_users 6.35
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.clu.dbgen_test:dbgen_test.py:119 Run ldifgen to create users ldif INFO  tests.suites.clu.dbgen_test:dbgen.py:56 Generating LDIF with the following options: INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - suffix=dc=example,dc=com INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - parent=ou=people,dc=example,dc=com INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - number=1000 INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - rdn-cn=False INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - generic=True INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - start-idx=50 INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - localize=False INFO  tests.suites.clu.dbgen_test:dbgen.py:62 - ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif INFO  tests.suites.clu.dbgen_test:dbgen.py:63 Writing LDIF ... INFO  tests.suites.clu.dbgen_test:dbgen.py:196 Successfully created LDIF file: /var/lib/dirsrv/slapd-standalone1/ldif/created.ldif INFO  tests.suites.clu.dbgen_test:dbgen_test.py:122 Check if file exists INFO  tests.suites.clu.dbgen_test:dbgen_test.py:67 Check if content is present in output INFO  tests.suites.clu.dbgen_test:dbgen_test.py:71 Reset log file for next test INFO  tests.suites.clu.dbgen_test:dbgen_test.py:127 Get number of accounts before import INFO  tests.suites.clu.dbgen_test:dbgen_test.py:48 Stopping the server and running offline import... INFO  tests.suites.clu.dbgen_test:dbgen_test.py:133 Check that accounts are imported
Passed suites/clu/dbgen_test.py::test_dsconf_dbgen_groups 36.59
------------------------------Captured stderr call------------------------------
ldap_add: Already exists (68) ldap_add: Already exists (68) ldap_add: Already exists (68)
-------------------------------Captured log call--------------------------------
INFO  tests.suites.clu.dbgen_test:dbgen_test.py:183 Run ldifgen to create group ldif INFO  tests.suites.clu.dbgen_test:dbgen.py:56 Generating LDIF with the following options: INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - NAME=myGroup INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - parent=ou=groups,dc=example,dc=com INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - suffix=dc=example,dc=com INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - number=1 INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - num-members=1000 INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - create-members=True INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - member-attr=uniquemember INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - member-parent=ou=people,dc=example,dc=com INFO  tests.suites.clu.dbgen_test:dbgen.py:62 - ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif INFO  tests.suites.clu.dbgen_test:dbgen.py:63 Writing LDIF ... INFO  tests.suites.clu.dbgen_test:dbgen.py:250 Successfully created LDIF file: /var/lib/dirsrv/slapd-standalone1/ldif/created.ldif INFO  tests.suites.clu.dbgen_test:dbgen_test.py:186 Check if file exists INFO  tests.suites.clu.dbgen_test:dbgen_test.py:67 Check if content is present in output INFO  tests.suites.clu.dbgen_test:dbgen_test.py:71 Reset log file for next test INFO  tests.suites.clu.dbgen_test:dbgen_test.py:191 Get number of accounts before import INFO  tests.suites.clu.dbgen_test:dbgen_test.py:57 Add entries from ldif file with ldapmodify INFO  tests.suites.clu.dbgen_test:dbgen_test.py:200 Check that accounts are imported INFO  tests.suites.clu.dbgen_test:dbgen_test.py:203 Check that group is imported
Passed suites/clu/dbgen_test.py::test_dsconf_dbgen_cos_classic 0.13
-------------------------------Captured log call--------------------------------
INFO  tests.suites.clu.dbgen_test:dbgen_test.py:256 Run ldifgen to create COS definition ldif INFO  tests.suites.clu.dbgen_test:dbgen.py:56 Generating LDIF with the following options: INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - type=classic INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - NAME=My_Postal_Def INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - parent=ou=cos definitions,dc=example,dc=com INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - create-parent=True INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - cos-specifier=businessCategory INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - cos-attr=['postalcode', 'telephonenumber'] INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - cos-template=cn=sales,cn=classicCoS,dc=example,dc=com INFO  tests.suites.clu.dbgen_test:dbgen.py:62 - ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif INFO  tests.suites.clu.dbgen_test:dbgen.py:63 Writing LDIF ... INFO  tests.suites.clu.dbgen_test:dbgen.py:304 Successfully created LDIF file: /var/lib/dirsrv/slapd-standalone1/ldif/created.ldif INFO  tests.suites.clu.dbgen_test:dbgen_test.py:259 Check if file exists INFO  tests.suites.clu.dbgen_test:dbgen_test.py:67 Check if content is present in output INFO  tests.suites.clu.dbgen_test:dbgen_test.py:71 Reset log file for next test INFO  tests.suites.clu.dbgen_test:dbgen_test.py:57 Add entries from ldif file with ldapmodify INFO  tests.suites.clu.dbgen_test:dbgen_test.py:267 Check that COS definition is imported
Passed suites/clu/dbgen_test.py::test_dsconf_dbgen_cos_pointer 0.03
-------------------------------Captured log call--------------------------------
INFO  tests.suites.clu.dbgen_test:dbgen_test.py:322 Run ldifgen to create COS definition ldif INFO  tests.suites.clu.dbgen_test:dbgen.py:56 Generating LDIF with the following options: INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - type=pointer INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - NAME=My_Postal_Def_pointer INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - parent=ou=cos pointer definitions,dc=example,dc=com INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - create-parent=True INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - cos-attr=['postalcode', 'telephonenumber'] INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - cos-template=cn=sales,cn=pointerCoS,dc=example,dc=com INFO  tests.suites.clu.dbgen_test:dbgen.py:62 - ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif INFO  tests.suites.clu.dbgen_test:dbgen.py:63 Writing LDIF ... INFO  tests.suites.clu.dbgen_test:dbgen.py:304 Successfully created LDIF file: /var/lib/dirsrv/slapd-standalone1/ldif/created.ldif INFO  tests.suites.clu.dbgen_test:dbgen_test.py:325 Check if file exists INFO  tests.suites.clu.dbgen_test:dbgen_test.py:67 Check if content is present in output INFO  tests.suites.clu.dbgen_test:dbgen_test.py:71 Reset log file for next test INFO  tests.suites.clu.dbgen_test:dbgen_test.py:57 Add entries from ldif file with ldapmodify INFO  tests.suites.clu.dbgen_test:dbgen_test.py:333 Check that COS definition is imported
Passed suites/clu/dbgen_test.py::test_dsconf_dbgen_cos_indirect 0.03
-------------------------------Captured log call--------------------------------
INFO  tests.suites.clu.dbgen_test:dbgen_test.py:387 Run ldifgen to create COS definition ldif INFO  tests.suites.clu.dbgen_test:dbgen.py:56 Generating LDIF with the following options: INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - type=indirect INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - NAME=My_Postal_Def_indirect INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - parent=ou=cos indirect definitions,dc=example,dc=com INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - create-parent=True INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - cos-specifier=businessCategory INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - cos-attr=['postalcode', 'telephonenumber'] INFO  tests.suites.clu.dbgen_test:dbgen.py:62 - ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif INFO  tests.suites.clu.dbgen_test:dbgen.py:63 Writing LDIF ... INFO  tests.suites.clu.dbgen_test:dbgen.py:304 Successfully created LDIF file: /var/lib/dirsrv/slapd-standalone1/ldif/created.ldif INFO  tests.suites.clu.dbgen_test:dbgen_test.py:390 Check if file exists INFO  tests.suites.clu.dbgen_test:dbgen_test.py:67 Check if content is present in output INFO  tests.suites.clu.dbgen_test:dbgen_test.py:71 Reset log file for next test INFO  tests.suites.clu.dbgen_test:dbgen_test.py:57 Add entries from ldif file with ldapmodify INFO  tests.suites.clu.dbgen_test:dbgen_test.py:398 Check that COS definition is imported
Passed suites/clu/dbgen_test.py::test_dsconf_dbgen_cos_template 0.03
-------------------------------Captured log call--------------------------------
INFO  tests.suites.clu.dbgen_test:dbgen_test.py:449 Run ldifgen to create COS template ldif INFO  tests.suites.clu.dbgen_test:dbgen.py:56 Generating LDIF with the following options: INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - NAME=My_Template INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - parent=ou=cos templates,dc=example,dc=com INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - create-parent=True INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - cos-priority=1 INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - cos-attr-val=postalcode:12345 INFO  tests.suites.clu.dbgen_test:dbgen.py:62 - ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif INFO  tests.suites.clu.dbgen_test:dbgen.py:63 Writing LDIF ... INFO  tests.suites.clu.dbgen_test:dbgen.py:341 Successfully created LDIF file: /var/lib/dirsrv/slapd-standalone1/ldif/created.ldif INFO  tests.suites.clu.dbgen_test:dbgen_test.py:452 Check if file exists INFO  tests.suites.clu.dbgen_test:dbgen_test.py:67 Check if content is present in output INFO  tests.suites.clu.dbgen_test:dbgen_test.py:71 Reset log file for next test INFO  tests.suites.clu.dbgen_test:dbgen_test.py:57 Add entries from ldif file with ldapmodify INFO  tests.suites.clu.dbgen_test:dbgen_test.py:460 Check that COS template is imported
Passed suites/clu/dbgen_test.py::test_dsconf_dbgen_managed_role 0.02
-------------------------------Captured log call--------------------------------
INFO  tests.suites.clu.dbgen_test:dbgen_test.py:511 Run ldifgen to create managed role ldif INFO  tests.suites.clu.dbgen_test:dbgen.py:56 Generating LDIF with the following options: INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - NAME=My_Managed_Role INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - parent=ou=managed roles,dc=example,dc=com INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - create-parent=True INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - type=managed INFO  tests.suites.clu.dbgen_test:dbgen.py:62 - ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif INFO  tests.suites.clu.dbgen_test:dbgen.py:63 Writing LDIF ... INFO  tests.suites.clu.dbgen_test:dbgen.py:391 Successfully created LDIF file: /var/lib/dirsrv/slapd-standalone1/ldif/created.ldif INFO  tests.suites.clu.dbgen_test:dbgen_test.py:514 Check if file exists INFO  tests.suites.clu.dbgen_test:dbgen_test.py:67 Check if content is present in output INFO  tests.suites.clu.dbgen_test:dbgen_test.py:71 Reset log file for next test INFO  tests.suites.clu.dbgen_test:dbgen_test.py:57 Add entries from ldif file with ldapmodify INFO  tests.suites.clu.dbgen_test:dbgen_test.py:522 Check that managed role is imported
Passed suites/clu/dbgen_test.py::test_dsconf_dbgen_filtered_role 0.03
-------------------------------Captured log call--------------------------------
INFO  tests.suites.clu.dbgen_test:dbgen_test.py:571 Run ldifgen to create filtered role ldif INFO  tests.suites.clu.dbgen_test:dbgen.py:56 Generating LDIF with the following options: INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - NAME=My_Filtered_Role INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - parent=ou=filtered roles,dc=example,dc=com INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - create-parent=True INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - type=filtered INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - filter="objectclass=posixAccount" INFO  tests.suites.clu.dbgen_test:dbgen.py:62 - ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif INFO  tests.suites.clu.dbgen_test:dbgen.py:63 Writing LDIF ... INFO  tests.suites.clu.dbgen_test:dbgen.py:391 Successfully created LDIF file: /var/lib/dirsrv/slapd-standalone1/ldif/created.ldif INFO  tests.suites.clu.dbgen_test:dbgen_test.py:574 Check if file exists INFO  tests.suites.clu.dbgen_test:dbgen_test.py:67 Check if content is present in output INFO  tests.suites.clu.dbgen_test:dbgen_test.py:71 Reset log file for next test INFO  tests.suites.clu.dbgen_test:dbgen_test.py:57 Add entries from ldif file with ldapmodify INFO  tests.suites.clu.dbgen_test:dbgen_test.py:582 Check that filtered role is imported
Passed suites/clu/dbgen_test.py::test_dsconf_dbgen_nested_role 0.03
-------------------------------Captured log call--------------------------------
INFO  tests.suites.clu.dbgen_test:dbgen_test.py:632 Run ldifgen to create nested role ldif INFO  tests.suites.clu.dbgen_test:dbgen.py:56 Generating LDIF with the following options: INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - NAME=My_Nested_Role INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - parent=ou=nested roles,dc=example,dc=com INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - create-parent=True INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - type=nested INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - role-dn=['cn=some_role,ou=roles,dc=example,dc=com'] INFO  tests.suites.clu.dbgen_test:dbgen.py:62 - ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif INFO  tests.suites.clu.dbgen_test:dbgen.py:63 Writing LDIF ... INFO  tests.suites.clu.dbgen_test:dbgen.py:391 Successfully created LDIF file: /var/lib/dirsrv/slapd-standalone1/ldif/created.ldif INFO  tests.suites.clu.dbgen_test:dbgen_test.py:635 Check if file exists INFO  tests.suites.clu.dbgen_test:dbgen_test.py:67 Check if content is present in output INFO  tests.suites.clu.dbgen_test:dbgen_test.py:71 Reset log file for next test INFO  tests.suites.clu.dbgen_test:dbgen_test.py:57 Add entries from ldif file with ldapmodify INFO  tests.suites.clu.dbgen_test:dbgen_test.py:643 Check that nested role is imported
Passed suites/clu/dbgen_test.py::test_dsconf_dbgen_mod_ldif_mixed 39.46
------------------------------Captured stderr call------------------------------
ldap_modify: Operation not allowed on RDN (67) ldap_modify: Operation not allowed on RDN (67) ldap_modify: Operation not allowed on RDN (67) ldap_modify: Operation not allowed on RDN (67) ldap_modify: Operation not allowed on RDN (67) ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldap_rename: Invalid DN syntax (34) additional info: invalid RDN ldapmodify: extra lines at end (line 43453, entry "uid=user0999,dc=example,dc=com")
-------------------------------Captured log call--------------------------------
INFO  tests.suites.clu.dbgen_test:dbgen_test.py:702 Run ldifgen to create modification ldif INFO  tests.suites.clu.dbgen_test:dbgen.py:56 Generating LDIF with the following options: INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - parent=dc=example,dc=com INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - create-users=True INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - delete-users=True INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - create-parent=False INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - num-users=1000 INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - add-users=100 INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - del-users=999 INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - modrdn-users=100 INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - mod-users=10 INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - mod-attrs=['cn', 'uid', 'sn'] INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - randomize=False INFO  tests.suites.clu.dbgen_test:dbgen.py:62 - ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif INFO  tests.suites.clu.dbgen_test:dbgen.py:63 Writing LDIF ... INFO  tests.suites.clu.dbgen_test:dbgen.py:467 Successfully created LDIF file: /var/lib/dirsrv/slapd-standalone1/ldif/created.ldif INFO  tests.suites.clu.dbgen_test:dbgen_test.py:705 Check if file exists INFO  tests.suites.clu.dbgen_test:dbgen_test.py:67 Check if content is present in output INFO  tests.suites.clu.dbgen_test:dbgen_test.py:71 Reset log file for next test INFO  tests.suites.clu.dbgen_test:dbgen_test.py:710 Get number of accounts before import INFO  tests.suites.clu.dbgen_test:dbgen_test.py:57 Add entries from ldif file with ldapmodify INFO  tests.suites.clu.dbgen_test:dbgen_test.py:719 Check that some accounts are imported
Passed suites/clu/dbgen_test.py::test_dsconf_dbgen_nested_ldif 26.66
------------------------------Captured stderr call------------------------------
ldap_add: Already exists (68)
-------------------------------Captured log call--------------------------------
INFO  tests.suites.clu.dbgen_test:dbgen_test.py:759 Run ldifgen to create nested ldif INFO  tests.suites.clu.dbgen_test:dbgen.py:56 Generating LDIF with the following options: INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - suffix=dc=example,dc=com INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - node-limit=100 INFO  tests.suites.clu.dbgen_test:dbgen.py:61 - num-users=600 INFO  tests.suites.clu.dbgen_test:dbgen.py:62 - ldif-file=/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif INFO  tests.suites.clu.dbgen_test:dbgen.py:63 Writing LDIF ... INFO  tests.suites.clu.dbgen_test:dbgen.py:500 Successfully created nested LDIF file (/var/lib/dirsrv/slapd-standalone1/ldif/created.ldif) containing 6 nodes/subtrees INFO  tests.suites.clu.dbgen_test:dbgen_test.py:762 Check if file exists INFO  tests.suites.clu.dbgen_test:dbgen_test.py:67 Check if content is present in output INFO  tests.suites.clu.dbgen_test:dbgen_test.py:71 Reset log file for next test INFO  tests.suites.clu.dbgen_test:dbgen_test.py:767 Get number of accounts before import INFO  tests.suites.clu.dbgen_test:dbgen_test.py:57 Add entries from ldif file with ldapmodify INFO  tests.suites.clu.dbgen_test:dbgen_test.py:779 Check that accounts are imported
Passed suites/clu/dbmon_test.py::test_dsconf_dbmon 0.32
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.clu.dbmon_test:dbmon_test.py:164 Sanity check for syntax INFO  LogCapture:monitor.py:247 DB Monitor Report: 2020-10-24 19:38:44 INFO  LogCapture:monitor.py:248 -------------------------------------------------------- INFO  LogCapture:monitor.py:249 Database Cache: INFO  LogCapture:monitor.py:250 - Cache Hit Ratio: 70% INFO  LogCapture:monitor.py:251 - Free Space: 487.05 MB INFO  LogCapture:monitor.py:252 - Free Percentage: 100.0% INFO  LogCapture:monitor.py:253 - RO Page Drops: 0 INFO  LogCapture:monitor.py:254 - Pages In: 8 INFO  LogCapture:monitor.py:255 - Pages Out: 0 INFO  LogCapture:monitor.py:256 INFO  LogCapture:monitor.py:257 Normalized DN Cache: INFO  LogCapture:monitor.py:258 - Cache Hit Ratio: 78% INFO  LogCapture:monitor.py:259 - Free Space: 19.99 MB INFO  LogCapture:monitor.py:260 - Free Percentage: 100.0% INFO  LogCapture:monitor.py:261 - DN Count: 54 INFO  LogCapture:monitor.py:262 - Evictions: 0 INFO  LogCapture:monitor.py:263 INFO  LogCapture:monitor.py:264 Backends: INFO  LogCapture:monitor.py:266 - dc=example,dc=com (userRoot): INFO  LogCapture:monitor.py:267 - Entry Cache Hit Ratio: 57% INFO  LogCapture:monitor.py:268 - Entry Cache Count: 2 INFO  LogCapture:monitor.py:269 - Entry Cache Free Space: 1.31 GB INFO  LogCapture:monitor.py:270 - Entry Cache Free Percentage: 100.0% INFO  LogCapture:monitor.py:271 - Entry Cache Average Size: 3.78 KB INFO  LogCapture:monitor.py:272 - DN Cache Hit Ratio: 0% INFO  LogCapture:monitor.py:273 - DN Cache Count: 2 INFO  LogCapture:monitor.py:274 - DN Cache Free Space: 192.0 MB INFO  LogCapture:monitor.py:275 - DN Cache Free Percentage: 100.0% INFO  LogCapture:monitor.py:276 - DN Cache Average Size: 63.0 B INFO  LogCapture:monitor.py:286 INFO  tests.suites.clu.dbmon_test:dbmon_test.py:133 Clear the log INFO  tests.suites.clu.dbmon_test:dbmon_test.py:171 Sanity check for --indexes output INFO  LogCapture:monitor.py:247 DB Monitor Report: 2020-10-24 19:38:44 INFO  LogCapture:monitor.py:248 -------------------------------------------------------- INFO  LogCapture:monitor.py:249 Database Cache: INFO  LogCapture:monitor.py:250 - Cache Hit Ratio: 70% INFO  LogCapture:monitor.py:251 - Free Space: 487.05 MB INFO  LogCapture:monitor.py:252 - Free Percentage: 100.0% INFO  LogCapture:monitor.py:253 - RO Page Drops: 0 INFO  LogCapture:monitor.py:254 - Pages In: 8 INFO  LogCapture:monitor.py:255 - Pages Out: 0 INFO  LogCapture:monitor.py:256 INFO  LogCapture:monitor.py:257 Normalized DN Cache: INFO  LogCapture:monitor.py:258 - Cache Hit Ratio: 78% INFO  LogCapture:monitor.py:259 - Free Space: 19.99 MB INFO  LogCapture:monitor.py:260 - Free Percentage: 100.0% INFO  LogCapture:monitor.py:261 - DN Count: 54 INFO  LogCapture:monitor.py:262 - Evictions: 0 INFO  LogCapture:monitor.py:263 INFO  LogCapture:monitor.py:264 Backends: INFO  LogCapture:monitor.py:266 - dc=example,dc=com (userRoot): INFO  LogCapture:monitor.py:267 - Entry Cache Hit Ratio: 57% INFO  LogCapture:monitor.py:268 - Entry Cache Count: 2 INFO  LogCapture:monitor.py:269 - Entry Cache Free Space: 1.31 GB INFO  LogCapture:monitor.py:270 - Entry Cache Free Percentage: 100.0% INFO  LogCapture:monitor.py:271 - Entry Cache Average Size: 3.78 KB INFO  LogCapture:monitor.py:272 - DN Cache Hit Ratio: 0% INFO  LogCapture:monitor.py:273 - DN Cache Count: 2 INFO  LogCapture:monitor.py:274 - DN Cache Free Space: 192.0 MB INFO  LogCapture:monitor.py:275 - DN Cache Free Percentage: 100.0% INFO  LogCapture:monitor.py:276 - DN Cache Average Size: 63.0 B INFO  LogCapture:monitor.py:278 - Indexes: INFO  LogCapture:monitor.py:280 - Index: aci.db INFO  LogCapture:monitor.py:281 - Cache Hit: 1 INFO  LogCapture:monitor.py:282 - Cache Miss: 2 INFO  LogCapture:monitor.py:283 - Page In: 2 INFO  LogCapture:monitor.py:284 - Page Out: 0 INFO  LogCapture:monitor.py:285 INFO  LogCapture:monitor.py:280 - Index: entryrdn.db INFO  LogCapture:monitor.py:281 - Cache Hit: 5 INFO  LogCapture:monitor.py:282 - Cache Miss: 2 INFO  LogCapture:monitor.py:283 - Page In: 2 INFO  LogCapture:monitor.py:284 - Page Out: 0 INFO  LogCapture:monitor.py:285 INFO  LogCapture:monitor.py:280 - Index: objectclass.db INFO  LogCapture:monitor.py:281 - Cache Hit: 11 INFO  LogCapture:monitor.py:282 - Cache Miss: 2 INFO  LogCapture:monitor.py:283 - Page In: 2 INFO  LogCapture:monitor.py:284 - Page Out: 0 INFO  LogCapture:monitor.py:285 INFO  LogCapture:monitor.py:280 - Index: id2entry.db INFO  LogCapture:monitor.py:281 - Cache Hit: 2 INFO  LogCapture:monitor.py:282 - Cache Miss: 2 INFO  LogCapture:monitor.py:283 - Page In: 2 INFO  LogCapture:monitor.py:284 - Page Out: 0 INFO  LogCapture:monitor.py:285 INFO  LogCapture:monitor.py:286 INFO  tests.suites.clu.dbmon_test:dbmon_test.py:133 Clear the log INFO  tests.suites.clu.dbmon_test:dbmon_test.py:179 Sanity check for --json output INFO  LogCapture:monitor.py:245 { "date": "2020-10-24 19:38:44", "dbcache": { "hit_ratio": "70", "free": "487.05 MB", "free_percentage": "100.0", "roevicts": "0", "pagein": "8", "pageout": "0" }, "ndncache": { "hit_ratio": "78", "free": "19.99 MB", "free_percentage": "100.0", "count": "54", "evictions": "0" }, "backends": { "userRoot": { "suffix": "dc=example,dc=com", "entry_cache_count": "2", "entry_cache_free": "1.31 GB", "entry_cache_free_percentage": "100.0", "entry_cache_size": "3.78 KB", "entry_cache_hit_ratio": "57", "dn_cache_count": "2", "dn_cache_free": "192.0 MB", "dn_cache_free_percentage": "100.0", "dn_cache_size": "63.0 B", "dn_cache_hit_ratio": "0", "indexes": [ { "name": "aci.db", "cachehit": "1", "cachemiss": "2", "pagein": "2", "pageout": "0" }, { "name": "entryrdn.db", "cachehit": "5", "cachemiss": "2", "pagein": "2", "pageout": "0" }, { "name": "objectclass.db", "cachehit": "11", "cachemiss": "2", "pagein": "2", "pageout": "0" }, { "name": "id2entry.db", "cachehit": "2", "cachemiss": "2", "pagein": "2", "pageout": "0" } ] } } } INFO  tests.suites.clu.dbmon_test:dbmon_test.py:133 Clear the log
Passed suites/clu/dbverify_test.py::test_dsctl_dbverify 2.50
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
------------------------------Captured stderr call------------------------------
[24/Oct/2020:19:38:54.047962809 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000
-------------------------------Captured log call--------------------------------
INFO  tests.suites.clu.dbverify_test:dbverify_test.py:63 Run dbverify INFO  tests.suites.clu.dbverify_test:dbtasks.py:88 dbverify successful INFO  tests.suites.clu.dbverify_test:dbverify_test.py:67 Check dbverify was successful
Passed suites/clu/dsidm_config_test.py::test_dsidm_config_sssd 4.54
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
------------------------------Captured stdout call------------------------------
# # sssd.conf # Generated by 389 Directory Server - dsidm # # For more details see man sssd.conf and man sssd-ldap # Be sure to review the content of this file to ensure it is secure and correct # in your environment. [domain/ldap] # Uncomment this for more verbose logging. # debug_level=3 # Cache hashes of user authentication for offline auth. cache_credentials = True id_provider = ldap auth_provider = ldap access_provider = ldap chpass_provider = ldap ldap_schema = rfc2307 ldap_search_base = dc=example,dc=com ldap_uri = ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:38901 # If you have DNS SRV records, you can use the following instead. This derives # from your ldap_search_base. # ldap_uri = _srv_ ldap_tls_reqcert = demand # To use cacert dir, place *.crt files in this path then run: # /usr/bin/openssl rehash /etc/openldap/certs # or (for older versions of openssl) # /usr/bin/c_rehash /etc/openldap/certs ldap_tls_cacertdir = /etc/openldap/certs # Path to the cacert # ldap_tls_cacert = /etc/openldap/certs/ca.crt # Only users who match this filter can login and authorise to this machine. Note # that users who do NOT match, will still have their uid/gid resolve, but they # can't login. # ldap_access_filter = (memberOf=<dn>) enumerate = false access_provider = ldap ldap_user_member_of = memberof ldap_user_gecos = cn ldap_user_uuid = nsUniqueId ldap_group_uuid = nsUniqueId # This is really important as it allows SSSD to respect nsAccountLock ldap_account_expire_policy = rhds ldap_access_order = filter, expire # Setup for ssh keys # Inside /etc/ssh/sshd_config add the lines: # AuthorizedKeysCommand /usr/bin/sss_ssh_authorizedkeys # AuthorizedKeysCommandUser nobody # You can test with the command: sss_ssh_authorizedkeys <username> ldap_user_ssh_public_key = nsSshPublicKey # This prevents an issue where the Directory is recursively walked on group # and user look ups. It makes the client faster and more responsive in almost # every scenario. ignore_group_members = False [sssd] services = nss, pam, ssh, sudo config_file_version = 2 domains = ldap [nss] homedir_substring = /home # # sssd.conf # Generated by 389 Directory Server - dsidm # # For more details see man sssd.conf and man sssd-ldap # Be sure to review the content of this file to ensure it is secure and correct # in your environment. [domain/ldap] # Uncomment this for more verbose logging. # debug_level=3 # Cache hashes of user authentication for offline auth. cache_credentials = True id_provider = ldap auth_provider = ldap access_provider = ldap chpass_provider = ldap ldap_schema = rfc2307bis ldap_search_base = dc=example,dc=com ldap_uri = ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:38901 # If you have DNS SRV records, you can use the following instead. This derives # from your ldap_search_base. # ldap_uri = _srv_ ldap_tls_reqcert = demand # To use cacert dir, place *.crt files in this path then run: # /usr/bin/openssl rehash /etc/openldap/certs # or (for older versions of openssl) # /usr/bin/c_rehash /etc/openldap/certs ldap_tls_cacertdir = /etc/openldap/certs # Path to the cacert # ldap_tls_cacert = /etc/openldap/certs/ca.crt # Only users who match this filter can login and authorise to this machine. Note # that users who do NOT match, will still have their uid/gid resolve, but they # can't login. ldap_access_filter = (memberOf=cn=new_group,ou=Groups,dc=example,dc=com) enumerate = false access_provider = ldap ldap_user_member_of = memberof ldap_user_gecos = cn ldap_user_uuid = nsUniqueId ldap_group_uuid = nsUniqueId # This is really important as it allows SSSD to respect nsAccountLock ldap_account_expire_policy = rhds ldap_access_order = filter, expire # Setup for ssh keys # Inside /etc/ssh/sshd_config add the lines: # AuthorizedKeysCommand /usr/bin/sss_ssh_authorizedkeys # AuthorizedKeysCommandUser nobody # You can test with the command: sss_ssh_authorizedkeys <username> ldap_user_ssh_public_key = nsSshPublicKey # This prevents an issue where the Directory is recursively walked on group # and user look ups. It makes the client faster and more responsive in almost # every scenario. ignore_group_members = False [sssd] services = nss, pam, ssh, sudo config_file_version = 2 domains = ldap [nss] homedir_substring = /home
-------------------------------Captured log call--------------------------------
INFO  tests.suites.clu.dsidm_config_test:dsidm_config_test.py:102 Create sssd.conf content DEBUG  tests.suites.clu.dsidm_config_test:client_config.py:114 # # sssd.conf # Generated by 389 Directory Server - dsidm # # For more details see man sssd.conf and man sssd-ldap # Be sure to review the content of this file to ensure it is secure and correct # in your environment. [domain/ldap] # Uncomment this for more verbose logging. # debug_level=3 # Cache hashes of user authentication for offline auth. cache_credentials = True id_provider = ldap auth_provider = ldap access_provider = ldap chpass_provider = ldap ldap_schema = rfc2307 ldap_search_base = dc=example,dc=com ldap_uri = ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:38901 # If you have DNS SRV records, you can use the following instead. This derives # from your ldap_search_base. # ldap_uri = _srv_ ldap_tls_reqcert = demand # To use cacert dir, place *.crt files in this path then run: # /usr/bin/openssl rehash /etc/openldap/certs # or (for older versions of openssl) # /usr/bin/c_rehash /etc/openldap/certs ldap_tls_cacertdir = /etc/openldap/certs # Path to the cacert # ldap_tls_cacert = /etc/openldap/certs/ca.crt # Only users who match this filter can login and authorise to this machine. Note # that users who do NOT match, will still have their uid/gid resolve, but they # can't login. # ldap_access_filter = (memberOf=<dn>) enumerate = false access_provider = ldap ldap_user_member_of = memberof ldap_user_gecos = cn ldap_user_uuid = nsUniqueId ldap_group_uuid = nsUniqueId # This is really important as it allows SSSD to respect nsAccountLock ldap_account_expire_policy = rhds ldap_access_order = filter, expire # Setup for ssh keys # Inside /etc/ssh/sshd_config add the lines: # AuthorizedKeysCommand /usr/bin/sss_ssh_authorizedkeys # AuthorizedKeysCommandUser nobody # You can test with the command: sss_ssh_authorizedkeys <username> ldap_user_ssh_public_key = nsSshPublicKey # This prevents an issue where the Directory is recursively walked on group # and user look ups. It makes the client faster and more responsive in almost # every scenario. ignore_group_members = False [sssd] services = nss, pam, ssh, sudo config_file_version = 2 domains = ldap [nss] homedir_substring = /home INFO  tests.suites.clu.dsidm_config_test:dsidm_config_test.py:105 Check if config creation was successful INFO  tests.suites.clu.dsidm_config_test:dsidm_config_test.py:52 Check if content is present in output INFO  tests.suites.clu.dsidm_config_test:dsidm_config_test.py:57 Check if value is present in output INFO  tests.suites.clu.dsidm_config_test:dsidm_config_test.py:60 Reset log file for next test INFO  tests.suites.clu.dsidm_config_test:dsidm_config_test.py:108 Now we test allowed_group argument INFO  tests.suites.clu.dsidm_config_test:dsidm_config_test.py:109 Enable MemberOf plugin INFO  tests.suites.clu.dsidm_config_test:dsidm_config_test.py:114 Create test group INFO  tests.suites.clu.dsidm_config_test:dsidm_config_test.py:119 Create sssd.conf content with allowed group DEBUG  tests.suites.clu.dsidm_config_test:client_config.py:114 # # sssd.conf # Generated by 389 Directory Server - dsidm # # For more details see man sssd.conf and man sssd-ldap # Be sure to review the content of this file to ensure it is secure and correct # in your environment. [domain/ldap] # Uncomment this for more verbose logging. # debug_level=3 # Cache hashes of user authentication for offline auth. cache_credentials = True id_provider = ldap auth_provider = ldap access_provider = ldap chpass_provider = ldap ldap_schema = rfc2307bis ldap_search_base = dc=example,dc=com ldap_uri = ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:38901 # If you have DNS SRV records, you can use the following instead. This derives # from your ldap_search_base. # ldap_uri = _srv_ ldap_tls_reqcert = demand # To use cacert dir, place *.crt files in this path then run: # /usr/bin/openssl rehash /etc/openldap/certs # or (for older versions of openssl) # /usr/bin/c_rehash /etc/openldap/certs ldap_tls_cacertdir = /etc/openldap/certs # Path to the cacert # ldap_tls_cacert = /etc/openldap/certs/ca.crt # Only users who match this filter can login and authorise to this machine. Note # that users who do NOT match, will still have their uid/gid resolve, but they # can't login. ldap_access_filter = (memberOf=cn=new_group,ou=Groups,dc=example,dc=com) enumerate = false access_provider = ldap ldap_user_member_of = memberof ldap_user_gecos = cn ldap_user_uuid = nsUniqueId ldap_group_uuid = nsUniqueId # This is really important as it allows SSSD to respect nsAccountLock ldap_account_expire_policy = rhds ldap_access_order = filter, expire # Setup for ssh keys # Inside /etc/ssh/sshd_config add the lines: # AuthorizedKeysCommand /usr/bin/sss_ssh_authorizedkeys # AuthorizedKeysCommandUser nobody # You can test with the command: sss_ssh_authorizedkeys <username> ldap_user_ssh_public_key = nsSshPublicKey # This prevents an issue where the Directory is recursively walked on group # and user look ups. It makes the client faster and more responsive in almost # every scenario. ignore_group_members = False [sssd] services = nss, pam, ssh, sudo config_file_version = 2 domains = ldap [nss] homedir_substring = /home INFO  tests.suites.clu.dsidm_config_test:dsidm_config_test.py:124 Check if config creation was successful INFO  tests.suites.clu.dsidm_config_test:dsidm_config_test.py:48 Check if content is present in output INFO  tests.suites.clu.dsidm_config_test:dsidm_config_test.py:60 Reset log file for next test
Passed suites/clu/dsidm_config_test.py::test_dsidm_config_ldap 0.00
------------------------------Captured stdout call------------------------------
# # OpenLDAP client configuration # Generated by 389 Directory Server - dsidm # # See ldap.conf(5) for details # This file should be world readable but not world writable. BASE dc=example,dc=com # Remember to check this: you can have multiple uris on this line. You may have # multiple servers or load balancers in your environment. URI ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:38901 # If you have DNS SRV records you can use: # URI ldaps:///dc%3Dexample%2Cdc%3Dcom DEREF never # To use cacert dir, place *.crt files in this path then run: # /usr/bin/openssl rehash /etc/openldap/certs # or (for older versions of openssl) # /usr/bin/c_rehash /etc/openldap/certs TLS_CACERTDIR /etc/openldap/certs # TLS_CACERT /etc/openldap/certs/ca.crt
-------------------------------Captured log call--------------------------------
INFO  tests.suites.clu.dsidm_config_test:dsidm_config_test.py:152 Create ldap.conf content DEBUG  tests.suites.clu.dsidm_config_test:client_config.py:155 # # OpenLDAP client configuration # Generated by 389 Directory Server - dsidm # # See ldap.conf(5) for details # This file should be world readable but not world writable. BASE dc=example,dc=com # Remember to check this: you can have multiple uris on this line. You may have # multiple servers or load balancers in your environment. URI ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:38901 # If you have DNS SRV records you can use: # URI ldaps:///dc%3Dexample%2Cdc%3Dcom DEREF never # To use cacert dir, place *.crt files in this path then run: # /usr/bin/openssl rehash /etc/openldap/certs # or (for older versions of openssl) # /usr/bin/c_rehash /etc/openldap/certs TLS_CACERTDIR /etc/openldap/certs # TLS_CACERT /etc/openldap/certs/ca.crt INFO  tests.suites.clu.dsidm_config_test:dsidm_config_test.py:155 Check if config creation was successful INFO  tests.suites.clu.dsidm_config_test:dsidm_config_test.py:52 Check if content is present in output INFO  tests.suites.clu.dsidm_config_test:dsidm_config_test.py:60 Reset log file for next test
Passed suites/clu/dsidm_config_test.py::test_dsidm_config_display 4.70
------------------------------Captured stdout call------------------------------
# This is a generic list of LDAP client configuration parameters you may require # for connecting a client to this server. Some of them may or may not apply # to your application, so consult your application documentation for further # assistance. # # This program makes a number of assumptions about your data and configuration # which may not be correct. Be sure to check these values for your situation. ; ldap uri ; This is the uri of the server you will connect to and authenticate to. It ; must be a valid subjectAltName in the presented TLS certificate. Note that this ; is not an exhaustive list of your LDAP servers, and other applications in your ; network like load balancers may affect this. This is just what we derive from ; your current connection. ldap_uri = ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:38901 ; ldap dns discovery uri ; In some environments, you may have DNS SRV records such as ; "_ldap._tcp.<domain name>". If these are present in your dns server, you can ; use the following uri. ldap_uri = ldaps:///dc%3Dexample%2Cdc%3Dcom ; ca_cert ; To correctly use TLS, you require the valid CA cert that issued your LDAP TLS ; certificates. Sometimes a copy of this may be in your server instance as ca_cert = /etc/dirsrv/slapd-<instance>/ca.crt ; However that's not guaranteed. You can show the certs from the LDAP server ; by sshing to the server and running: certutil -L -d /etc/dirsrv/slapd-<instance>/ ; If you can identify the CA certificate name, you can then view it with: certutil -L -n <ca cert name> -a -d /etc/dirsrv/slapd-<instance>/ ; This should be a pem file you can use in your application's CA. ; Some applications don't require a ca certificate parameter, and will use the ; ca certificate from /etc/openldap/ldap.conf. You should configure ldap.conf ; in these cases. See the 'client_config ldap.conf' command in dsidm. ; basedn ; The basedn is the root suffix where all searches will originate from for ; LDAP objects. basedn = dc=example,dc=com ; schema_type ; LDAP servers have different ways to structure their objects and group ; relationships. Legacy servers will use rfc2307, where as modern servers will ; use rfc2307bis (requires MemberOf plugin to be enabled). This is the schema ; setting of your directory based on your running configuration (if we can ; detect it). schema_type = rfc2307bis ; user/account basedn ; Some applications may optionally use a user/account basedn to limit searches ; in the directory. This can be for performance or security reasons. Generally ; you shouldn't need this, preferring to use groups and filters for access ; control. user_basedn = ou=people,dc=example,dc=com ; user filter ; This is an ldap filter that will return only user objects. Additionally some ; applications will template into the filter (similar to sql statements) or they ; will generate the filter based on attributes. We list a number of possible ; filters you might use, but you should customise this for your application. ; ; If you are using rfc2307bis, you can use this filter to provide authorisation ; support by adding filters such as: (memberOf=<groupdn>) user_filter = (&(objectclass=nsPerson)(objectclass=nsAccount)(objectclass=nsOrgPerson)(objectclass=posixAccount)) user_filter = (&(&(objectclass=nsPerson)(objectclass=nsAccount)(objectclass=nsOrgPerson)(objectclass=posixAccount))(|(uid=<PARAM>)(displayName=<PARAM>)(cn=<PARAM>))) ; group basedn ; Some applications may optionnaly use a group basedn to limit searches in the ; directory. This can be for performance or security reasons. Generally you ; shouldn't need this, preferring to use groups and filters for access control. group_basedn = ou=Groups,dc=example,dc=com ; group filter ; This is an ldap filter that will return only group objects. Additionally ; some applications will template into the filter (similar to sql statements) ; or they will generate the filter base on attributes. We list a number of ; possible filters you might use, but you should customise this for your ; application. group_filter = (&(objectclass=groupOfNames)) group_filter = (&(&(objectclass=groupOfNames))(|(cn=<PARAM>))) ; attribute mappings ; Due to the variety of schemas and attribute mappings in LDAP, there are ; different representations of attributes and values. This is a guess at ; the mappings that exist in your server, and what attributes you should ; configure and use. unique id = nsUniqueId user rdn = uid user identifier = uid group rdn = cn group member attribute = member # This is a generic list of LDAP client configuration parameters you may require # for connecting a client to this server. Some of them may or may not apply # to your application, so consult your application documentation for further # assistance. # # This program makes a number of assumptions about your data and configuration # which may not be correct. Be sure to check these values for your situation. ; ldap uri ; This is the uri of the server you will connect to and authenticate to. It ; must be a valid subjectAltName in the presented TLS certificate. Note that this ; is not an exhaustive list of your LDAP servers, and other applications in your ; network like load balancers may affect this. This is just what we derive from ; your current connection. ldap_uri = ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:38901 ; ldap dns discovery uri ; In some environments, you may have DNS SRV records such as ; "_ldap._tcp.<domain name>". If these are present in your dns server, you can ; use the following uri. ldap_uri = ldaps:///dc%3Dexample%2Cdc%3Dcom ; ca_cert ; To correctly use TLS, you require the valid CA cert that issued your LDAP TLS ; certificates. Sometimes a copy of this may be in your server instance as ca_cert = /etc/dirsrv/slapd-<instance>/ca.crt ; However that's not guaranteed. You can show the certs from the LDAP server ; by sshing to the server and running: certutil -L -d /etc/dirsrv/slapd-<instance>/ ; If you can identify the CA certificate name, you can then view it with: certutil -L -n <ca cert name> -a -d /etc/dirsrv/slapd-<instance>/ ; This should be a pem file you can use in your application's CA. ; Some applications don't require a ca certificate parameter, and will use the ; ca certificate from /etc/openldap/ldap.conf. You should configure ldap.conf ; in these cases. See the 'client_config ldap.conf' command in dsidm. ; basedn ; The basedn is the root suffix where all searches will originate from for ; LDAP objects. basedn = dc=example,dc=com ; schema_type ; LDAP servers have different ways to structure their objects and group ; relationships. Legacy servers will use rfc2307, where as modern servers will ; use rfc2307bis (requires MemberOf plugin to be enabled). This is the schema ; setting of your directory based on your running configuration (if we can ; detect it). schema_type = rfc2307bis ; user/account basedn ; Some applications may optionally use a user/account basedn to limit searches ; in the directory. This can be for performance or security reasons. Generally ; you shouldn't need this, preferring to use groups and filters for access ; control. user_basedn = ou=people,dc=example,dc=com ; user filter ; This is an ldap filter that will return only user objects. Additionally some ; applications will template into the filter (similar to sql statements) or they ; will generate the filter based on attributes. We list a number of possible ; filters you might use, but you should customise this for your application. ; ; If you are using rfc2307bis, you can use this filter to provide authorisation ; support by adding filters such as: (memberOf=<groupdn>) user_filter = (&(objectclass=nsPerson)(objectclass=nsAccount)(objectclass=nsOrgPerson)(objectclass=posixAccount)) user_filter = (&(&(objectclass=nsPerson)(objectclass=nsAccount)(objectclass=nsOrgPerson)(objectclass=posixAccount))(|(uid=<PARAM>)(displayName=<PARAM>)(cn=<PARAM>))) ; group basedn ; Some applications may optionnaly use a group basedn to limit searches in the ; directory. This can be for performance or security reasons. Generally you ; shouldn't need this, preferring to use groups and filters for access control. group_basedn = ou=Groups,dc=example,dc=com ; group filter ; This is an ldap filter that will return only group objects. Additionally ; some applications will template into the filter (similar to sql statements) ; or they will generate the filter base on attributes. We list a number of ; possible filters you might use, but you should customise this for your ; application. group_filter = (&(objectclass=groupOfNames)) group_filter = (&(&(objectclass=groupOfNames))(|(cn=<PARAM>))) ; attribute mappings ; Due to the variety of schemas and attribute mappings in LDAP, there are ; different representations of attributes and values. This is a guess at ; the mappings that exist in your server, and what attributes you should ; configure and use. unique id = nsUniqueId user rdn = uid user identifier = uid group rdn = cn group member attribute = member
-------------------------------Captured log call--------------------------------
INFO  tests.suites.clu.dsidm_config_test:dsidm_config_test.py:196 Test dsidm display option DEBUG  tests.suites.clu.dsidm_config_test:client_config.py:290 # This is a generic list of LDAP client configuration parameters you may require # for connecting a client to this server. Some of them may or may not apply # to your application, so consult your application documentation for further # assistance. # # This program makes a number of assumptions about your data and configuration # which may not be correct. Be sure to check these values for your situation. ; ldap uri ; This is the uri of the server you will connect to and authenticate to. It ; must be a valid subjectAltName in the presented TLS certificate. Note that this ; is not an exhaustive list of your LDAP servers, and other applications in your ; network like load balancers may affect this. This is just what we derive from ; your current connection. ldap_uri = ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:38901 ; ldap dns discovery uri ; In some environments, you may have DNS SRV records such as ; "_ldap._tcp.<domain name>". If these are present in your dns server, you can ; use the following uri. ldap_uri = ldaps:///dc%3Dexample%2Cdc%3Dcom ; ca_cert ; To correctly use TLS, you require the valid CA cert that issued your LDAP TLS ; certificates. Sometimes a copy of this may be in your server instance as ca_cert = /etc/dirsrv/slapd-<instance>/ca.crt ; However that's not guaranteed. You can show the certs from the LDAP server ; by sshing to the server and running: certutil -L -d /etc/dirsrv/slapd-<instance>/ ; If you can identify the CA certificate name, you can then view it with: certutil -L -n <ca cert name> -a -d /etc/dirsrv/slapd-<instance>/ ; This should be a pem file you can use in your application's CA. ; Some applications don't require a ca certificate parameter, and will use the ; ca certificate from /etc/openldap/ldap.conf. You should configure ldap.conf ; in these cases. See the 'client_config ldap.conf' command in dsidm. ; basedn ; The basedn is the root suffix where all searches will originate from for ; LDAP objects. basedn = dc=example,dc=com ; schema_type ; LDAP servers have different ways to structure their objects and group ; relationships. Legacy servers will use rfc2307, where as modern servers will ; use rfc2307bis (requires MemberOf plugin to be enabled). This is the schema ; setting of your directory based on your running configuration (if we can ; detect it). schema_type = rfc2307bis ; user/account basedn ; Some applications may optionally use a user/account basedn to limit searches ; in the directory. This can be for performance or security reasons. Generally ; you shouldn't need this, preferring to use groups and filters for access ; control. user_basedn = ou=people,dc=example,dc=com ; user filter ; This is an ldap filter that will return only user objects. Additionally some ; applications will template into the filter (similar to sql statements) or they ; will generate the filter based on attributes. We list a number of possible ; filters you might use, but you should customise this for your application. ; ; If you are using rfc2307bis, you can use this filter to provide authorisation ; support by adding filters such as: (memberOf=<groupdn>) user_filter = (&(objectclass=nsPerson)(objectclass=nsAccount)(objectclass=nsOrgPerson)(objectclass=posixAccount)) user_filter = (&(&(objectclass=nsPerson)(objectclass=nsAccount)(objectclass=nsOrgPerson)(objectclass=posixAccount))(|(uid=<PARAM>)(displayName=<PARAM>)(cn=<PARAM>))) ; group basedn ; Some applications may optionnaly use a group basedn to limit searches in the ; directory. This can be for performance or security reasons. Generally you ; shouldn't need this, preferring to use groups and filters for access control. group_basedn = ou=Groups,dc=example,dc=com ; group filter ; This is an ldap filter that will return only group objects. Additionally ; some applications will template into the filter (similar to sql statements) ; or they will generate the filter base on attributes. We list a number of ; possible filters you might use, but you should customise this for your ; application. group_filter = (&(objectclass=groupOfNames)) group_filter = (&(&(objectclass=groupOfNames))(|(cn=<PARAM>))) ; attribute mappings ; Due to the variety of schemas and attribute mappings in LDAP, there are ; different representations of attributes and values. This is a guess at ; the mappings that exist in your server, and what attributes you should ; configure and use. unique id = nsUniqueId user rdn = uid user identifier = uid group rdn = cn group member attribute = member INFO  tests.suites.clu.dsidm_config_test:dsidm_config_test.py:199 Check if display option was successful INFO  tests.suites.clu.dsidm_config_test:dsidm_config_test.py:52 Check if content is present in output INFO  tests.suites.clu.dsidm_config_test:dsidm_config_test.py:57 Check if value is present in output INFO  tests.suites.clu.dsidm_config_test:dsidm_config_test.py:60 Reset log file for next test INFO  tests.suites.clu.dsidm_config_test:dsidm_config_test.py:202 Enable MemberOf plugin INFO  tests.suites.clu.dsidm_config_test:dsidm_config_test.py:207 Test dsidm display option with MemberOf plugin DEBUG  tests.suites.clu.dsidm_config_test:client_config.py:290 # This is a generic list of LDAP client configuration parameters you may require # for connecting a client to this server. Some of them may or may not apply # to your application, so consult your application documentation for further # assistance. # # This program makes a number of assumptions about your data and configuration # which may not be correct. Be sure to check these values for your situation. ; ldap uri ; This is the uri of the server you will connect to and authenticate to. It ; must be a valid subjectAltName in the presented TLS certificate. Note that this ; is not an exhaustive list of your LDAP servers, and other applications in your ; network like load balancers may affect this. This is just what we derive from ; your current connection. ldap_uri = ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:38901 ; ldap dns discovery uri ; In some environments, you may have DNS SRV records such as ; "_ldap._tcp.<domain name>". If these are present in your dns server, you can ; use the following uri. ldap_uri = ldaps:///dc%3Dexample%2Cdc%3Dcom ; ca_cert ; To correctly use TLS, you require the valid CA cert that issued your LDAP TLS ; certificates. Sometimes a copy of this may be in your server instance as ca_cert = /etc/dirsrv/slapd-<instance>/ca.crt ; However that's not guaranteed. You can show the certs from the LDAP server ; by sshing to the server and running: certutil -L -d /etc/dirsrv/slapd-<instance>/ ; If you can identify the CA certificate name, you can then view it with: certutil -L -n <ca cert name> -a -d /etc/dirsrv/slapd-<instance>/ ; This should be a pem file you can use in your application's CA. ; Some applications don't require a ca certificate parameter, and will use the ; ca certificate from /etc/openldap/ldap.conf. You should configure ldap.conf ; in these cases. See the 'client_config ldap.conf' command in dsidm. ; basedn ; The basedn is the root suffix where all searches will originate from for ; LDAP objects. basedn = dc=example,dc=com ; schema_type ; LDAP servers have different ways to structure their objects and group ; relationships. Legacy servers will use rfc2307, where as modern servers will ; use rfc2307bis (requires MemberOf plugin to be enabled). This is the schema ; setting of your directory based on your running configuration (if we can ; detect it). schema_type = rfc2307bis ; user/account basedn ; Some applications may optionally use a user/account basedn to limit searches ; in the directory. This can be for performance or security reasons. Generally ; you shouldn't need this, preferring to use groups and filters for access ; control. user_basedn = ou=people,dc=example,dc=com ; user filter ; This is an ldap filter that will return only user objects. Additionally some ; applications will template into the filter (similar to sql statements) or they ; will generate the filter based on attributes. We list a number of possible ; filters you might use, but you should customise this for your application. ; ; If you are using rfc2307bis, you can use this filter to provide authorisation ; support by adding filters such as: (memberOf=<groupdn>) user_filter = (&(objectclass=nsPerson)(objectclass=nsAccount)(objectclass=nsOrgPerson)(objectclass=posixAccount)) user_filter = (&(&(objectclass=nsPerson)(objectclass=nsAccount)(objectclass=nsOrgPerson)(objectclass=posixAccount))(|(uid=<PARAM>)(displayName=<PARAM>)(cn=<PARAM>))) ; group basedn ; Some applications may optionnaly use a group basedn to limit searches in the ; directory. This can be for performance or security reasons. Generally you ; shouldn't need this, preferring to use groups and filters for access control. group_basedn = ou=Groups,dc=example,dc=com ; group filter ; This is an ldap filter that will return only group objects. Additionally ; some applications will template into the filter (similar to sql statements) ; or they will generate the filter base on attributes. We list a number of ; possible filters you might use, but you should customise this for your ; application. group_filter = (&(objectclass=groupOfNames)) group_filter = (&(&(objectclass=groupOfNames))(|(cn=<PARAM>))) ; attribute mappings ; Due to the variety of schemas and attribute mappings in LDAP, there are ; different representations of attributes and values. This is a guess at ; the mappings that exist in your server, and what attributes you should ; configure and use. unique id = nsUniqueId user rdn = uid user identifier = uid group rdn = cn group member attribute = member INFO  tests.suites.clu.dsidm_config_test:dsidm_config_test.py:210 Check if display option was successful with MemberOf plugin enabled INFO  tests.suites.clu.dsidm_config_test:dsidm_config_test.py:52 Check if content is present in output INFO  tests.suites.clu.dsidm_config_test:dsidm_config_test.py:57 Check if value is present in output INFO  tests.suites.clu.dsidm_config_test:dsidm_config_test.py:60 Reset log file for next test
Passed suites/clu/fixup_test.py::test_posix_winsync_fixup 8.88
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.clu.fixup_test:fixup_test.py:73 Enable POSIXWinsyncPlugin INFO  tests.suites.clu.fixup_test:fixup_test.py:77 Stopping the server and importing posix accounts INFO  tests.suites.clu.fixup_test:fixup_test.py:87 Run Fixup task INFO  tests.suites.clu.fixup_test:posix_winsync.py:29 Attempting to add task entry... INFO  tests.suites.clu.fixup_test:posix_winsync.py:39 Successfully added task entry INFO  tests.suites.clu.fixup_test:fixup_test.py:90 Check log if fixup task was successful
Passed suites/clu/repl_monitor_test.py::test_dsconf_replication_monitor 0.55
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 95e3a185-d895-43f1-98f8-2eafa6e8b614 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect c79817ae-8c27-4910-8d01-2e70bcfc7a42 / got description=95e3a185-d895-43f1-98f8-2eafa6e8b614) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
-------------------------------Captured log call--------------------------------
INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:170 Run replication monitor with connections option DEBUG  tests.suites.clu.repl_monitor_test:dsrc.py:76 dsrc path: /root/.dsrc DEBUG  tests.suites.clu.repl_monitor_test:dsrc.py:77 dsrc container path: /data/config/container.inf DEBUG  tests.suites.clu.repl_monitor_test:dsrc.py:85 dsrc instances: [] DEBUG  tests.suites.clu.repl_monitor_test:dsrc.py:210 dsrc completed with {'connections': None, 'aliases': None} INFO  tests.suites.clu.repl_monitor_test:replication.py:438 Supplier: ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 INFO  tests.suites.clu.repl_monitor_test:replication.py:443 ----------------------------------------------------------------- INFO  tests.suites.clu.repl_monitor_test:replication.py:455 Replica Root: dc=example,dc=com INFO  tests.suites.clu.repl_monitor_test:replication.py:456 Replica ID: 1 INFO  tests.suites.clu.repl_monitor_test:replication.py:457 Replica Status: Available INFO  tests.suites.clu.repl_monitor_test:replication.py:458 Max CSN: 5f94bb3d000000010000 INFO  tests.suites.clu.repl_monitor_test:replication.py:461 Status For Agreement: "002" (ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002) Replica Enabled: on Update In Progress: FALSE Last Update Start: 20201024233942Z Last Update End: 20201024233942Z Number Of Changes Sent: 1:2/0 Number Of Changes Skipped: None Last Update Status: Error (0) Replica acquired successfully: Incremental update succeeded Last Init Start: 19700101000000Z Last Init End: 19700101000000Z Last Init Status: unavailable Reap Active: 0 Replication Status: In Synchronization Replication Lag Time: 00:00:00 INFO  tests.suites.clu.repl_monitor_test:replication.py:438 Supplier: ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  tests.suites.clu.repl_monitor_test:replication.py:443 ----------------------------------------------------------------- INFO  tests.suites.clu.repl_monitor_test:replication.py:455 Replica Root: dc=example,dc=com INFO  tests.suites.clu.repl_monitor_test:replication.py:456 Replica ID: 2 INFO  tests.suites.clu.repl_monitor_test:replication.py:457 Replica Status: Available INFO  tests.suites.clu.repl_monitor_test:replication.py:458 Max CSN: 5f94bb3e000000020000 INFO  tests.suites.clu.repl_monitor_test:replication.py:461 Status For Agreement: "001" (ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001) Replica Enabled: on Update In Progress: FALSE Last Update Start: 20201024233942Z Last Update End: 20201024233942Z Number Of Changes Sent: 2:1/0 Number Of Changes Skipped: None Last Update Status: Error (0) Replica acquired successfully: Incremental update succeeded Last Init Start: 19700101000000Z Last Init End: 19700101000000Z Last Init Status: unavailable Reap Active: 0 Replication Status: In Synchronization Replication Lag Time: 00:00:00 INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica Root: dc=example,dc=com" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica ID: 1" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica Status: Available" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Max CSN" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Status For Agreement: "002" (ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002)" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica Enabled: on" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Update In Progress: FALSE" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Update Start:" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Update End:" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Number Of Changes Sent:" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Number Of Changes Skipped: None" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Update Status: Error (0) Replica acquired successfully: Incremental update succeeded" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Init Start:" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Init End:" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Init Status:" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Reap Active: 0" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replication Status: In Synchronization" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replication Lag Time:" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Supplier: " is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica Root: dc=example,dc=com" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica ID: 2" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Status For Agreement: "001" (ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001)" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:52 Check for "Supplier: ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001" INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:60 Reset log file INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:174 Run replication monitor with aliases option DEBUG  tests.suites.clu.repl_monitor_test:dsrc.py:76 dsrc path: /root/.dsrc DEBUG  tests.suites.clu.repl_monitor_test:dsrc.py:77 dsrc container path: /data/config/container.inf DEBUG  tests.suites.clu.repl_monitor_test:dsrc.py:85 dsrc instances: [] DEBUG  tests.suites.clu.repl_monitor_test:dsrc.py:210 dsrc completed with {'connections': None, 'aliases': None} INFO  tests.suites.clu.repl_monitor_test:replication.py:438 Supplier: M1 (ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001) INFO  tests.suites.clu.repl_monitor_test:replication.py:443 ---------------------------------------------------------------------- INFO  tests.suites.clu.repl_monitor_test:replication.py:455 Replica Root: dc=example,dc=com INFO  tests.suites.clu.repl_monitor_test:replication.py:456 Replica ID: 1 INFO  tests.suites.clu.repl_monitor_test:replication.py:457 Replica Status: Available INFO  tests.suites.clu.repl_monitor_test:replication.py:458 Max CSN: 5f94bb3d000000010000 INFO  tests.suites.clu.repl_monitor_test:replication.py:461 Status For Agreement: "002" (ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002) Replica Enabled: on Update In Progress: FALSE Last Update Start: 20201024233942Z Last Update End: 20201024233942Z Number Of Changes Sent: 1:2/0 Number Of Changes Skipped: None Last Update Status: Error (0) Replica acquired successfully: Incremental update succeeded Last Init Start: 19700101000000Z Last Init End: 19700101000000Z Last Init Status: unavailable Reap Active: 0 Replication Status: In Synchronization Replication Lag Time: 00:00:00 INFO  tests.suites.clu.repl_monitor_test:replication.py:438 Supplier: M2 (ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002) INFO  tests.suites.clu.repl_monitor_test:replication.py:443 ---------------------------------------------------------------------- INFO  tests.suites.clu.repl_monitor_test:replication.py:455 Replica Root: dc=example,dc=com INFO  tests.suites.clu.repl_monitor_test:replication.py:456 Replica ID: 2 INFO  tests.suites.clu.repl_monitor_test:replication.py:457 Replica Status: Available INFO  tests.suites.clu.repl_monitor_test:replication.py:458 Max CSN: 5f94bb3e000000020000 INFO  tests.suites.clu.repl_monitor_test:replication.py:461 Status For Agreement: "001" (ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001) Replica Enabled: on Update In Progress: FALSE Last Update Start: 20201024233942Z Last Update End: 20201024233942Z Number Of Changes Sent: 2:1/0 Number Of Changes Skipped: None Last Update Status: Error (0) Replica acquired successfully: Incremental update succeeded Last Init Start: 19700101000000Z Last Init End: 19700101000000Z Last Init Status: unavailable Reap Active: 0 Replication Status: In Synchronization Replication Lag Time: 00:00:00 INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica Root: dc=example,dc=com" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica ID: 1" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica Status: Available" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Max CSN" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Status For Agreement: "002" (ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002)" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica Enabled: on" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Update In Progress: FALSE" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Update Start:" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Update End:" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Number Of Changes Sent:" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Number Of Changes Skipped: None" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Update Status: Error (0) Replica acquired successfully: Incremental update succeeded" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Init Start:" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Init End:" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Init Status:" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Reap Active: 0" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replication Status: In Synchronization" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replication Lag Time:" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Supplier: " is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica Root: dc=example,dc=com" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica ID: 2" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Status For Agreement: "001" (ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001)" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:52 Check for "['Supplier: M1 (ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001)', 'Supplier: M2 (ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002)']" INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:60 Reset log file INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:179 Run replication monitor with --json option DEBUG  tests.suites.clu.repl_monitor_test:dsrc.py:76 dsrc path: /root/.dsrc DEBUG  tests.suites.clu.repl_monitor_test:dsrc.py:77 dsrc container path: /data/config/container.inf DEBUG  tests.suites.clu.repl_monitor_test:dsrc.py:85 dsrc instances: [] DEBUG  tests.suites.clu.repl_monitor_test:dsrc.py:210 dsrc completed with {'connections': None, 'aliases': None} INFO  tests.suites.clu.repl_monitor_test:replication.py:468 { "type": "list", "items": [ { "name": "ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001", "data": [ { "replica_id": "1", "replica_root": "dc=example,dc=com", "replica_status": "Available", "maxcsn": "5f94bb3d000000010000", "agmts_status": [ { "agmt-name": [ "002" ], "replica": [ "ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002" ], "replica-enabled": [ "on" ], "update-in-progress": [ "FALSE" ], "last-update-start": [ "20201024233942Z" ], "last-update-end": [ "20201024233942Z" ], "number-changes-sent": [ "1:2/0 " ], "number-changes-skipped": [ "unavailable" ], "last-update-status": [ "Error (0) Replica acquired successfully: Incremental update succeeded" ], "last-init-start": [ "19700101000000Z" ], "last-init-end": [ "19700101000000Z" ], "last-init-status": [ "unavailable" ], "reap-active": [ "0" ], "replication-status": [ "In Synchronization" ], "replication-lag-time": [ "00:00:00" ] } ] } ] }, { "name": "ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002", "data": [ { "replica_id": "2", "replica_root": "dc=example,dc=com", "replica_status": "Available", "maxcsn": "5f94bb3e000000020000", "agmts_status": [ { "agmt-name": [ "001" ], "replica": [ "ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001" ], "replica-enabled": [ "on" ], "update-in-progress": [ "FALSE" ], "last-update-start": [ "20201024233942Z" ], "last-update-end": [ "20201024233942Z" ], "number-changes-sent": [ "2:1/0 " ], "number-changes-skipped": [ "unavailable" ], "last-update-status": [ "Error (0) Replica acquired successfully: Incremental update succeeded" ], "last-init-start": [ "19700101000000Z" ], "last-init-end": [ "19700101000000Z" ], "last-init-status": [ "unavailable" ], "reap-active": [ "0" ], "replication-status": [ "In Synchronization" ], "replication-lag-time": [ "00:00:00" ] } ] } ] } ] } INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "type" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "list" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "items" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "name" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "data" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that ""replica_id": "1"" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that ""replica_root": "dc=example,dc=com"" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that ""replica_status": "Available"" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "maxcsn" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "agmts_status" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "agmt-name" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "002" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "replica" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "replica-enabled" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "update-in-progress" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "last-update-start" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "last-update-end" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "number-changes-sent" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "number-changes-skipped" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "last-update-status" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Error (0) Replica acquired successfully: Incremental update succeeded" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "last-init-start" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "last-init-end" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "last-init-status" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "reap-active" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "replication-status" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "In Synchronization" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "replication-lag-time" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that ""replica_id": "2"" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "001" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:60 Reset log file INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:192 Run replication monitor when .dsrc file is present with content DEBUG  tests.suites.clu.repl_monitor_test:dsrc.py:76 dsrc path: /root/.dsrc DEBUG  tests.suites.clu.repl_monitor_test:dsrc.py:77 dsrc container path: /data/config/container.inf DEBUG  tests.suites.clu.repl_monitor_test:dsrc.py:85 dsrc instances: ['repl-monitor-connections', 'repl-monitor-aliases'] DEBUG  tests.suites.clu.repl_monitor_test:dsrc.py:210 dsrc completed with {'connections': ['ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001:cn=Directory Manager:password', 'ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002:cn=Directory Manager:password'], 'aliases': {'M1': 'ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001', 'M2': 'ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002'}} INFO  tests.suites.clu.repl_monitor_test:replication.py:438 Supplier: M1 (ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001) INFO  tests.suites.clu.repl_monitor_test:replication.py:443 ---------------------------------------------------------------------- INFO  tests.suites.clu.repl_monitor_test:replication.py:455 Replica Root: dc=example,dc=com INFO  tests.suites.clu.repl_monitor_test:replication.py:456 Replica ID: 1 INFO  tests.suites.clu.repl_monitor_test:replication.py:457 Replica Status: Available INFO  tests.suites.clu.repl_monitor_test:replication.py:458 Max CSN: 5f94bb3d000000010000 INFO  tests.suites.clu.repl_monitor_test:replication.py:461 Status For Agreement: "002" (ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002) Replica Enabled: on Update In Progress: FALSE Last Update Start: 20201024233942Z Last Update End: 20201024233942Z Number Of Changes Sent: 1:2/0 Number Of Changes Skipped: None Last Update Status: Error (0) Replica acquired successfully: Incremental update succeeded Last Init Start: 19700101000000Z Last Init End: 19700101000000Z Last Init Status: unavailable Reap Active: 0 Replication Status: In Synchronization Replication Lag Time: 00:00:00 INFO  tests.suites.clu.repl_monitor_test:replication.py:438 Supplier: M2 (ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002) INFO  tests.suites.clu.repl_monitor_test:replication.py:443 ---------------------------------------------------------------------- INFO  tests.suites.clu.repl_monitor_test:replication.py:455 Replica Root: dc=example,dc=com INFO  tests.suites.clu.repl_monitor_test:replication.py:456 Replica ID: 2 INFO  tests.suites.clu.repl_monitor_test:replication.py:457 Replica Status: Available INFO  tests.suites.clu.repl_monitor_test:replication.py:458 Max CSN: 5f94bb3e000000020000 INFO  tests.suites.clu.repl_monitor_test:replication.py:461 Status For Agreement: "001" (ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001) Replica Enabled: on Update In Progress: FALSE Last Update Start: 20201024233942Z Last Update End: 20201024233942Z Number Of Changes Sent: 2:1/0 Number Of Changes Skipped: None Last Update Status: Error (0) Replica acquired successfully: Incremental update succeeded Last Init Start: 19700101000000Z Last Init End: 19700101000000Z Last Init Status: unavailable Reap Active: 0 Replication Status: In Synchronization Replication Lag Time: 00:00:00 INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica Root: dc=example,dc=com" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica ID: 1" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica Status: Available" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Max CSN" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Status For Agreement: "002" (ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002)" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica Enabled: on" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Update In Progress: FALSE" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Update Start:" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Update End:" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Number Of Changes Sent:" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Number Of Changes Skipped: None" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Update Status: Error (0) Replica acquired successfully: Incremental update succeeded" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Init Start:" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Init End:" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Last Init Status:" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Reap Active: 0" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replication Status: In Synchronization" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replication Lag Time:" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Supplier: " is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica Root: dc=example,dc=com" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Replica ID: 2" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:48 Check that "Status For Agreement: "001" (ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001)" is present INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:52 Check for "['Supplier: M1 (ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001)', 'Supplier: M2 (ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002)']" INFO  tests.suites.clu.repl_monitor_test:repl_monitor_test.py:60 Reset log file
Passed suites/config/autotuning_test.py::test_threads_basic 0.02
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.config.autotuning_test:autotuning_test.py:39 Set nsslapd-threadnumber: -1 to enable autotuning INFO  tests.suites.config.autotuning_test:autotuning_test.py:42 Assert nsslapd-threadnumber is equal to the documented expected value
Passed suites/config/autotuning_test.py::test_threads_warning 1.31
No log output captured.
Passed suites/config/autotuning_test.py::test_threads_invalid_value[-2] 0.01
-------------------------------Captured log call--------------------------------
INFO  tests.suites.config.autotuning_test:autotuning_test.py:87 Set nsslapd-threadnumber: -2. Operation should fail
Passed suites/config/autotuning_test.py::test_threads_invalid_value[0] 0.16
-------------------------------Captured log call--------------------------------
INFO  tests.suites.config.autotuning_test:autotuning_test.py:87 Set nsslapd-threadnumber: 0. Operation should fail
Passed suites/config/autotuning_test.py::test_threads_invalid_value[invalid] 0.01
-------------------------------Captured log call--------------------------------
INFO  tests.suites.config.autotuning_test:autotuning_test.py:87 Set nsslapd-threadnumber: invalid. Operation should fail
Passed suites/config/autotuning_test.py::test_threads_back_from_manual_value 0.05
-------------------------------Captured log call--------------------------------
INFO  tests.suites.config.autotuning_test:autotuning_test.py:109 Set nsslapd-threadnumber: -1 to enable autotuning and save the new value INFO  tests.suites.config.autotuning_test:autotuning_test.py:113 Set nsslapd-threadnumber to the autotuned value decreased by 2 INFO  tests.suites.config.autotuning_test:autotuning_test.py:118 Set nsslapd-threadnumber: -1 to enable autotuning INFO  tests.suites.config.autotuning_test:autotuning_test.py:121 Assert nsslapd-threadnumber is back to the autotuned value
Passed suites/config/autotuning_test.py::test_cache_autosize_non_zero[-] 4.94
-------------------------------Captured log call--------------------------------
INFO  tests.suites.config.autotuning_test:autotuning_test.py:169 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test INFO  tests.suites.config.autotuning_test:autotuning_test.py:170 nsslapd-dbcachesize == b'408620441' INFO  tests.suites.config.autotuning_test:autotuning_test.py:171 nsslapd-cachememsize == b'1409286144' INFO  tests.suites.config.autotuning_test:autotuning_test.py:172 nsslapd-dncachememsize == b'201326592' INFO  tests.suites.config.autotuning_test:autotuning_test.py:173 nsslapd-cache-autosize == b'25' INFO  tests.suites.config.autotuning_test:autotuning_test.py:174 nsslapd-cache-autosize-split == b'25' INFO  tests.suites.config.autotuning_test:autotuning_test.py:180 Delete nsslapd-cache-autosize INFO  tests.suites.config.autotuning_test:autotuning_test.py:190 Delete nsslapd-cache-autosize-split INFO  tests.suites.config.autotuning_test:autotuning_test.py:196 Trying to set nsslapd-cachememsize to 33333333 INFO  tests.suites.config.autotuning_test:autotuning_test.py:199 Trying to set nsslapd-dbcachesize to 33333333 INFO  tests.suites.config.autotuning_test:autotuning_test.py:216 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. INFO  tests.suites.config.autotuning_test:autotuning_test.py:217 nsslapd-dbcachesize == b'408620441' INFO  tests.suites.config.autotuning_test:autotuning_test.py:218 nsslapd-cachememsize == b'1409286144' INFO  tests.suites.config.autotuning_test:autotuning_test.py:219 nsslapd-dncachememsize == b'201326592' INFO  tests.suites.config.autotuning_test:autotuning_test.py:220 nsslapd-cache-autosize == b'25' INFO  tests.suites.config.autotuning_test:autotuning_test.py:221 nsslapd-cache-autosize-split == b'25'
Passed suites/config/autotuning_test.py::test_cache_autosize_non_zero[-0] 4.85
-------------------------------Captured log call--------------------------------
INFO  tests.suites.config.autotuning_test:autotuning_test.py:169 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test INFO  tests.suites.config.autotuning_test:autotuning_test.py:170 nsslapd-dbcachesize == b'408620441' INFO  tests.suites.config.autotuning_test:autotuning_test.py:171 nsslapd-cachememsize == b'1409286144' INFO  tests.suites.config.autotuning_test:autotuning_test.py:172 nsslapd-dncachememsize == b'201326592' INFO  tests.suites.config.autotuning_test:autotuning_test.py:173 nsslapd-cache-autosize == b'25' INFO  tests.suites.config.autotuning_test:autotuning_test.py:174 nsslapd-cache-autosize-split == b'25' INFO  tests.suites.config.autotuning_test:autotuning_test.py:180 Delete nsslapd-cache-autosize INFO  tests.suites.config.autotuning_test:autotuning_test.py:187 Set nsslapd-cache-autosize-split to 0 INFO  tests.suites.config.autotuning_test:autotuning_test.py:196 Trying to set nsslapd-cachememsize to 33333333 INFO  tests.suites.config.autotuning_test:autotuning_test.py:199 Trying to set nsslapd-dbcachesize to 33333333 INFO  tests.suites.config.autotuning_test:autotuning_test.py:216 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. INFO  tests.suites.config.autotuning_test:autotuning_test.py:217 nsslapd-dbcachesize == b'408620441' INFO  tests.suites.config.autotuning_test:autotuning_test.py:218 nsslapd-cachememsize == b'1409286144' INFO  tests.suites.config.autotuning_test:autotuning_test.py:219 nsslapd-dncachememsize == b'201326592' INFO  tests.suites.config.autotuning_test:autotuning_test.py:220 nsslapd-cache-autosize == b'25' INFO  tests.suites.config.autotuning_test:autotuning_test.py:221 nsslapd-cache-autosize-split == b'0'
Passed suites/config/autotuning_test.py::test_cache_autosize_non_zero[10-400] 4.33
-------------------------------Captured log call--------------------------------
INFO  tests.suites.config.autotuning_test:autotuning_test.py:169 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test INFO  tests.suites.config.autotuning_test:autotuning_test.py:170 nsslapd-dbcachesize == b'408620441' INFO  tests.suites.config.autotuning_test:autotuning_test.py:171 nsslapd-cachememsize == b'1409286144' INFO  tests.suites.config.autotuning_test:autotuning_test.py:172 nsslapd-dncachememsize == b'201326592' INFO  tests.suites.config.autotuning_test:autotuning_test.py:173 nsslapd-cache-autosize == b'25' INFO  tests.suites.config.autotuning_test:autotuning_test.py:174 nsslapd-cache-autosize-split == b'0' INFO  tests.suites.config.autotuning_test:autotuning_test.py:177 Set nsslapd-cache-autosize to 10 INFO  tests.suites.config.autotuning_test:autotuning_test.py:187 Set nsslapd-cache-autosize-split to 40 INFO  tests.suites.config.autotuning_test:autotuning_test.py:196 Trying to set nsslapd-cachememsize to 33333333 INFO  tests.suites.config.autotuning_test:autotuning_test.py:199 Trying to set nsslapd-dbcachesize to 33333333 INFO  tests.suites.config.autotuning_test:autotuning_test.py:216 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. INFO  tests.suites.config.autotuning_test:autotuning_test.py:217 nsslapd-dbcachesize == b'261517082' INFO  tests.suites.config.autotuning_test:autotuning_test.py:218 nsslapd-cachememsize == b'469762048' INFO  tests.suites.config.autotuning_test:autotuning_test.py:219 nsslapd-dncachememsize == b'67108864' INFO  tests.suites.config.autotuning_test:autotuning_test.py:220 nsslapd-cache-autosize == b'10' INFO  tests.suites.config.autotuning_test:autotuning_test.py:221 nsslapd-cache-autosize-split == b'40'
Passed suites/config/autotuning_test.py::test_cache_autosize_non_zero[-40] 4.80
-------------------------------Captured log call--------------------------------
INFO  tests.suites.config.autotuning_test:autotuning_test.py:169 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test INFO  tests.suites.config.autotuning_test:autotuning_test.py:170 nsslapd-dbcachesize == b'261517082' INFO  tests.suites.config.autotuning_test:autotuning_test.py:171 nsslapd-cachememsize == b'469762048' INFO  tests.suites.config.autotuning_test:autotuning_test.py:172 nsslapd-dncachememsize == b'67108864' INFO  tests.suites.config.autotuning_test:autotuning_test.py:173 nsslapd-cache-autosize == b'10' INFO  tests.suites.config.autotuning_test:autotuning_test.py:174 nsslapd-cache-autosize-split == b'40' INFO  tests.suites.config.autotuning_test:autotuning_test.py:180 Delete nsslapd-cache-autosize INFO  tests.suites.config.autotuning_test:autotuning_test.py:187 Set nsslapd-cache-autosize-split to 40 INFO  tests.suites.config.autotuning_test:autotuning_test.py:196 Trying to set nsslapd-cachememsize to 33333333 INFO  tests.suites.config.autotuning_test:autotuning_test.py:199 Trying to set nsslapd-dbcachesize to 33333333 INFO  tests.suites.config.autotuning_test:autotuning_test.py:216 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. INFO  tests.suites.config.autotuning_test:autotuning_test.py:217 nsslapd-dbcachesize == b'817240883' INFO  tests.suites.config.autotuning_test:autotuning_test.py:218 nsslapd-cachememsize == b'1140850688' INFO  tests.suites.config.autotuning_test:autotuning_test.py:219 nsslapd-dncachememsize == b'134217728' INFO  tests.suites.config.autotuning_test:autotuning_test.py:220 nsslapd-cache-autosize == b'25' INFO  tests.suites.config.autotuning_test:autotuning_test.py:221 nsslapd-cache-autosize-split == b'40'
Passed suites/config/autotuning_test.py::test_cache_autosize_non_zero[10-] 5.05
-------------------------------Captured log call--------------------------------
INFO  tests.suites.config.autotuning_test:autotuning_test.py:169 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test INFO  tests.suites.config.autotuning_test:autotuning_test.py:170 nsslapd-dbcachesize == b'817240883' INFO  tests.suites.config.autotuning_test:autotuning_test.py:171 nsslapd-cachememsize == b'1140850688' INFO  tests.suites.config.autotuning_test:autotuning_test.py:172 nsslapd-dncachememsize == b'134217728' INFO  tests.suites.config.autotuning_test:autotuning_test.py:173 nsslapd-cache-autosize == b'25' INFO  tests.suites.config.autotuning_test:autotuning_test.py:174 nsslapd-cache-autosize-split == b'40' INFO  tests.suites.config.autotuning_test:autotuning_test.py:177 Set nsslapd-cache-autosize to 10 INFO  tests.suites.config.autotuning_test:autotuning_test.py:190 Delete nsslapd-cache-autosize-split INFO  tests.suites.config.autotuning_test:autotuning_test.py:196 Trying to set nsslapd-cachememsize to 33333333 INFO  tests.suites.config.autotuning_test:autotuning_test.py:199 Trying to set nsslapd-dbcachesize to 33333333 INFO  tests.suites.config.autotuning_test:autotuning_test.py:216 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. INFO  tests.suites.config.autotuning_test:autotuning_test.py:217 nsslapd-dbcachesize == b'163448176' INFO  tests.suites.config.autotuning_test:autotuning_test.py:218 nsslapd-cachememsize == b'603979776' INFO  tests.suites.config.autotuning_test:autotuning_test.py:219 nsslapd-dncachememsize == b'67108864' INFO  tests.suites.config.autotuning_test:autotuning_test.py:220 nsslapd-cache-autosize == b'10' INFO  tests.suites.config.autotuning_test:autotuning_test.py:221 nsslapd-cache-autosize-split == b'25'
Passed suites/config/autotuning_test.py::test_cache_autosize_non_zero[10-401] 4.32
-------------------------------Captured log call--------------------------------
INFO  tests.suites.config.autotuning_test:autotuning_test.py:169 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test INFO  tests.suites.config.autotuning_test:autotuning_test.py:170 nsslapd-dbcachesize == b'163448176' INFO  tests.suites.config.autotuning_test:autotuning_test.py:171 nsslapd-cachememsize == b'603979776' INFO  tests.suites.config.autotuning_test:autotuning_test.py:172 nsslapd-dncachememsize == b'67108864' INFO  tests.suites.config.autotuning_test:autotuning_test.py:173 nsslapd-cache-autosize == b'10' INFO  tests.suites.config.autotuning_test:autotuning_test.py:174 nsslapd-cache-autosize-split == b'25' INFO  tests.suites.config.autotuning_test:autotuning_test.py:177 Set nsslapd-cache-autosize to 10 INFO  tests.suites.config.autotuning_test:autotuning_test.py:187 Set nsslapd-cache-autosize-split to 40 INFO  tests.suites.config.autotuning_test:autotuning_test.py:196 Trying to set nsslapd-cachememsize to 33333333 INFO  tests.suites.config.autotuning_test:autotuning_test.py:199 Trying to set nsslapd-dbcachesize to 33333333 INFO  tests.suites.config.autotuning_test:autotuning_test.py:216 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. INFO  tests.suites.config.autotuning_test:autotuning_test.py:217 nsslapd-dbcachesize == b'261517082' INFO  tests.suites.config.autotuning_test:autotuning_test.py:218 nsslapd-cachememsize == b'469762048' INFO  tests.suites.config.autotuning_test:autotuning_test.py:219 nsslapd-dncachememsize == b'67108864' INFO  tests.suites.config.autotuning_test:autotuning_test.py:220 nsslapd-cache-autosize == b'10' INFO  tests.suites.config.autotuning_test:autotuning_test.py:221 nsslapd-cache-autosize-split == b'40'
Passed suites/config/autotuning_test.py::test_cache_autosize_non_zero[10-0] 4.69
-------------------------------Captured log call--------------------------------
INFO  tests.suites.config.autotuning_test:autotuning_test.py:169 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test INFO  tests.suites.config.autotuning_test:autotuning_test.py:170 nsslapd-dbcachesize == b'261517082' INFO  tests.suites.config.autotuning_test:autotuning_test.py:171 nsslapd-cachememsize == b'469762048' INFO  tests.suites.config.autotuning_test:autotuning_test.py:172 nsslapd-dncachememsize == b'67108864' INFO  tests.suites.config.autotuning_test:autotuning_test.py:173 nsslapd-cache-autosize == b'10' INFO  tests.suites.config.autotuning_test:autotuning_test.py:174 nsslapd-cache-autosize-split == b'40' INFO  tests.suites.config.autotuning_test:autotuning_test.py:177 Set nsslapd-cache-autosize to 10 INFO  tests.suites.config.autotuning_test:autotuning_test.py:187 Set nsslapd-cache-autosize-split to 0 INFO  tests.suites.config.autotuning_test:autotuning_test.py:196 Trying to set nsslapd-cachememsize to 33333333 INFO  tests.suites.config.autotuning_test:autotuning_test.py:199 Trying to set nsslapd-dbcachesize to 33333333 INFO  tests.suites.config.autotuning_test:autotuning_test.py:216 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. INFO  tests.suites.config.autotuning_test:autotuning_test.py:217 nsslapd-dbcachesize == b'163448176' INFO  tests.suites.config.autotuning_test:autotuning_test.py:218 nsslapd-cachememsize == b'603979776' INFO  tests.suites.config.autotuning_test:autotuning_test.py:219 nsslapd-dncachememsize == b'67108864' INFO  tests.suites.config.autotuning_test:autotuning_test.py:220 nsslapd-cache-autosize == b'10' INFO  tests.suites.config.autotuning_test:autotuning_test.py:221 nsslapd-cache-autosize-split == b'0'
Passed suites/config/autotuning_test.py::test_cache_autosize_basic_sane[0] 9.73
-------------------------------Captured log call--------------------------------
INFO  tests.suites.config.autotuning_test:autotuning_test.py:273 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test INFO  tests.suites.config.autotuning_test:autotuning_test.py:274 nsslapd-dbcachesize == b'163448176' INFO  tests.suites.config.autotuning_test:autotuning_test.py:275 nsslapd-cachememsize == b'603979776' INFO  tests.suites.config.autotuning_test:autotuning_test.py:276 nsslapd-cache-autosize == b'0' INFO  tests.suites.config.autotuning_test:autotuning_test.py:277 nsslapd-cache-autosize-split == b'0' INFO  tests.suites.config.autotuning_test:autotuning_test.py:280 Set nsslapd-cache-autosize-split to 0 INFO  tests.suites.config.autotuning_test:autotuning_test.py:289 Set nsslapd-dbcachesize to 0 INFO  tests.suites.config.autotuning_test:autotuning_test.py:291 Set nsslapd-cachememsize to 0 INFO  tests.suites.config.autotuning_test:autotuning_test.py:307 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. INFO  tests.suites.config.autotuning_test:autotuning_test.py:308 nsslapd-dbcachesize == b'408620441' INFO  tests.suites.config.autotuning_test:autotuning_test.py:309 nsslapd-cachememsize == b'1409286144' INFO  tests.suites.config.autotuning_test:autotuning_test.py:310 nsslapd-dncachememsize == b'67108864' INFO  tests.suites.config.autotuning_test:autotuning_test.py:311 nsslapd-cache-autosize == b'0' INFO  tests.suites.config.autotuning_test:autotuning_test.py:312 nsslapd-cache-autosize-split == b'0' INFO  tests.suites.config.autotuning_test:autotuning_test.py:273 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test INFO  tests.suites.config.autotuning_test:autotuning_test.py:274 nsslapd-dbcachesize == b'408620441' INFO  tests.suites.config.autotuning_test:autotuning_test.py:275 nsslapd-cachememsize == b'1409286144' INFO  tests.suites.config.autotuning_test:autotuning_test.py:276 nsslapd-cache-autosize == b'0' INFO  tests.suites.config.autotuning_test:autotuning_test.py:277 nsslapd-cache-autosize-split == b'0' INFO  tests.suites.config.autotuning_test:autotuning_test.py:280 Set nsslapd-cache-autosize-split to 0 INFO  tests.suites.config.autotuning_test:autotuning_test.py:289 Set nsslapd-dbcachesize to 33333333 INFO  tests.suites.config.autotuning_test:autotuning_test.py:291 Set nsslapd-cachememsize to 33333333 INFO  tests.suites.config.autotuning_test:autotuning_test.py:307 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. INFO  tests.suites.config.autotuning_test:autotuning_test.py:308 nsslapd-dbcachesize == b'33333333' INFO  tests.suites.config.autotuning_test:autotuning_test.py:309 nsslapd-cachememsize == b'33333333' INFO  tests.suites.config.autotuning_test:autotuning_test.py:310 nsslapd-dncachememsize == b'67108864' INFO  tests.suites.config.autotuning_test:autotuning_test.py:311 nsslapd-cache-autosize == b'0' INFO  tests.suites.config.autotuning_test:autotuning_test.py:312 nsslapd-cache-autosize-split == b'0'
Passed suites/config/autotuning_test.py::test_cache_autosize_basic_sane[] 9.25
-------------------------------Captured log call--------------------------------
INFO  tests.suites.config.autotuning_test:autotuning_test.py:273 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test INFO  tests.suites.config.autotuning_test:autotuning_test.py:274 nsslapd-dbcachesize == b'33333333' INFO  tests.suites.config.autotuning_test:autotuning_test.py:275 nsslapd-cachememsize == b'33333333' INFO  tests.suites.config.autotuning_test:autotuning_test.py:276 nsslapd-cache-autosize == b'0' INFO  tests.suites.config.autotuning_test:autotuning_test.py:277 nsslapd-cache-autosize-split == b'0' INFO  tests.suites.config.autotuning_test:autotuning_test.py:283 Delete nsslapd-cache-autosize-split INFO  tests.suites.config.autotuning_test:autotuning_test.py:289 Set nsslapd-dbcachesize to 0 INFO  tests.suites.config.autotuning_test:autotuning_test.py:291 Set nsslapd-cachememsize to 0 INFO  tests.suites.config.autotuning_test:autotuning_test.py:307 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. INFO  tests.suites.config.autotuning_test:autotuning_test.py:308 nsslapd-dbcachesize == b'408620441' INFO  tests.suites.config.autotuning_test:autotuning_test.py:309 nsslapd-cachememsize == b'1409286144' INFO  tests.suites.config.autotuning_test:autotuning_test.py:310 nsslapd-dncachememsize == b'67108864' INFO  tests.suites.config.autotuning_test:autotuning_test.py:311 nsslapd-cache-autosize == b'0' INFO  tests.suites.config.autotuning_test:autotuning_test.py:312 nsslapd-cache-autosize-split == b'25' INFO  tests.suites.config.autotuning_test:autotuning_test.py:273 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test INFO  tests.suites.config.autotuning_test:autotuning_test.py:274 nsslapd-dbcachesize == b'408620441' INFO  tests.suites.config.autotuning_test:autotuning_test.py:275 nsslapd-cachememsize == b'1409286144' INFO  tests.suites.config.autotuning_test:autotuning_test.py:276 nsslapd-cache-autosize == b'0' INFO  tests.suites.config.autotuning_test:autotuning_test.py:277 nsslapd-cache-autosize-split == b'25' INFO  tests.suites.config.autotuning_test:autotuning_test.py:283 Delete nsslapd-cache-autosize-split INFO  tests.suites.config.autotuning_test:autotuning_test.py:289 Set nsslapd-dbcachesize to 33333333 INFO  tests.suites.config.autotuning_test:autotuning_test.py:291 Set nsslapd-cachememsize to 33333333 INFO  tests.suites.config.autotuning_test:autotuning_test.py:307 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. INFO  tests.suites.config.autotuning_test:autotuning_test.py:308 nsslapd-dbcachesize == b'33333333' INFO  tests.suites.config.autotuning_test:autotuning_test.py:309 nsslapd-cachememsize == b'33333333' INFO  tests.suites.config.autotuning_test:autotuning_test.py:310 nsslapd-dncachememsize == b'67108864' INFO  tests.suites.config.autotuning_test:autotuning_test.py:311 nsslapd-cache-autosize == b'0' INFO  tests.suites.config.autotuning_test:autotuning_test.py:312 nsslapd-cache-autosize-split == b'25'
Passed suites/config/autotuning_test.py::test_cache_autosize_basic_sane[40] 9.56
-------------------------------Captured log call--------------------------------
INFO  tests.suites.config.autotuning_test:autotuning_test.py:273 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test INFO  tests.suites.config.autotuning_test:autotuning_test.py:274 nsslapd-dbcachesize == b'33333333' INFO  tests.suites.config.autotuning_test:autotuning_test.py:275 nsslapd-cachememsize == b'33333333' INFO  tests.suites.config.autotuning_test:autotuning_test.py:276 nsslapd-cache-autosize == b'0' INFO  tests.suites.config.autotuning_test:autotuning_test.py:277 nsslapd-cache-autosize-split == b'25' INFO  tests.suites.config.autotuning_test:autotuning_test.py:280 Set nsslapd-cache-autosize-split to 40 INFO  tests.suites.config.autotuning_test:autotuning_test.py:289 Set nsslapd-dbcachesize to 0 INFO  tests.suites.config.autotuning_test:autotuning_test.py:291 Set nsslapd-cachememsize to 0 INFO  tests.suites.config.autotuning_test:autotuning_test.py:307 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. INFO  tests.suites.config.autotuning_test:autotuning_test.py:308 nsslapd-dbcachesize == b'817240883' INFO  tests.suites.config.autotuning_test:autotuning_test.py:309 nsslapd-cachememsize == b'1140850688' INFO  tests.suites.config.autotuning_test:autotuning_test.py:310 nsslapd-dncachememsize == b'67108864' INFO  tests.suites.config.autotuning_test:autotuning_test.py:311 nsslapd-cache-autosize == b'0' INFO  tests.suites.config.autotuning_test:autotuning_test.py:312 nsslapd-cache-autosize-split == b'40' INFO  tests.suites.config.autotuning_test:autotuning_test.py:273 Check nsslapd-dbcachesize and nsslapd-cachememsize before the test INFO  tests.suites.config.autotuning_test:autotuning_test.py:274 nsslapd-dbcachesize == b'817240883' INFO  tests.suites.config.autotuning_test:autotuning_test.py:275 nsslapd-cachememsize == b'1140850688' INFO  tests.suites.config.autotuning_test:autotuning_test.py:276 nsslapd-cache-autosize == b'0' INFO  tests.suites.config.autotuning_test:autotuning_test.py:277 nsslapd-cache-autosize-split == b'40' INFO  tests.suites.config.autotuning_test:autotuning_test.py:280 Set nsslapd-cache-autosize-split to 40 INFO  tests.suites.config.autotuning_test:autotuning_test.py:289 Set nsslapd-dbcachesize to 33333333 INFO  tests.suites.config.autotuning_test:autotuning_test.py:291 Set nsslapd-cachememsize to 33333333 INFO  tests.suites.config.autotuning_test:autotuning_test.py:307 Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. INFO  tests.suites.config.autotuning_test:autotuning_test.py:308 nsslapd-dbcachesize == b'33333333' INFO  tests.suites.config.autotuning_test:autotuning_test.py:309 nsslapd-cachememsize == b'33333333' INFO  tests.suites.config.autotuning_test:autotuning_test.py:310 nsslapd-dncachememsize == b'67108864' INFO  tests.suites.config.autotuning_test:autotuning_test.py:311 nsslapd-cache-autosize == b'0' INFO  tests.suites.config.autotuning_test:autotuning_test.py:312 nsslapd-cache-autosize-split == b'40'
Passed suites/config/autotuning_test.py::test_cache_autosize_invalid_values[-2] 0.27
-------------------------------Captured log call--------------------------------
INFO  tests.suites.config.autotuning_test:autotuning_test.py:346 Set nsslapd-cache-autosize-split to -2 INFO  tests.suites.config.autotuning_test:autotuning_test.py:352 Set nsslapd-cache-autosize to -2
Passed suites/config/autotuning_test.py::test_cache_autosize_invalid_values[102] 0.18
-------------------------------Captured log call--------------------------------
INFO  tests.suites.config.autotuning_test:autotuning_test.py:346 Set nsslapd-cache-autosize-split to 102 INFO  tests.suites.config.autotuning_test:autotuning_test.py:352 Set nsslapd-cache-autosize to 102
Passed suites/config/autotuning_test.py::test_cache_autosize_invalid_values[invalid] 0.04
-------------------------------Captured log call--------------------------------
INFO  tests.suites.config.autotuning_test:autotuning_test.py:346 Set nsslapd-cache-autosize-split to invalid INFO  tests.suites.config.autotuning_test:autotuning_test.py:352 Set nsslapd-cache-autosize to invalid
Passed suites/config/config_test.py::test_maxbersize_repl 17.65
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 853b8cb2-4f94-4af3-ac94-a7f65d1bf0c0 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 579455bf-a706-45b3-8361-8e91f8c2dbd3 / got description=853b8cb2-4f94-4af3-ac94-a7f65d1bf0c0) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
-------------------------------Captured log call--------------------------------
INFO  tests.suites.config.config_test:config_test.py:69 Set nsslapd-maxbersize: 20K to master2 INFO  tests.suites.config.config_test:config_test.py:74 Try to add attribute with a big value to master2 - expect to FAIL INFO  tests.suites.config.config_test:config_test.py:81 Try to add attribute with a big value to master1 - expect to PASS INFO  tests.suites.config.config_test:config_test.py:86 Check if a big value was successfully added to master1 INFO  tests.suites.config.config_test:config_test.py:90 Check if a big value was successfully replicated to master2
Passed suites/config/config_test.py::test_config_listen_backport_size 0.03
No log output captured.
Passed suites/config/config_test.py::test_config_deadlock_policy 0.09
No log output captured.
Passed suites/config/config_test.py::test_defaultnamingcontext 1.79
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.config.config_test:config_test.py:220 Check the attribute nsslapd-defaultnamingcontext is present in cn=config INFO  tests.suites.config.config_test:config_test.py:223 Delete nsslapd-defaultnamingcontext attribute INFO  tests.suites.config.config_test:config_test.py:230 modify nsslapd-defaultnamingcontext with new suffix INFO  tests.suites.config.config_test:config_test.py:233 Add new invalid value at runtime to nsslapd-defaultnamingcontext INFO  tests.suites.config.config_test:config_test.py:237 Modify nsslapd-defaultnamingcontext with blank value INFO  tests.suites.config.config_test:config_test.py:240 Add new suffix when nsslapd-defaultnamingcontext is empty INFO  tests.suites.config.config_test:config_test.py:244 Check the value of the nsslapd-defaultnamingcontext automatically have the new suffix INFO  tests.suites.config.config_test:config_test.py:247 Adding new suffix when nsslapd-defaultnamingcontext is not empty INFO  tests.suites.config.config_test:config_test.py:251 Check the value of the nsslapd-defaultnamingcontext has not changed INFO  tests.suites.config.config_test:config_test.py:254 Remove the newly added suffix and check the values of the attribute is not changed INFO  tests.suites.config.config_test:config_test.py:258 Remove all the suffix at the end
Passed suites/config/config_test.py::test_allow_add_delete_config_attributes 5.18
-------------------------------Captured log call--------------------------------
INFO  tests.suites.config.config_test:config_test.py:308 Add a new valid attribute at runtime to cn=config INFO  tests.suites.config.config_test:config_test.py:312 Delete nsslapd-listenhost to restore the default value INFO  tests.suites.config.config_test:config_test.py:317 Add new invalid attribute at runtime to cn=config INFO  tests.suites.config.config_test:config_test.py:321 Make sure the invalid attribute is not added
Passed suites/config/config_test.py::test_ignore_virtual_attrs 0.62
-------------------------------Captured log call--------------------------------
INFO  tests.suites.config.config_test:config_test.py:354 Check the attribute nsslapd-ignore-virtual-attrs is present in cn=config INFO  tests.suites.config.config_test:config_test.py:357 Check the default value of attribute nsslapd-ignore-virtual-attrs should be OFF INFO  tests.suites.config.config_test:config_test.py:360 Set the valid values i.e. on/ON and off/OFF for nsslapd-ignore-virtual-attrs INFO  tests.suites.config.config_test:config_test.py:365 Set invalid value for attribute nsslapd-ignore-virtual-attrs INFO  tests.suites.config.config_test:config_test.py:376 Add cosPointer, cosTemplate and test entry to default suffix, where virtual attribute is postal code INFO  tests.suites.config.config_test:config_test.py:389 Test if virtual attribute i.e. postal code shown in test entry while nsslapd-ignore-virtual-attrs: off INFO  tests.suites.config.config_test:config_test.py:392 Set nsslapd-ignore-virtual-attrs=on INFO  tests.suites.config.config_test:config_test.py:395 Test if virtual attribute i.e. postal code not shown while nsslapd-ignore-virtual-attrs: on
Passed suites/config/config_test.py::test_ndn_cache_enabled 9.10
-------------------------------Captured log call--------------------------------
INFO  tests.suites.config.config_test:config_test.py:423 Check the attribute nsslapd-ndn-cache-enabled is present in cn=config INFO  tests.suites.config.config_test:config_test.py:426 Check the attribute nsslapd-ndn-cache-enabled has the default value set as ON INFO  tests.suites.config.config_test:config_test.py:429 Check the attribute nsslapd-ndn-cache-max-size is present in cn=config INFO  tests.suites.config.config_test:config_test.py:435 Ticket#49593 : NDN cache stats should be under the global stats - Implemented in 1.4 INFO  tests.suites.config.config_test:config_test.py:436 Fetch the monitor value according to the ds version INFO  tests.suites.config.config_test:config_test.py:442 Check the backend monitor output for Normalized DN cache statistics, while nsslapd-ndn-cache-enabled is off INFO  tests.suites.config.config_test:config_test.py:448 Check the backend monitor output for Normalized DN cache statistics, while nsslapd-ndn-cache-enabled is on INFO  tests.suites.config.config_test:config_test.py:454 Set invalid value for nsslapd-ndn-cache-enabled INFO  tests.suites.config.config_test:config_test.py:458 Set invalid value for nsslapd-ndn-cache-max-size
Passed suites/config/config_test.py::test_require_index 1.80
No log output captured.
Passed suites/config/config_test.py::test_require_internal_index 5.12
No log output captured.
Passed suites/config/regression_test.py::test_maxbersize_repl 7.27
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.config.regression_test:regression_test.py:100 Set nsslapd-errorlog-maxlogsize before nsslapd-errorlog-logmaxdiskspace INFO  tests.suites.config.regression_test:regression_test.py:104 Assert no init_dse_file errors in the error log INFO  tests.suites.config.regression_test:regression_test.py:108 Set nsslapd-errorlog-maxlogsize after nsslapd-errorlog-logmaxdiskspace INFO  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.54
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  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.39
-------------------------------Captured log call--------------------------------
INFO  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.56
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/cos/indirect_cos_test.py::test_indirect_cos 1.29
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. INFO  tests.suites.cos.indirect_cos_test:indirect_cos_test.py:107 Add custom schema... INFO  tests.suites.cos.indirect_cos_test:indirect_cos_test.py:120 Add test user... INFO  tests.suites.cos.indirect_cos_test:indirect_cos_test.py:137 Setup indirect COS...
-------------------------------Captured log call--------------------------------
INFO  tests.suites.cos.indirect_cos_test:indirect_cos_test.py:157 Checking user... INFO  tests.suites.cos.indirect_cos_test:indirect_cos_test.py:56 Create password policy for subtree ou=people,dc=example,dc=com INFO  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.58
-----------------------------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-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
------------------------------Captured stderr call------------------------------
25+0 records in 25+0 records out 26214400 bytes (26 MB, 25 MiB) copied, 0.0120434 s, 2.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 10465280 bytes (10 MB, 10 MiB) copied, 0.00609896 s, 1.7 GB/s
Passed suites/disk_monitoring/disk_monitoring_test.py::test_free_up_the_disk_space_and_change_ds_config 4.47
No log output captured.
Passed suites/disk_monitoring/disk_monitoring_test.py::test_verify_operation_with_nsslapd_disk_monitoring_logging_critical_off 34.93
------------------------------Captured stderr call------------------------------
10+0 records in 10+0 records out 10485760 bytes (10 MB, 10 MiB) copied, 0.0101904 s, 1.0 GB/s
Passed suites/disk_monitoring/disk_monitoring_test.py::test_operation_with_nsslapd_disk_monitoring_logging_critical_on_below_half_of_the_threshold 25.30
------------------------------Captured stderr call------------------------------
31+0 records in 31+0 records out 32505856 bytes (33 MB, 31 MiB) copied, 0.0467332 s, 696 MB/s
Passed suites/disk_monitoring/disk_monitoring_test.py::test_setting_nsslapd_disk_monitoring_logging_critical_to_off 3.61
No log output captured.
Passed suites/disk_monitoring/disk_monitoring_test.py::test_operation_with_nsslapd_disk_monitoring_logging_critical_off 77.31
------------------------------Captured stderr call------------------------------
10+0 records in 10+0 records out 10485760 bytes (10 MB, 10 MiB) copied, 0.0154513 s, 679 MB/s
Passed suites/disk_monitoring/disk_monitoring_test.py::test_operation_with_nsslapd_disk_monitoring_logging_critical_off_below_half_of_the_threshold 160.33
------------------------------Captured stderr call------------------------------
30+0 records in 30+0 records out 31457280 bytes (31 MB, 30 MiB) copied, 0.022689 s, 1.4 GB/s
Passed suites/disk_monitoring/disk_monitoring_test.py::test_go_straight_below_half_of_the_threshold 108.20
------------------------------Captured stderr call------------------------------
31+0 records in 31+0 records out 32505856 bytes (33 MB, 31 MiB) copied, 0.0428569 s, 758 MB/s
Passed suites/disk_monitoring/disk_monitoring_test.py::test_readonly_on_threshold 28.28
------------------------------Captured stderr call------------------------------
10+0 records in 10+0 records out 10485760 bytes (10 MB, 10 MiB) copied, 0.00627923 s, 1.7 GB/s
Passed suites/disk_monitoring/disk_monitoring_test.py::test_readonly_on_threshold_below_half_of_the_threshold 49.85
------------------------------Captured stderr call------------------------------
31+0 records in 31+0 records out 32505856 bytes (33 MB, 31 MiB) copied, 0.0147328 s, 2.2 GB/s
Passed suites/disk_monitoring/disk_monitoring_test.py::test_below_half_of_the_threshold_not_starting_after_shutdown 112.26
------------------------------Captured stderr call------------------------------
31+0 records in 31+0 records out 32505856 bytes (33 MB, 31 MiB) copied, 0.0133826 s, 2.4 GB/s
-------------------------------Captured log call--------------------------------
INFO  lib389:disk_monitoring_test.py:582 Instance start up has failed as expected
Passed suites/disk_monitoring/disk_monitoring_test.py::test_go_straight_below_4kb 18.18
------------------------------Captured stderr call------------------------------
25+0 records in 25+0 records out 26214400 bytes (26 MB, 25 MiB) copied, 0.0113751 s, 2.3 GB/s dd: error writing '/var/log/dirsrv/slapd-standalone1/foo1': No space left on device 10+0 records in 9+0 records out 10174464 bytes (10 MB, 9.7 MiB) copied, 0.00474509 s, 2.1 GB/s
Passed suites/disk_monitoring/disk_monitoring_test.py::test_threshold_to_overflow_value 0.03
No log output captured.
Passed suites/disk_monitoring/disk_monitoring_test.py::test_threshold_is_reached_to_half 14.49
------------------------------Captured stderr call------------------------------
10+0 records in 10+0 records out 10485760 bytes (10 MB, 10 MiB) copied, 0.00757838 s, 1.4 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.02
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 3.98
No log output captured.
Passed suites/disk_monitoring/disk_space_test.py::test_basic 0.00
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  lib389:disk_space_test.py:37 Check that "partition", "size", "used", "available", "use%" words are present in the string INFO  lib389:disk_space_test.py:41 Check that the sizes are numbers
Passed suites/ds_logs/ds_logs_test.py::test_check_default 0.00
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
DEBUG  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:233 on
Passed suites/ds_logs/ds_logs_test.py::test_plugin_set_invalid 0.00
-------------------------------Captured log call--------------------------------
INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:252 test_plugin_set_invalid - Expect to fail with junk value
Passed suites/ds_logs/ds_logs_test.py::test_log_plugin_on 4.38
-------------------------------Captured log call--------------------------------
INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:279 Bug 1273549 - Check access logs for millisecond, when attribute is ON INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:280 perform any ldap operation, which will trigger the logs INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:36 Adding 10 users INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:284 Restart the server to flush the logs INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:287 parse the access logs
Passed suites/ds_logs/ds_logs_test.py::test_log_plugin_off 12.54
-------------------------------Captured log call--------------------------------
INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:319 Bug 1273549 - Check access logs for missing millisecond, when attribute is OFF INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:321 test_log_plugin_off - set the configuration attribute to OFF INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:324 Restart the server to flush the logs INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:327 test_log_plugin_off - delete the previous access logs INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:36 Adding 10 users INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:334 Restart the server to flush the logs INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:337 check access log that microseconds are not present
Passed suites/ds_logs/ds_logs_test.py::test_internal_log_server_level_0 4.48
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:200 Disable access log buffering
-------------------------------Captured log call--------------------------------
INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:365 Set nsslapd-plugin-logging to on INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:368 Configure access log level to 0 INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:372 Restart the server to flush the logs INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:376 Check if access log does not contain internal log of MOD operation INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:382 Check if the other internal operations are not present
Passed suites/ds_logs/ds_logs_test.py::test_internal_log_server_level_4 6.24
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:200 Disable access log buffering
-------------------------------Captured log call--------------------------------
INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:414 Set nsslapd-plugin-logging to on INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:417 Configure access log level to 4 INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:421 Restart the server to flush the logs INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:426 Check if access log contains internal MOD operation in correct format INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:432 Check if the other internal operations have the correct format
Passed suites/ds_logs/ds_logs_test.py::test_internal_log_level_260 6.88
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:102 Enable automember plugin INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:106 Enable Referential Integrity plugin INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:110 Set nsslapd-plugin-logging to on INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:113 Restart the server INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:120 Configure access log level to 260 INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:86 Renaming user INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:89 Delete the user INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:92 Delete automember entry, org. unit and group for the next test INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:200 Disable access log buffering
-------------------------------Captured log call--------------------------------
INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:472 Restart the server to flush the logs INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:476 Check the access logs for ADD operation of the user INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:492 Check the access logs for MOD operation of the user INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:506 Check the access logs for DEL operation of the user INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:518 Check if the other internal operations have the correct format
Passed suites/ds_logs/ds_logs_test.py::test_internal_log_level_131076 6.81
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:120 Configure access log level to 131076 INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:86 Renaming user INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:89 Delete the user INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:92 Delete automember entry, org. unit and group for the next test INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:200 Disable access log buffering
-------------------------------Captured log call--------------------------------
INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:557 Restart the server to flush the logs INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:561 Check the access logs for ADD operation of the user INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:577 Check the access logs for MOD operation of the user INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:591 Check the access logs for DEL operation of the user INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:603 Check if the other internal operations have the correct format
Passed suites/ds_logs/ds_logs_test.py::test_internal_log_level_516 6.74
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:120 Configure access log level to 516 INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:86 Renaming user INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:89 Delete the user INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:92 Delete automember entry, org. unit and group for the next test INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:200 Disable access log buffering
-------------------------------Captured log call--------------------------------
INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:642 Restart the server to flush the logs INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:646 Check the access logs for ADD operation of the user INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:665 Check the access logs for MOD operation of the user INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:682 Check the access logs for DEL operation of the user INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:697 Check if the other internal operations have the correct format
Passed suites/ds_logs/ds_logs_test.py::test_access_log_truncated_search_message 4.81
-------------------------------Captured log call--------------------------------
INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:724 Make a search INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:727 Restart the server to flush the logs
Passed suites/ds_logs/ds_logs_test.py::test_etime_at_border_of_second 22.23
No log output captured.
Passed suites/ds_logs/ds_logs_test.py::test_etime_order_of_magnitude 2.73
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:200 Disable access log buffering
-------------------------------Captured log call--------------------------------
INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:814 add_users INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:36 Adding 30 users INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:817 search users INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:820 parse the access logs to get the SRCH string INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:828 get the operation start time from the SRCH string INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:832 get the OP number from the SRCH string INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:836 get the RESULT string matching the SRCH OP number INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:844 get the operation end time from the RESULT string INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:848 get the logged etime for the operation from the RESULT string INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:852 Calculate the ratio between logged etime for the operation and elapsed time from its start time to its end time - should be around 1
Passed suites/ds_logs/ds_logs_test.py::test_audit_log_rotate_and_check_string 7.75
-------------------------------Captured log call--------------------------------
INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:940 Doing modifications to rotate audit log INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:945 Doing one more modification just in case INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:952 Check that DS string is present on first line INFO  tests.suites.ds_logs.ds_logs_test:ds_logs_test.py:956 Check that DS string is present only once
Passed suites/ds_logs/regression_test.py::test_default_loglevel_stripped[24576] 0.25
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/ds_logs/regression_test.py::test_default_loglevel_stripped[16512] 0.03
No log output captured.
Passed suites/ds_logs/regression_test.py::test_default_loglevel_stripped[16385] 1.14
No log output captured.
Passed suites/ds_logs/regression_test.py::test_dse_config_loglevel_error 12.94
No log output captured.
Passed suites/ds_tools/logpipe_test.py::test_user_permissions 0.04
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. INFO  tests.suites.ds_tools.logpipe_test:logpipe_test.py:32 Add system test user - dirsrv_testuser
-------------------------------Captured log call--------------------------------
INFO  tests.suites.ds_tools.logpipe_test:logpipe_test.py:68 Try to create a logpipe in the log directory with "-u" option specifying the user
Passed suites/ds_tools/replcheck_test.py::test_state 0.58
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect facfc0a4-69cc-4a2c-9b2b-2688ef39dd4c / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect e18ad411-8532-4508-b9bf-e7157faf6f11 / got description=facfc0a4-69cc-4a2c-9b2b-2688ef39dd4c) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.replica:replica.py:2515 Retry: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 is NOT working (expect 828ceaf6-9237-4730-bdb4-4fe1da047a36 / got description=e18ad411-8532-4508-b9bf-e7157faf6f11) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 is working INFO  tests.suites.ds_tools.replcheck_test:replcheck_test.py:101 Export LDAPTLS_CACERTDIR env variable for ds-replcheck INFO  lib389.replica:replica.py:2515 Retry: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 is NOT working (expect 9af851f2-7b0f-4e9d-b3f1-75431f736fea / got description=828ceaf6-9237-4730-bdb4-4fe1da047a36) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 is NOT working (expect c930a1c4-60f1-4f2d-b70b-a106e8fdcf1b / got description=9af851f2-7b0f-4e9d-b3f1-75431f736fea) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 is working
Passed suites/ds_tools/replcheck_test.py::test_check_ruv 17.08
------------------------------Captured stderr call------------------------------
ldiffile: /tmp/export_master1.ldif ldiffile: /tmp/export_master2.ldif
Passed suites/ds_tools/replcheck_test.py::test_missing_entries 18.66
------------------------------Captured stderr call------------------------------
ldiffile: /tmp/export_master1.ldif ldiffile: /tmp/export_master2.ldif
Passed suites/ds_tools/replcheck_test.py::test_tombstones 21.07
------------------------------Captured stderr call------------------------------
ldiffile: /tmp/export_master1.ldif ldiffile: /tmp/export_master2.ldif
Passed suites/ds_tools/replcheck_test.py::test_conflict_entries 28.16
------------------------------Captured stderr call------------------------------
ldiffile: /tmp/export_master1.ldif ldiffile: /tmp/export_master2.ldif
Passed suites/ds_tools/replcheck_test.py::test_inconsistencies 23.35
------------------------------Captured stderr call------------------------------
ldiffile: /tmp/export_master1.ldif ldiffile: /tmp/export_master2.ldif
Passed suites/ds_tools/replcheck_test.py::test_suffix_exists 0.51
No log output captured.
Passed suites/ds_tools/replcheck_test.py::test_check_missing_tombstones 18.30
------------------------------Captured stderr call------------------------------
ldiffile: /tmp/export_master1.ldif ldiffile: /tmp/export_master2.ldif
Passed suites/ds_tools/replcheck_test.py::test_dsreplcheck_with_password_file 0.01
No log output captured.
Passed suites/ds_tools/replcheck_test.py::test_dsreplcheck_timeout_connection_mechanisms 1.59
-------------------------------Captured log call--------------------------------
INFO  tests.suites.ds_tools.replcheck_test:replcheck_test.py:535 Run ds-replcheck with -t option
Passed suites/dynamic_plugins/notice_for_restart_test.py::test_notice_when_dynamic_not_enabled 4.58
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/export/export_test.py::test_dbtasks_db2ldif_with_non_accessible_ldif_file_path 4.72
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
------------------------------Captured stderr call------------------------------
ldiffile: /tmp/nonexistent/export.ldif
-------------------------------Captured log call--------------------------------
INFO  lib389.utils:export_test.py:63 Stopping the instance... INFO  lib389.utils:export_test.py:66 Performing an offline export to a non accessible ldif file path - should fail properly CRITICAL LogCapture:dbtasks.py:40 db2ldif failed INFO  lib389.utils:export_test.py:33 checking output msg INFO  lib389.utils:export_test.py:38 Clear the log INFO  lib389.utils:export_test.py:70 parsing the errors log to search for the error reported INFO  lib389.utils:export_test.py:79 Restarting the instance...
Passed suites/export/export_test.py::test_db2ldif_cli_with_non_accessible_ldif_file_path 3.80
------------------------------Captured stdout call------------------------------
Exported ldif file: /tmp/nonexistent/export.ldif
------------------------------Captured stderr call------------------------------
[24/Oct/2020:20:01:38.610164646 -0400] - INFO - slapd_exemode_db2ldif - db2ldif - Backend Instance(s): [24/Oct/2020:20:01:38.616078326 -0400] - INFO - slapd_exemode_db2ldif - db2ldif - userRoot ldiffile: /tmp/nonexistent/export.ldif
-------------------------------Captured log call--------------------------------
INFO  lib389.utils:export_test.py:104 Stopping the instance... INFO  lib389.utils:export_test.py:107 Performing an offline export to a non accessible ldif file path - should fail properly INFO  lib389.utils:export_test.py:115 db2ldif failed properly: error (255) INFO  lib389.utils:export_test.py:118 parsing the errors log to search for the error reported INFO  lib389.utils:export_test.py:121 error string : '[24/Oct/2020:20:01:34.793342714 -0400] - ERR - bdb_db2ldif - db2ldif: userRoot: can\'t open /tmp/nonexistent/export.ldif: 2 (No such file or directory) while running as user "dirsrv"\n', '[24/Oct/2020:20:01:38.630367319 -0400] - ERR - bdb_db2ldif - db2ldif: userRoot: can\'t open /tmp/nonexistent/export.ldif: 2 (No such file or directory) while running as user "dirsrv"\n' INFO  lib389.utils:export_test.py:123 Restarting the instance...
Passed suites/filter/basic_filter_test.py::test_search_attr 0.84
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/filter/bitw_filter_test.py::test_bitwise_plugin_status 0.00
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/filter/bitw_filter_test.py::test_search_disabled_accounts 0.01
No log output captured.
Passed suites/filter/bitw_filter_test.py::test_plugin_can_be_disabled 3.80
No log output captured.
Passed suites/filter/bitw_filter_test.py::test_plugin_is_disabled 0.00
No log output captured.
Passed suites/filter/bitw_filter_test.py::test_enabling_works_fine 4.40
No log output captured.
Passed suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (testUserAccountControl:1.2.840.113556.1.4.803:=513))-1] 0.01
No log output captured.
Passed suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (testUserAccountControl:1.2.840.113556.1.4.803:=16777216))-1] 0.01
No log output captured.
Passed suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (testUserAccountControl:1.2.840.113556.1.4.803:=8388608))-1] 0.01
No log output captured.
Passed suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (testUserAccountControl:1.2.840.113556.1.4.804:=5))-3] 0.16
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.00
No log output captured.
Passed suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (&(testUserAccountControl:1.2.840.113556.1.4.803:=98536)(testUserAccountControl:1.2.840.113556.1.4.803:=912)))-0] 0.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:=87)(testUserAccountControl:1.2.840.113556.1.4.804:=91)))-8] 0.01
No log output captured.
Passed suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (&(testUserAccountControl:1.2.840.113556.1.4.803:=89536)(testUserAccountControl:1.2.840.113556.1.4.804:=79)))-1] 0.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:=89536)(testUserAccountControl:1.2.840.113556.1.4.804:=79)))-8] 0.01
No log output captured.
Passed suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (|(testUserAccountControl:1.2.840.113556.1.4.803:=89)(testUserAccountControl:1.2.840.113556.1.4.803:=536)))-0] 0.00
No log output captured.
Passed suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (testUserAccountControl:1.2.840.113556.1.4.803:=x))-13] 0.01
No log output captured.
Passed suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (testUserAccountControl:1.2.840.113556.1.4.803:=&\*#$%))-13] 0.01
No log output captured.
Passed suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (testUserAccountControl:1.2.840.113556.1.4.803:=-65536))-0] 0.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.01
No log output captured.
Passed suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (testUserAccountControl:1.2.840.113556.1.4.803:=\*))-13] 0.01
No log output captured.
Passed suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson) (testUserAccountControl:1.2.840.113556.1.4.804:=\*))-0] 0.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:=6552))-0] 0.01
No log output captured.
Passed suites/filter/bitw_filter_test.py::test_all_together[(& (objectclass=testperson\))(testUserAccountControl:1.2.840.113556.1.4.804:=6552))-0] 0.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.01
No log output captured.
Passed suites/filter/bitw_filter_test.py::test_5_entries 0.23
No log output captured.
Passed suites/filter/bitw_filter_test.py::test_5_entries1 0.45
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-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(&(uid=uid1)(sn=last1)(givenname=first1))"...
Passed suites/filter/complex_filters_test.py::test_filters[(&(uid=uid1)(&(sn=last1)(givenname=first1)))-1] 0.01
-------------------------------Captured log call--------------------------------
INFO  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--------------------------------
INFO  tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(&(uid=uid1)(&(&(sn=last1))(&(givenname=first1))))"...
Passed suites/filter/complex_filters_test.py::test_filters[(&(uid=*)(sn=last3)(givenname=*))-1] 0.00
-------------------------------Captured log call--------------------------------
INFO  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.00
-------------------------------Captured log call--------------------------------
INFO  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--------------------------------
INFO  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.01
-------------------------------Captured log call--------------------------------
INFO  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--------------------------------
INFO  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--------------------------------
INFO  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--------------------------------
INFO  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--------------------------------
INFO  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.00
-------------------------------Captured log call--------------------------------
INFO  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--------------------------------
INFO  tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(|(&(objectclass=*)(sn=last1))(|(givenname=first1)))"...
Passed suites/filter/complex_filters_test.py::test_filters[(|(&(objectclass=*)(sn=last))(|(givenname=first1)))-1] 0.00
-------------------------------Captured log call--------------------------------
INFO  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--------------------------------
INFO  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--------------------------------
INFO  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.01
-------------------------------Captured log call--------------------------------
INFO  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--------------------------------
INFO  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--------------------------------
INFO  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--------------------------------
INFO  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.01
-------------------------------Captured log call--------------------------------
INFO  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--------------------------------
INFO  tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(|(&(uid=uid1)(uid=NULL))(sn=last2))"...
Passed suites/filter/complex_filters_test.py::test_filters[(&(uid=uid5)(sn=*)(cn=*)(givenname=*)(uid=u*)(sn=la*)(cn=full*)(givenname=f*)(uid>=u)(!(givenname=NULL)))-1] 0.00
-------------------------------Captured log call--------------------------------
INFO  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--------------------------------
INFO  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--------------------------------
INFO  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--------------------------------
INFO  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--------------------------------
INFO  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--------------------------------
INFO  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.01
-------------------------------Captured log call--------------------------------
INFO  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--------------------------------
INFO  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--------------------------------
INFO  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--------------------------------
INFO  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--------------------------------
INFO  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--------------------------------
INFO  tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(uid>=uid3)"...
Passed suites/filter/complex_filters_test.py::test_filters[(&(uid=*)(uid>=uid3))-3] 0.00
-------------------------------Captured log call--------------------------------
INFO  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.01
-------------------------------Captured log call--------------------------------
INFO  tests.suites.filter.complex_filters_test:complex_filters_test.py:122 Testing filter "(|(uid>=uid3)(uid<=uid5))"...
Passed suites/filter/complex_filters_test.py::test_filters[(&(uid>=uid3)(uid<=uid5))-3] 0.00
-------------------------------Captured log call--------------------------------
INFO  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--------------------------------
INFO  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 21.45
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/filter/filter_index_match_test.py::test_valid_invalid_attributes[index0] 0.05
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/filter/filter_index_match_test.py::test_valid_invalid_attributes[index1] 0.02
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.02
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_valid_invalid_attributes[index6] 0.01
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_valid_invalid_attributes[index7] 0.01
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_valid_invalid_attributes[index8] 0.10
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_valid_invalid_attributes[index9] 0.02
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_valid_invalid_attributes[index10] 0.02
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.02
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_valid_invalid_attributes[index13] 0.02
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_valid_invalid_attributes[index14] 0.02
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_valid_invalid_attributes[index15] 0.02
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_valid_invalid_attributes[index16] 0.02
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_valid_invalid_attributes[index17] 0.02
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods[mod0] 0.04
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods[mod1] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods[mod2] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods[mod3] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods[mod4] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods[mod5] 0.04
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods[mod6] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods[mod7] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods[mod8] 0.04
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods[mod9] 0.04
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods[mod10] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods[mod11] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods[mod12] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods[mod13] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods[mod14] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods[mod15] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods[mod16] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods[mod17] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_replace[mode0] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_replace[mode1] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_replace[mode2] 0.04
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_replace[mode3] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_replace[mode4] 0.04
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_replace[mode5] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_replace[mode6] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_replace[mode7] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_replace[mode8] 0.03
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.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_replace[mode11] 0.04
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_replace[mode12] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_replace[mode13] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_replace[mode14] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_replace[mode15] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_replace[mode16] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_replace[mode17] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_delete[mode0] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_delete[mode1] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_delete[mode2] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_delete[mode3] 0.04
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_delete[mode4] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_delete[mode5] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_delete[mode6] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_delete[mode7] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_delete[mode8] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_delete[mode9] 0.28
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_delete[mode10] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_delete[mode11] 0.05
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.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_delete[mode14] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_delete[mode15] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_delete[mode16] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_mods_delete[mode17] 0.03
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_search_positive_negative 0.27
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.01
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreIA5Match:caseIgnoreIA5Match:=sprain1)-1] 0.01
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreMatch:caseIgnoreMatch:=ÇélIné Ändrè1)-1] 0.00
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreMatch:caseIgnoreOrderingMatch:=ÇélIné Ändrè1)-6] 0.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.01
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.00
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.00
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrintegerMatch:integerOrderingMatch:=-2)-6] 0.01
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.01
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrnumericStringMatch:numericStringMatch:=00001)-10] 0.01
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrnumericStringMatch:numericStringMatch:=00001)-11] 0.01
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.01
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseExactMatch=ÇélIné Ändrè*)-1] 0.01
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseExactMatch=*ÇélIné Ändrè)-1] 0.00
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseExactMatch=*é Ä*)-5] 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.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=*rai*)-3] 0.01
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreIA5Match=*sprain1*)-1] 0.01
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreIA5Match=sprain1*)-1] 0.01
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreIA5Match=*sprain1)-1] 0.00
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreIA5Match=*rai*)-6] 0.00
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreMatch=*ÇélIné Ändrè1*)-1] 0.00
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreMatch=ÇélIné Ändrè1*)-1] 0.00
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreMatch=*ÇélIné Ändrè1)-1] 0.00
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreMatch=*é Ä*)-6] 0.01
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreListMatch=*foo1$bar*)-1] 0.00
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreListMatch=foo1$bar*)-1] 0.01
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrcaseIgnoreListMatch=*foo1$bar)-1] 0.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.01
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrnumericStringMatch=*000*)-6] 0.01
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrtelephoneNumberMatch=*+1 408 555 4798*)-1] 0.01
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrtelephoneNumberMatch=+1 408 555 4798*)-1] 0.01
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrtelephoneNumberMatch=*+1 408 555 4798)-1] 0.00
No log output captured.
Passed suites/filter/filter_index_match_test.py::test_do_extensible_search[(attrtelephoneNumberMatch=* 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-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/filter/filter_indexing_test.py::test_positive[(|(|(ou=people)(ou=nothing1))(|(ou=nothing2)(ou=nothing3)))] 0.01
No log output captured.
Passed suites/filter/filter_indexing_test.py::test_positive[(|(|(ou=nothing1)(ou=nothing2))(|(ou=people)(ou=nothing3)))] 0.00
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.01
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 3.53
No log output captured.
Passed suites/filter/filter_indexing_test.py::test_indexing[(uidNumber=18446744073709551617)] 0.00
No log output captured.
Passed suites/filter/filter_indexing_test.py::test_indexing[(gidNumber=18446744073709551617)] 0.01
No log output captured.
Passed suites/filter/filter_indexing_test.py::test_indexing[(MYINTATTR=18446744073709551617)] 0.00
No log output captured.
Passed suites/filter/filter_indexing_test.py::test_indexing[(&(uidNumber=*)(!(uidNumber=18446744073709551617)))] 0.01
No log output captured.
Passed suites/filter/filter_indexing_test.py::test_indexing[(&(gidNumber=*)(!(gidNumber=18446744073709551617)))] 0.01
No log output captured.
Passed suites/filter/filter_indexing_test.py::test_indexing[(&(uidNumber=*)(!(gidNumber=18446744073709551617)))] 0.02
No log output captured.
Passed suites/filter/filter_indexing_test.py::test_indexing[(&(myintattr=*)(!(myintattr=18446744073709551617)))] 0.16
No log output captured.
Passed suites/filter/filter_indexing_test.py::test_indexing[(uidNumber>=-18446744073709551617)] 0.01
No log output captured.
Passed suites/filter/filter_indexing_test.py::test_indexing[(gidNumber>=-18446744073709551617)] 0.00
No log output captured.
Passed suites/filter/filter_indexing_test.py::test_indexing[(uidNumber<=18446744073709551617)] 0.16
No log output captured.
Passed suites/filter/filter_indexing_test.py::test_indexing[(gidNumber<=18446744073709551617)] 0.01
No log output captured.
Passed suites/filter/filter_indexing_test.py::test_indexing[(myintattr<=18446744073709551617)] 0.01
No log output captured.
Passed suites/filter/filter_indexing_test.py::test_indexing_negative[(gidNumber=54321)] 0.00
No log output captured.
Passed suites/filter/filter_indexing_test.py::test_indexing_negative[(uidNumber=54321)] 0.01
No log output captured.
Passed suites/filter/filter_indexing_test.py::test_indexing_negative[(myintattr=54321)] 0.00
No log output captured.
Passed suites/filter/filter_indexing_test.py::test_indexing_negative[(gidNumber<=-999999999999999999999999999999)] 0.00
No log output captured.
Passed suites/filter/filter_indexing_test.py::test_indexing_negative[(uidNumber<=-999999999999999999999999999999)] 0.01
No log output captured.
Passed suites/filter/filter_indexing_test.py::test_indexing_negative[(myintattr<=-999999999999999999999999999999)] 0.00
No log output captured.
Passed suites/filter/filter_indexing_test.py::test_indexing_negative[(gidNumber>=999999999999999999999999999999)] 0.00
No log output captured.
Passed suites/filter/filter_indexing_test.py::test_indexing_negative[(uidNumber>=999999999999999999999999999999)] 0.00
No log output captured.
Passed suites/filter/filter_indexing_test.py::test_indexing_negative[(myintattr>=999999999999999999999999999999)] 0.00
No log output captured.
Passed suites/filter/filter_logic_test.py::test_eq 0.16
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/filter/filter_logic_test.py::test_sub 0.01
No log output captured.
Passed suites/filter/filter_logic_test.py::test_not_eq 0.00
No log output captured.
Passed suites/filter/filter_logic_test.py::test_ranges 0.01
No log output captured.
Passed suites/filter/filter_logic_test.py::test_and_eq 0.02
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.01
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.02
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.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_matching_rules 0.09
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/filter/filter_match_test.py::test_add_attribute_types 1.16
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.02
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule5] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule6] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule7] 0.03
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule8] 0.02
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.02
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule11] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule12] 0.02
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.02
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule16] 0.02
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_attributes[rule17] 0.02
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_modes[mode0] 0.05
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_modes[mode1] 0.03
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_modes[mode2] 0.03
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_modes[mode3] 0.19
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_modes[mode4] 0.04
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_modes[mode5] 0.03
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_modes[mode6] 0.03
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_modes[mode7] 0.51
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_modes[mode8] 0.03
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_modes[mode9] 0.03
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_modes[mode10] 0.03
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_modes[mode11] 0.03
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_modes[mode12] 0.03
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_modes[mode13] 0.03
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_modes[mode14] 0.03
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_modes[mode15] 0.08
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_modes[mode16] 0.03
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_modes[mode17] 0.03
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode0] 0.05
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode1] 0.05
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode2] 0.06
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode3] 0.05
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode4] 0.30
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode5] 0.05
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode6] 0.06
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode7] 0.05
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode8] 0.06
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode9] 0.07
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode10] 0.06
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode11] 0.05
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode12] 0.05
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode13] 0.05
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode14] 0.06
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode15] 0.05
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode16] 0.05
No log output captured.
Passed suites/filter/filter_match_test.py::test_valid_invalid_mode_replace[mode17] 0.05
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.25
No log output captured.
Passed suites/filter/filter_match_test.py::test_match_count[(attrcaseIgnoreMatch=ÇélIné Ändrè1)-1-(attrcaseIgnoreMatch=ÇélIné Ändrè9999)] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_match_count[(attrcaseIgnoreMatch>=ÇélIné Ändrè1)-6-(attrcaseIgnoreMatch>=ÇélIné Ändrè9999)] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_match_count[(attrcaseIgnoreListMatch=foo1$bar)-1-(attrcaseIgnoreListMatch=foo1$bar$baz$biff)] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_match_count[(attrobjectIdentifierMatch=1.3.6.1.4.1.1466.115.121.1.15)-1-(attrobjectIdentifierMatch=1.3.6.1.4.1.1466.115.121.1.15.99999)] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_match_count[(attrgeneralizedTimeMatch>=20100218171300Z)-6-(attroctetStringMatch>=AAAAAAAAAAABAQQ=)] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_match_count[(attrdirectoryStringFirstComponentMatch=ÇélIné Ändrè1)-1-(attrdirectoryStringFirstComponentMatch=ÇélIné Ändrè9999)] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_match_count[(attrobjectIdentifierFirstComponentMatch=1.3.6.1.4.1.1466.115.121.1.15)-1-(attrobjectIdentifierFirstComponentMatch=1.3.6.1.4.1.1466.115.121.1.15.99999)] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_match_count[(attrdistinguishedNameMatch=cn=foo1,cn=bar)-1-(attrdistinguishedNameMatch=cn=foo1,cn=bar,cn=baz)] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_match_count[(attrintegerMatch=-2)-1-(attrintegerMatch=-20)] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_match_count[(attrintegerMatch>=-2)-6-(attrintegerMatch>=20)] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_match_count[(attrintegerFirstComponentMatch=-2)-1-(attrintegerFirstComponentMatch=-20)] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_match_count[(attruniqueMemberMatch=cn=foo1,cn=bar#'0001'B)-1-(attruniqueMemberMatch=cn=foo1,cn=bar#'00010000'B)] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_match_count[(attrnumericStringMatch=00001)-1-(attrnumericStringMatch=000000001)] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_match_count[(attrnumericStringMatch>=00001)-6-(attrnumericStringMatch>=01)] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_match_count[(attrtelephoneNumberMatch=+1 408 555 4798)-1-(attrtelephoneNumberMatch=+2 408 555 4798)] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_match_count[(attroctetStringMatch=AAAAAAAAAAAAAAE=)-1-(attroctetStringMatch=AAAAAAAAAAAAAAEB)] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_match_count[(attroctetStringMatch>=AAAAAAAAAAAAAAE=)-6-(attroctetStringMatch>=AAAAAAAAAAABAQE=)] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_extensible_search[(attrbitStringMatch:bitStringMatch:='0001'B)-1] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_extensible_search[(attrcaseExactIA5Match:caseExactIA5Match:=Sprain)-1] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_extensible_search[(attrcaseExactMatch:caseExactMatch:=ÇélIné Ändrè)-1] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_extensible_search[(attrcaseExactMatch:caseExactOrderingMatch:=ÇélIné Ändrè)-5] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_extensible_search[(attrgeneralizedTimeMatch:generalizedTimeMatch:=20100218171300Z)-1] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_extensible_search[(attrgeneralizedTimeMatch:generalizedTimeOrderingMatch:=20100218171300Z)-6] 0.00
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.00
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.00
No log output captured.
Passed suites/filter/filter_match_test.py::test_extensible_search[(attrdistinguishedNameMatch:distinguishedNameMatch:=cn=foo1,cn=bar)-1] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_extensible_search[(attrintegerMatch:integerMatch:=-2)-1] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_extensible_search[(attrintegerMatch:integerOrderingMatch:=-2)-6] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_extensible_search[(attrintegerFirstComponentMatch:integerFirstComponentMatch:=-2)-1] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_extensible_search[(attruniqueMemberMatch:uniqueMemberMatch:=cn=foo1,cn=bar#'0001'B)-1] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_extensible_search[(attrnumericStringMatch:numericStringMatch:=00001)-10] 0.00
No log output captured.
Passed suites/filter/filter_match_test.py::test_extensible_search[(attrnumericStringMatch:numericStringMatch:=00001)-11] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_extensible_search[(attrtelephoneNumberMatch:telephoneNumberMatch:=+1 408 555 4798)-1] 0.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.00
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.00
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.00
No log output captured.
Passed suites/filter/filter_match_test.py::test_extensible_search[(attrcaseExactIA5Match=*Sprain*)-1] 0.00
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.00
No log output captured.
Passed suites/filter/filter_match_test.py::test_extensible_search[(attrcaseExactIA5Match=*rai*)-3] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreIA5Match=*sprain1*)-1] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreIA5Match=sprain1*)-1] 0.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.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreMatch=*ÇélIné Ändrè1*)-1] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreMatch=ÇélIné Ändrè1*)-1] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreMatch=*ÇélIné Ändrè1)-1] 0.00
No log output captured.
Passed suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreMatch=*é Ä*)-6] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreListMatch=*foo1$bar*)-1] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_extensible_search[(attrcaseIgnoreListMatch=foo1$bar*)-1] 0.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.01
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.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_extensible_search[(attrnumericStringMatch=*00001)-1] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_extensible_search[(attrnumericStringMatch=*000*)-6] 0.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.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_extensible_search[(attrtelephoneNumberMatch=*+1 408 555 4798)-1] 0.01
No log output captured.
Passed suites/filter/filter_match_test.py::test_extensible_search[(attrtelephoneNumberMatch=* 55*)-6] 0.01
No log output captured.
Passed suites/filter/filter_test.py::test_filter_escaped 0.10
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.filter.filter_test:filter_test.py:42 Running test_filter_escaped... INFO  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.17
-------------------------------Captured log call--------------------------------
INFO  tests.suites.filter.filter_test:filter_test.py:95 Running test_filter_search_original_attrs... INFO  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.00
-------------------------------Captured log call--------------------------------
INFO  tests.suites.filter.filter_test:filter_test.py:128 Search user using ldapsearch with scope one INFO  tests.suites.filter.filter_test:filter_test.py:130 [dn: cn=Directory Administrators,dc=example,dc=com cn: Directory Administrators ] INFO  tests.suites.filter.filter_test:filter_test.py:132 Search should only have one entry
Passed suites/filter/filter_test.py::test_filter_with_attribute_subtype 0.38
-------------------------------Captured log call--------------------------------
INFO  lib389:filter_test.py:157 Bind as cn=Directory Manager INFO  lib389:filter_test.py:164 ######################### ADD ###################### INFO  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 INFO  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 INFO  lib389:filter_test.py:193 ######################### SEARCH ###################### INFO  lib389:filter_test.py:197 Try to search with filter (&(sn=test_entry en only)(!(cn=test_entry fr))) INFO  lib389:filter_test.py:201 Found cn=test_entry en only,dc=example,dc=com INFO  lib389:filter_test.py:205 Try to search with filter (&(sn=test_entry en only)(!(cn;fr=test_entry fr))) INFO  lib389:filter_test.py:209 Found cn=test_entry en only,dc=example,dc=com INFO  lib389:filter_test.py:213 Try to search with filter (&(sn=test_entry en only)(!(cn;en=test_entry en))) INFO  lib389:filter_test.py:216 Found none INFO  lib389:filter_test.py:218 ######################### DELETE ###################### INFO  lib389:filter_test.py:220 Try to delete cn=test_entry both, dc=example,dc=com INFO  lib389:filter_test.py:223 Try to delete cn=test_entry en only, dc=example,dc=com INFO  tests.suites.filter.filter_test:filter_test.py:226 Testcase PASSED
Passed suites/filter/filter_test.py::test_extended_search 0.04
-------------------------------Captured log call--------------------------------
INFO  tests.suites.filter.filter_test:filter_test.py:253 Running test_filter_escaped... INFO  lib389:filter_test.py:270 Try to search with filter (cn:de:=ext-test-entry) INFO  lib389:filter_test.py:276 Try to search with filter (cn:caseIgnoreIA5Match:=EXT-TEST-ENTRY) INFO  lib389:filter_test.py:282 Try to search with filter (cn:caseIgnoreMatch:=EXT-TEST-ENTRY) INFO  lib389:filter_test.py:288 Try to search with filter (cn:caseExactMatch:=EXT-TEST-ENTRY) INFO  lib389:filter_test.py:294 Try to search with filter (cn:caseExactMatch:=ext-test-entry) INFO  lib389:filter_test.py:300 Try to search with filter (cn:caseExactIA5Match:=EXT-TEST-ENTRY) INFO  lib389:filter_test.py:306 Try to search with filter (cn:caseExactIA5Match:=ext-test-entry)
Passed suites/filter/filter_with_non_root_user_test.py::test_telephone[(telephonenumber=*7393)] 0.04
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/filter/filter_with_non_root_user_test.py::test_telephone[(telephonenumber=*408*3)] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid=mward)] 0.04
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(l=sunnyvale)0] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(mail=jreu*)] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(mail=*exam*)] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid=*)] 0.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.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.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.04
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid:es:=>user100)] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid:2.16.840.1.113730.3.3.2.15.1.5:=user100)] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid:2.16.840.1.113730.3.3.2.15.1.1:=user1)] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid:2.16.840.1.113730.3.3.2.15.1.1:=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.03
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid>=1)] 0.02
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.18
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.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:=>=A)] 0.03
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid:fr:=>=A)] 0.29
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid:2.16.840.1.113730.3.3.2.18.1.4:=A)] 0.03
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid:2.16.840.1.113730.3.3.2.18.1:=>=user20)] 0.03
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid:fr:=>=user20)] 0.04
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid:2.16.840.1.113730.3.3.2.18.1.4:=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:=>=z)] 0.03
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid:fr:=>=z)] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(description=This is the special * attribute value)] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(description=*x*)] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid=ptyler)] 0.01
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid=*wal*)] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(roomNumber=0312)] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(uid=mw*)] 0.01
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.26
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(roomNumber=201)] 0.11
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(roomNumber=202)] 0.01
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(l=*)] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(!(sn~=tiller))(!(uid=ptyler)))] 0.03
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.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(!(uid=*wal*))(!(roomNumber=0312)))] 0.03
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(!(uid=*wal*))(roomNumber=0312))] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(uid=*wal*)(!(roomNumber=0312)))] 0.03
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(uid=*wal*)(|(sn~=tiller) (roomNumber=2295)))] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(&(uid=*wal*) (roomNumber=2295))(&(uid=*wal*) (sn~=tiller)))] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(uid=*wal*)(&(sn~=tiller) (roomNumber=2295)))0] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(|(uid=*wal*) (sn~=tiller))(|(uid=*wal*) (roomNumber=2295)))0] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(uid=*wal*) (roomNumber=2295))0] 0.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.01
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(uid=*wal*)(&(sn~=tiller) (roomNumber=2295)))1] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(uid=*wal*) (roomNumber=2295))] 0.01
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.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(l=Cupertino)(!(|(uid=*wal*)(&(sn~=tiller) (roomNumber=2295)))))] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(l=Cupertino) (|(uid=*wal*)(&(sn~=tiller) (roomNumber=2295))))] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(!(l=Cupertino))(!(|(uid=*wal*)(&(sn~=tiller) (roomNumber=2295)))))] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(!(l=Cupertino))(|(uid=*wal*)(&(sn~=tiller) (roomNumber=2295))))] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(l=Cupertino)(!(|(uid=*wal*)(&(sn~=tiller) (roomNumber=2295)))))] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(!(uid=user1))(objectclass=inetorgperson))] 0.03
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(!(uid=user1))(objectclass=inetorgperson))] 0.04
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.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(roomNumber=2295) (uid=*wal*))1] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(!(roomNumber=200))(!(roomNumber=201))(!(roomNumber=202))(l=sunnyvale))] 0.03
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(!(uid=user40))(&(!(uid=user1))(!(uid=user20))(!(uid=user30))(objectclass=inetorgperson)))] 0.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.28
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.02
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.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.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[(& (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.02
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.28
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(!(|(!(l=*))(!(l=sunnyvale))))] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(!(l=*))(!(l=sunnyvale)))] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(!(l=Cupertino))(!(mail=*exam*))(!(|(uid=*wal*) (l=*))))] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(!(l=Cupertino))(!(mail=*exam*))(|(uid=*wal*) (l=*)))] 0.03
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(!(l=Cupertino))(mail=*exam*) (|(uid=*wal*) (l=*)))] 0.01
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(l=Cupertino) (mail=*exam*) (|(uid=*wal*) (l=*)))] 0.03
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(!(l=Cupertino))(!(mail=*exam*))(!(|(uid=*wal*) (l=*))))] 0.04
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(!(l=Cupertino))(!(mail=*exam*))(|(uid=*wal*) (l=*)))] 0.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.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.04
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(l=Cupertino)(!(mail=*exam*))(|(uid=*wal*) (l=*)))] 0.03
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(|(l=Cupertino) (mail=*exam*)(!(|(uid=*wal*) (l=*))))] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_positive[(&(l=Cupertino)(!(mail=*exam*))(|(uid=*wal*) (l=*)))] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_negative[(userpassword=*)] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_negative[(fred=*)] 0.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.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid:2.16.840.1.113730.3.3.2.15.1:=<user1)] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid:es:=<user1)] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid:2.16.840.1.113730.3.3.2.15.1:=<z)] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid:es:=<z)] 0.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.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid:2.16.840.1.113730.3.3.2.18.1:=<=user20)] 0.01
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid:fr:=<=user20)] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid:2.16.840.1.113730.3.3.2.18.1:=<=z)] 0.01
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid:fr:=<=z)] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_negative[(uid:2.16.840.1.113730.3.3.2.18.1.4:=z)] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_negative[(sn~=tiller)] 0.02
No log output captured.
Passed suites/filter/filter_with_non_root_user_test.py::test_all_negative[(givenName~=pricella)] 0.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.01
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.02
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.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/filter_with_non_root_user_test.py::test_all_negative[(&(l=Cupertino) (mail=*exam*) (|(uid=*wal*) (l=*)))] 0.01
No log output captured.
Passed suites/filter/filterscanlimit_test.py::test_invalid_configuration 0.77
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/filter/filterscanlimit_test.py::test_idlistscanlimit 9.21
No log output captured.
Passed suites/filter/large_filter_test.py::test_large_filter[(&(objectClass=person)(|(manager=uid=fmcdonnagh,dc=anuj,dc=com)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_0,dc=anuj,dc=com)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_1,dc=anuj,dc=com)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_2,dc=anuj,dc=com)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_3,dc=anuj,dc=com)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_4,dc=anuj,dc=com)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_5,dc=anuj,dc=com)(manager=uid=jvedder, dc=anuj, dc=com)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_6,dc=anuj,dc=com)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_7,dc=anuj,dc=com)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_8,dc=anuj,dc=com)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_9,dc=anuj,dc=com)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_10,dc=anuj,dc=com)(manager=uid=cnewport, dc=anuj, dc=com)))] 0.05
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/filter/large_filter_test.py::test_large_filter[(&(objectClass=person)(|(manager=uid=fmcdonnagh *)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_0,*)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_1,*)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_2,*)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_3,*)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_4,*)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_5,*)(manager=uid=jvedder,*)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_6,*)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_7,*)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_8,*)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_9,*)(manager=cn=no_such_entry_with_a_really_long_dn_component_to_stress_the_filter_handling_code_10,*)(manager=uid=cnewport,*)))] 0.02
No log output captured.
Passed suites/filter/rfc3673_all_oper_attrs_test.py::test_supported_features 0.01
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/filter/rfc3673_all_oper_attrs_test.py::test_search_basic[-False-oper_attr_list0-] 0.26
-------------------------------Captured log call--------------------------------
INFO  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--------------------------------
INFO  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.16
-------------------------------Captured log call--------------------------------
INFO  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.03
-------------------------------Captured log call--------------------------------
INFO  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.25
-------------------------------Captured log call--------------------------------
INFO  lib389.utils:rfc3673_all_oper_attrs_test.py:144 bound as: uid=all_attrs_test,ou=people,dc=example,dc=com
Passed suites/filter/rfc3673_all_oper_attrs_test.py::test_search_basic[-True-oper_attr_list1-objectClass] 0.01
-------------------------------Captured log call--------------------------------
INFO  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.11
-------------------------------Captured log call--------------------------------
INFO  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--------------------------------
INFO  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--------------------------------
INFO  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--------------------------------
INFO  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--------------------------------
INFO  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--------------------------------
INFO  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.14
-------------------------------Captured log call--------------------------------
INFO  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--------------------------------
INFO  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--------------------------------
INFO  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.04
-------------------------------Captured log call--------------------------------
INFO  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--------------------------------
INFO  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--------------------------------
INFO  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--------------------------------
INFO  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--------------------------------
INFO  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--------------------------------
INFO  lib389.utils:rfc3673_all_oper_attrs_test.py:147 bound as: cn=Directory Manager
Passed suites/filter/schema_validation_test.py::test_filter_validation_config 0.07
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/filter/schema_validation_test.py::test_filter_validation_enabled 4.45
No log output captured.
Passed suites/filter/schema_validation_test.py::test_filter_validation_warn_safe 0.34
No log output captured.
Passed suites/filter/schema_validation_test.py::test_filter_validation_warn_unsafe 0.12
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-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition1-cn] 0.01
No log output captured.
Passed suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition2-cn] 0.01
No log output captured.
Passed suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition3-cn] 0.01
No log output captured.
Passed suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition4-modifiersName] 0.01
No log output captured.
Passed suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition5-modifyTimestamp] 0.01
No log output captured.
Passed suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition6-modifiersName] 0.01
No log output captured.
Passed suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition7-modifyTimestamp] 0.01
No log output captured.
Passed suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition8-modifiersName] 0.01
No log output captured.
Passed suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition9-modifyTimestamp] 0.01
No log output captured.
Passed suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition10-cn] 0.01
No log output captured.
Passed suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition11-cn] 0.01
No log output captured.
Passed suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition12-modifiersName] 0.01
No log output captured.
Passed suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition13-nsRoleDN] 0.01
No log output captured.
Passed suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition14-cn] 0.01
No log output captured.
Passed suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition15-modifiersName] 0.01
No log output captured.
Passed suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (| (nsRoleDN=cn=new managed role) (sn=Hall)) (l=sunnyvale))-condition16-nsRoleDN] 0.01
No log output captured.
Passed suites/filter/vfilter_attribute_test.py::test_all_together_positive[(uid=rjense2)-condition17-mailquota] 0.01
No log output captured.
Passed suites/filter/vfilter_attribute_test.py::test_all_together_positive[(uid=rjense2)-condition18-mailquota] 0.01
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.01
No log output captured.
Passed suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (nsRoleDN=cn=new managed *) (uid=mtyler))-condition25-nsRoleDN] 0.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.01
No log output captured.
Passed suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (nsRoleDN=cn=new managed *) (uid=mtyler))-condition27-modifiersName] 0.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.00
No log output captured.
Passed suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (nsRoleDN=cn=new managed *) (uid=mtyler))-condition29-nsRoleDN] 0.00
No log output captured.
Passed suites/filter/vfilter_attribute_test.py::test_all_together_positive[(& (nsRoleDN=cn=new managed *) (uid=mtyler))-condition30-modifiersName] 0.00
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(postalCode=99999)] 0.01
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(postalAddress=345 California Av., Mountain View, CA)] 0.00
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(postalCode:2.16.840.1.113730.3.3.2.7.1:=88888)] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(postalCode:2.16.840.1.113730.3.3.2.7.1.3:=66666)] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(emailclass=vpe*)] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(emailclass=*emai*)] 0.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.00
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.00
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.15
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(nsRole~=cn=new)] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(uid=*wal*)] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(uid=mw*)] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(roomNumber=0312)] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(l=Cupertino)] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(uid=user1)] 0.00
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(objectclass=inetorgperson)] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(l=sunnyvale)] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(roomNumber=3924)] 0.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.00
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.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:=>=900)] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(mailquota:fr:=>=900)] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(mailquota:2.16.840.1.113730.3.3.2.18.1:=>=600)] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(mailquota:fr:=>=600)] 0.15
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(mailquota:2.16.840.1.113730.3.3.2.18.1.4:=600)] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(mailquota:2.16.840.1.113730.3.3.2.18.1:=>=100)] 0.00
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(mailquota:fr:=>=100)] 0.16
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(mailquota:2.16.840.1.113730.3.3.2.18.1.4:=100)] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(&(!(nsRole~=cn=new managed))(!(nsRole=cn=new vaddr filtered role,dc=example,dc=com)))] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(|(uid=*wal*) (nsRole=cn=*another*))] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(uid=*wal*))(!(nsRole=cn=*another*)))] 0.02
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(uid=*wal*))(nsRole=cn=*another*))] 0.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.17
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(&(l=Cupertino) (|(uid=*wal*)(&(nsRole~=cn=new managed) (nsRole=cn=*vaddr*))))] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(&(!(l=Cupertino))(!(|(uid=*wal*)(&(nsRole~=cn=new managed) (nsRole=cn=*vaddr*)))))] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(&(!(l=Cupertino))(|(uid=*wal*)(&(nsRole~=cn=new managed) (nsRole=cn=*vaddr*))))] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(&(l=Cupertino)(!(|(uid=*wal*)(&(nsRole~=cn=new managed) (nsRole=cn=*vaddr*)))))] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(|(l=Cupertino) (|(uid=*wal*)(&(nsRole~=cn=new managed) (nsRole=cn=*vaddr*))))] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(l=Cupertino))(!(|(uid=*wal*)(&(nsRole~=cn=new managed) (nsRole=cn=*vaddr*)))))] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(l=Cupertino))(|(uid=*wal*)(&(nsRole~=cn=new managed) (nsRole=cn=*vaddr*))))] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(|(l=Cupertino)(!(|(uid=*wal*)(&(nsRole~=cn=new managed) (nsRole=cn=*vaddr*)))))] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(&(!(uid=user1))(objectclass=inetorgperson))] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(uid=user1))(objectclass=inetorgperson))] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(&(!(nsRole=cn=*vaddr*))(l=sunnyvale))] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(nsRole=cn=*vaddr*))(l=sunnyvale))] 0.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.02
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(&(!(uid=user40))(&(!(uid=user1))(!(uid=user20))(!(uid=user30))(objectclass=inetorgperson)))] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(uid=user40))(&(!(uid=user1))(!(uid=user20))(!(uid=user30))(objectclass=inetorgperson)))] 0.02
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(&(!(roomNumber=2254))(&(!(nsRole=cn=another vaddr role,dc=example,dc=com))(!(roomNumber=3924))(!(roomNumber=4508))(l=sunnyvale)))] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(roomNumber=2254))(&(!(nsRole=cn=another vaddr role,dc=example,dc=com))(!(roomNumber=3924))(!(roomNumber=4508))(l=sunnyvale)))] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(&(!(uid=user1))(!(uid=user20))(!(uid=user30)))] 0.02
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(uid=user1))(!(uid=user20))(!(uid=user30)))] 0.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.03
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(nsRole=cn=another vaddr role,dc=example,dc=com))(!(roomNumber=3924))(!(roomNumber=4508)))] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(& (objectclass=inetorgperson)(!(uid=user1))(!(uid=user20))(!(uid=user30)))] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(| (objectclass=inetorgperson)(!(uid=user1))(!(uid=user20))(!(uid=user30)))] 0.02
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(&(l=sunnyvale)(!(nsRole=cn=another vaddr role,dc=example,dc=com))(!(roomNumber=3924))(!(roomNumber=4508)))] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(|(l=sunnyvale)(!(nsRole=cn=another vaddr role,dc=example,dc=com))(!(roomNumber=3924))(!(roomNumber=4508)))] 0.11
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.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(&(l=Cupertino)(!(emailclass=*emai*))(|(nsRole=cn=*vaddr*) (l=*)))] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(|(l=Cupertino) (emailclass=*emai*) (|(nsRole=cn=*vaddr*) (l=*)))] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(l=Cupertino))(!(emailclass=*emai*))(!(|(nsRole=cn=*vaddr*) (l=*))))] 0.02
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(l=Cupertino))(!(emailclass=*emai*))(|(nsRole=cn=*vaddr*) (l=*)))] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(l=Cupertino))(emailclass=*emai*)(!(|(nsRole=cn=*vaddr*) (l=*))))] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(|(!(l=Cupertino))(emailclass=*emai*) (|(nsRole=cn=*vaddr*) (l=*)))] 0.02
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(|(l=Cupertino)(!(emailclass=*emai*))(!(|(nsRole=cn=*vaddr*) (l=*))))] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(|(l=Cupertino)(!(emailclass=*emai*))(|(nsRole=cn=*vaddr*) (l=*)))] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_positive[(|(l=Cupertino) (emailclass=*emai*)(!(|(nsRole=cn=*vaddr*) (l=*))))] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_negative[(postalCode:de:==77777)] 0.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.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_negative[(emailclass:2.16.840.1.113730.3.3.2.15.1.1:=1)] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_negative[(emailclass:2.16.840.1.113730.3.3.2.15.1:=<vpemail)] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_negative[(emailclass:es:=<vpemail)] 0.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.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_negative[(mailquota:2.16.840.1.113730.3.3.2.15.1:=<900)] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_negative[(mailquota:es:=<900)] 0.00
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_negative[(mailquota<=100)] 0.01
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.17
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.01
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.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_negative[(nsRole=cn=another vaddr role,dc=example,dc=com)] 0.01
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.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_negative[(roomNumber=2254)] 0.15
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.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.2:=100)] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_negative[(mailquota:2.16.840.1.113730.3.3.2.18.1:=<=600)] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_negative[(mailquota:fr:=<=600)] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_negative[(mailquota:2.16.840.1.113730.3.3.2.18.1:=<=900)] 0.00
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_negative[(mailquota:fr:=<=900)] 0.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.01
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.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_negative[(&(nsRole~=cn=new managed) (nsRole=cn=new vaddr filtered role,dc=example,dc=com))] 0.00
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_negative[(&(!(nsRole~=cn=new managed)) (nsRole=cn=new vaddr filtered role,dc=example,dc=com))] 0.01
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_negative[(&(nsRole~=cn=new managed)(!(nsRole=cn=new vaddr filtered role,dc=example,dc=com)))] 0.00
No log output captured.
Passed suites/filter/vfilter_simple_test.py::test_param_negative[(&(uid=*wal*) (nsRole=cn=*vaddr*))] 0.00
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.01
No log output captured.
Passed suites/fourwaymmr/fourwaymmr_test.py::test_verify_trees 3.03
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39003, 'ldap-secureport': 63703, 'server-id': 'master3', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39004, 'ldap-secureport': 63704, 'server-id': 'master4', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect b2d55abd-128a-4559-8a12-3509f4ca056a / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect ee00987c-6c62-4ac0-86fe-c5943523b331 / got description=b2d55abd-128a-4559-8a12-3509f4ca056a) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:162 Joining master master3 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect d101a50e-4c6b-470f-9f46-11aa23c666c4 / got description=ee00987c-6c62-4ac0-86fe-c5943523b331) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 589b79a3-fcd9-4865-aa0e-1ae7e2babef6 / got description=d101a50e-4c6b-470f-9f46-11aa23c666c4) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 INFO  lib389.topologies:topologies.py:162 Joining master master4 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect bf10c22f-8a86-4608-b24d-3780eb9db020 / got description=589b79a3-fcd9-4865-aa0e-1ae7e2babef6) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 3c292436-3b26-4808-9d0e-b66c27e1c35a / got description=bf10c22f-8a86-4608-b24d-3780eb9db020) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master3 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master4 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master3 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master4 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master2 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master4 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master4 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master4 to master2 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master4 to master3 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect cf077bae-6468-4f8e-acd2-be807113ccff / got description=3c292436-3b26-4808-9d0e-b66c27e1c35a) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 355e22d8-fa9d-4509-a034-657e0734825b / got description=cf077bae-6468-4f8e-acd2-be807113ccff) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 39bba2a2-48b2-4479-9637-68d26ac20df3 / got description=355e22d8-fa9d-4509-a034-657e0734825b) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working
Passed suites/fourwaymmr/fourwaymmr_test.py::test_sync_through_to_all_4_masters 3.04
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1ee59758-199f-49ed-8f82-b552888e0a35 / got description=39bba2a2-48b2-4479-9637-68d26ac20df3) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 97a53208-3d04-419f-93cd-c2364d0cc3ef / got description=1ee59758-199f-49ed-8f82-b552888e0a35) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 26be75ba-bc0b-401a-a1c8-3c93f4f29201 / got description=97a53208-3d04-419f-93cd-c2364d0cc3ef) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working
Passed suites/fourwaymmr/fourwaymmr_test.py::test_modify_some_data_in_m3 8.39
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 26dbc36e-4fa3-4cad-97eb-30dedc558668 / got description=26be75ba-bc0b-401a-a1c8-3c93f4f29201) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 2bad35d8-ce27-404f-abf5-b8070a29ffbd / got description=26dbc36e-4fa3-4cad-97eb-30dedc558668) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 27658862-d56a-40e8-b0f3-aa1037518650 / got description=2bad35d8-ce27-404f-abf5-b8070a29ffbd) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working
Passed suites/fourwaymmr/fourwaymmr_test.py::test_delete_a_few_entries_in_m4 4.14
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect b02be52d-f1dc-43e3-b5de-00469eea7453 / got description=27658862-d56a-40e8-b0f3-aa1037518650) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 40e6c6f7-8ed5-4da9-9f0a-12dfa1037d19 / got description=b02be52d-f1dc-43e3-b5de-00469eea7453) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 5eab27ba-c8cc-44b5-b069-7a499b88b355 / got description=40e6c6f7-8ed5-4da9-9f0a-12dfa1037d19) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 3df67917-3831-4d40-8577-271e4baeb50e / got description=5eab27ba-c8cc-44b5-b069-7a499b88b355) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working
Passed suites/fourwaymmr/fourwaymmr_test.py::test_replicated_multivalued_entries 1.09
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 577d0735-155c-49c0-8f9a-3d737829a1dd / got description=3df67917-3831-4d40-8577-271e4baeb50e) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working
Passed suites/fourwaymmr/fourwaymmr_test.py::test_bad_replication_agreement 24.86
No log output captured.
Passed suites/fourwaymmr/fourwaymmr_test.py::test_nsds5replicaenabled_verify 68.64
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 9d07732a-4b85-4216-9e7a-363d1768e72c / got description=577d0735-155c-49c0-8f9a-3d737829a1dd) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 9d07732a-4b85-4216-9e7a-363d1768e72c / got description=577d0735-155c-49c0-8f9a-3d737829a1dd) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 9d07732a-4b85-4216-9e7a-363d1768e72c / got description=577d0735-155c-49c0-8f9a-3d737829a1dd) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 9d07732a-4b85-4216-9e7a-363d1768e72c / got description=577d0735-155c-49c0-8f9a-3d737829a1dd) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 9d07732a-4b85-4216-9e7a-363d1768e72c / got description=577d0735-155c-49c0-8f9a-3d737829a1dd) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 9d07732a-4b85-4216-9e7a-363d1768e72c / got description=577d0735-155c-49c0-8f9a-3d737829a1dd) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 9d07732a-4b85-4216-9e7a-363d1768e72c / got description=577d0735-155c-49c0-8f9a-3d737829a1dd) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 9d07732a-4b85-4216-9e7a-363d1768e72c / got description=577d0735-155c-49c0-8f9a-3d737829a1dd) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 9d07732a-4b85-4216-9e7a-363d1768e72c / got description=577d0735-155c-49c0-8f9a-3d737829a1dd) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 9d07732a-4b85-4216-9e7a-363d1768e72c / got description=577d0735-155c-49c0-8f9a-3d737829a1dd) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 9d07732a-4b85-4216-9e7a-363d1768e72c / got description=577d0735-155c-49c0-8f9a-3d737829a1dd) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 9d07732a-4b85-4216-9e7a-363d1768e72c / got description=577d0735-155c-49c0-8f9a-3d737829a1dd) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 9d07732a-4b85-4216-9e7a-363d1768e72c / got description=577d0735-155c-49c0-8f9a-3d737829a1dd) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 9d07732a-4b85-4216-9e7a-363d1768e72c / got description=577d0735-155c-49c0-8f9a-3d737829a1dd) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 9d07732a-4b85-4216-9e7a-363d1768e72c / got description=577d0735-155c-49c0-8f9a-3d737829a1dd) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 9d07732a-4b85-4216-9e7a-363d1768e72c / got description=577d0735-155c-49c0-8f9a-3d737829a1dd) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 9d07732a-4b85-4216-9e7a-363d1768e72c / got description=577d0735-155c-49c0-8f9a-3d737829a1dd) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 9d07732a-4b85-4216-9e7a-363d1768e72c / got description=577d0735-155c-49c0-8f9a-3d737829a1dd) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 9d07732a-4b85-4216-9e7a-363d1768e72c / got description=577d0735-155c-49c0-8f9a-3d737829a1dd) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 9d07732a-4b85-4216-9e7a-363d1768e72c / got description=577d0735-155c-49c0-8f9a-3d737829a1dd) INFO  lib389.replica:replica.py:2517 FAIL: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 9d07732a-4b85-4216-9e7a-363d1768e72c / got description=577d0735-155c-49c0-8f9a-3d737829a1dd) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 84f6cb92-4609-48d2-b6b0-ce801969e42b / got description=577d0735-155c-49c0-8f9a-3d737829a1dd) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1ed2ecb1-8240-44de-9516-832f06585fa4 / got description=84f6cb92-4609-48d2-b6b0-ce801969e42b) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1ed2ecb1-8240-44de-9516-832f06585fa4 / got description=84f6cb92-4609-48d2-b6b0-ce801969e42b) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1ed2ecb1-8240-44de-9516-832f06585fa4 / got description=84f6cb92-4609-48d2-b6b0-ce801969e42b) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1ed2ecb1-8240-44de-9516-832f06585fa4 / got description=84f6cb92-4609-48d2-b6b0-ce801969e42b) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1ed2ecb1-8240-44de-9516-832f06585fa4 / got description=84f6cb92-4609-48d2-b6b0-ce801969e42b) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1ed2ecb1-8240-44de-9516-832f06585fa4 / got description=84f6cb92-4609-48d2-b6b0-ce801969e42b) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1ed2ecb1-8240-44de-9516-832f06585fa4 / got description=84f6cb92-4609-48d2-b6b0-ce801969e42b) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1ed2ecb1-8240-44de-9516-832f06585fa4 / got description=84f6cb92-4609-48d2-b6b0-ce801969e42b) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1ed2ecb1-8240-44de-9516-832f06585fa4 / got description=84f6cb92-4609-48d2-b6b0-ce801969e42b) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1ed2ecb1-8240-44de-9516-832f06585fa4 / got description=84f6cb92-4609-48d2-b6b0-ce801969e42b) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1ed2ecb1-8240-44de-9516-832f06585fa4 / got description=84f6cb92-4609-48d2-b6b0-ce801969e42b) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1ed2ecb1-8240-44de-9516-832f06585fa4 / got description=84f6cb92-4609-48d2-b6b0-ce801969e42b) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1ed2ecb1-8240-44de-9516-832f06585fa4 / got description=84f6cb92-4609-48d2-b6b0-ce801969e42b) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1ed2ecb1-8240-44de-9516-832f06585fa4 / got description=84f6cb92-4609-48d2-b6b0-ce801969e42b) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1ed2ecb1-8240-44de-9516-832f06585fa4 / got description=84f6cb92-4609-48d2-b6b0-ce801969e42b) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1ed2ecb1-8240-44de-9516-832f06585fa4 / got description=84f6cb92-4609-48d2-b6b0-ce801969e42b) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1ed2ecb1-8240-44de-9516-832f06585fa4 / got description=84f6cb92-4609-48d2-b6b0-ce801969e42b) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1ed2ecb1-8240-44de-9516-832f06585fa4 / got description=84f6cb92-4609-48d2-b6b0-ce801969e42b) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1ed2ecb1-8240-44de-9516-832f06585fa4 / got description=84f6cb92-4609-48d2-b6b0-ce801969e42b) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1ed2ecb1-8240-44de-9516-832f06585fa4 / got description=84f6cb92-4609-48d2-b6b0-ce801969e42b) INFO  lib389.replica:replica.py:2517 FAIL: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1ed2ecb1-8240-44de-9516-832f06585fa4 / got description=84f6cb92-4609-48d2-b6b0-ce801969e42b) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ab20b0f8-0a07-4b2e-8ca5-47882522544f / got description=1ed2ecb1-8240-44de-9516-832f06585fa4) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ed2ac2a3-0e86-423f-8f13-83c49c5134e2 / got description=ab20b0f8-0a07-4b2e-8ca5-47882522544f) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ed2ac2a3-0e86-423f-8f13-83c49c5134e2 / got description=ab20b0f8-0a07-4b2e-8ca5-47882522544f) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ed2ac2a3-0e86-423f-8f13-83c49c5134e2 / got description=ab20b0f8-0a07-4b2e-8ca5-47882522544f) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ed2ac2a3-0e86-423f-8f13-83c49c5134e2 / got description=ab20b0f8-0a07-4b2e-8ca5-47882522544f) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ed2ac2a3-0e86-423f-8f13-83c49c5134e2 / got description=ab20b0f8-0a07-4b2e-8ca5-47882522544f) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ed2ac2a3-0e86-423f-8f13-83c49c5134e2 / got description=ab20b0f8-0a07-4b2e-8ca5-47882522544f) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ed2ac2a3-0e86-423f-8f13-83c49c5134e2 / got description=ab20b0f8-0a07-4b2e-8ca5-47882522544f) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ed2ac2a3-0e86-423f-8f13-83c49c5134e2 / got description=ab20b0f8-0a07-4b2e-8ca5-47882522544f) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ed2ac2a3-0e86-423f-8f13-83c49c5134e2 / got description=ab20b0f8-0a07-4b2e-8ca5-47882522544f) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ed2ac2a3-0e86-423f-8f13-83c49c5134e2 / got description=ab20b0f8-0a07-4b2e-8ca5-47882522544f) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ed2ac2a3-0e86-423f-8f13-83c49c5134e2 / got description=ab20b0f8-0a07-4b2e-8ca5-47882522544f) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ed2ac2a3-0e86-423f-8f13-83c49c5134e2 / got description=ab20b0f8-0a07-4b2e-8ca5-47882522544f) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ed2ac2a3-0e86-423f-8f13-83c49c5134e2 / got description=ab20b0f8-0a07-4b2e-8ca5-47882522544f) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ed2ac2a3-0e86-423f-8f13-83c49c5134e2 / got description=ab20b0f8-0a07-4b2e-8ca5-47882522544f) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ed2ac2a3-0e86-423f-8f13-83c49c5134e2 / got description=ab20b0f8-0a07-4b2e-8ca5-47882522544f) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ed2ac2a3-0e86-423f-8f13-83c49c5134e2 / got description=ab20b0f8-0a07-4b2e-8ca5-47882522544f) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ed2ac2a3-0e86-423f-8f13-83c49c5134e2 / got description=ab20b0f8-0a07-4b2e-8ca5-47882522544f) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ed2ac2a3-0e86-423f-8f13-83c49c5134e2 / got description=ab20b0f8-0a07-4b2e-8ca5-47882522544f) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ed2ac2a3-0e86-423f-8f13-83c49c5134e2 / got description=ab20b0f8-0a07-4b2e-8ca5-47882522544f) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ed2ac2a3-0e86-423f-8f13-83c49c5134e2 / got description=ab20b0f8-0a07-4b2e-8ca5-47882522544f) INFO  lib389.replica:replica.py:2517 FAIL: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ed2ac2a3-0e86-423f-8f13-83c49c5134e2 / got description=ab20b0f8-0a07-4b2e-8ca5-47882522544f) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 7daa6e5b-30d0-4ce0-9248-b6f6ea52f913 / got description=ed2ac2a3-0e86-423f-8f13-83c49c5134e2) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working
Passed suites/fourwaymmr/fourwaymmr_test.py::test_create_an_entry_on_the_supplier 3.79
No log output captured.
Passed suites/fourwaymmr/fourwaymmr_test.py::test_bob_acceptance_tests 7.46
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 640f9ff7-b97d-4719-8f66-6ce944577878 / got description=7daa6e5b-30d0-4ce0-9248-b6f6ea52f913) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working
Passed suites/fourwaymmr/fourwaymmr_test.py::test_replica_backup_and_restore 31.14
------------------------------Captured stderr call------------------------------
ldiffile: /tmp/output_file [24/Oct/2020:20:09:05.553158095 -0400] - INFO - slapd_exemode_ldif2db - Backend Instance: userRoot
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect e27be849-8321-4550-83d3-733f4dca40a5 / got description=640f9ff7-b97d-4719-8f66-6ce944577878) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 142f47a9-d3c0-464a-b627-0738d3ced530 / got description=e27be849-8321-4550-83d3-733f4dca40a5) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 4d87ddf6-606f-4419-a589-1007895fa010 / got description=142f47a9-d3c0-464a-b627-0738d3ced530) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 185d1d54-bb01-4df3-bc1d-a623264032f9 / got description=4d87ddf6-606f-4419-a589-1007895fa010) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect d983abad-97cf-4dd1-8728-724db15aa4d0 / got description=185d1d54-bb01-4df3-bc1d-a623264032f9) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 808ceb65-9fa1-44e5-909b-04fb97c424af / got description=d983abad-97cf-4dd1-8728-724db15aa4d0) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working
Passed suites/fractional/fractional_test.py::test_fractional_agreements 3.31
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39201, 'ldap-secureport': 63901, 'server-id': 'consumer1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39202, 'ldap-secureport': 63902, 'server-id': 'consumer2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 4772303c-0bb1-4f07-86f1-edd5d854ceb5 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 85d1dd19-5f12-4361-9275-5e130e609ec8 / got description=4772303c-0bb1-4f07-86f1-edd5d854ceb5) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:175 Joining consumer consumer1 from master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect aa55f747-05bc-4ca3-84f2-55d311c05c8f / got description=85d1dd19-5f12-4361-9275-5e130e609ec8) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working INFO  lib389.replica:replica.py:2285 SUCCESS: joined consumer from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 INFO  lib389.topologies:topologies.py:175 Joining consumer consumer2 from master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 is NOT working (expect 803d8c7d-e7e1-49e1-8c08-0e5777ad06a2 / got description=aa55f747-05bc-4ca3-84f2-55d311c05c8f) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 is working INFO  lib389.replica:replica.py:2285 SUCCESS: joined consumer from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 INFO  lib389.topologies:topologies.py:180 Ensuring consumer consumer1 from master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 already exists INFO  lib389.topologies:topologies.py:180 Ensuring consumer consumer2 from master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 already exists INFO  lib389.topologies:topologies.py:180 Ensuring consumer consumer1 from master2 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is was created INFO  lib389.topologies:topologies.py:180 Ensuring consumer consumer2 from master2 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 is was created
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 4ad099a1-0d87-438d-bbaf-10dd529928da / got description=803d8c7d-e7e1-49e1-8c08-0e5777ad06a2) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect b2b7229f-4b0a-4c4a-9eef-afbec770483a / got description=4ad099a1-0d87-438d-bbaf-10dd529928da) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 is NOT working (expect fe7baf4b-6137-4c61-9e13-f83b1a388612 / got description=b2b7229f-4b0a-4c4a-9eef-afbec770483a) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 is working
Passed suites/fractional/fractional_test.py::test_read_only_consumer 0.09
No log output captured.
Passed suites/fractional/fractional_test.py::test_read_write_supplier 3.07
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect db261750-c41e-4bbd-aa41-f759bda97c5e / got description=fe7baf4b-6137-4c61-9e13-f83b1a388612) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect dd223768-d154-4abb-b9b4-9a05311b2518 / got description=db261750-c41e-4bbd-aa41-f759bda97c5e) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 is NOT working (expect 64b66f5c-35aa-4d4f-a483-656f5ab93ff8 / got description=dd223768-d154-4abb-b9b4-9a05311b2518) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 is working
Passed suites/fractional/fractional_test.py::test_filtered_attributes 3.09
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 397c0c84-329a-4030-9053-78e92e00023b / got description=64b66f5c-35aa-4d4f-a483-656f5ab93ff8) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 96b970f6-ee4e-40ae-b934-0b93c24bfa5b / got description=397c0c84-329a-4030-9053-78e92e00023b) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 is NOT working (expect 03528be8-faa0-4d4f-8be4-83a0cfab36e4 / got description=96b970f6-ee4e-40ae-b934-0b93c24bfa5b) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 is working
Passed suites/fractional/fractional_test.py::test_fewer_changes_in_single_operation 9.25
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 29309956-e64e-444c-82e6-2aa7e537798e / got description=03528be8-faa0-4d4f-8be4-83a0cfab36e4) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect f38586f4-cb2e-4c9f-99c6-eb627712f2fe / got description=29309956-e64e-444c-82e6-2aa7e537798e) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 is NOT working (expect b3d1a3db-b62b-4b61-a1be-aadfd317eeb5 / got description=f38586f4-cb2e-4c9f-99c6-eb627712f2fe) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 378ae313-aeac-4a57-abbd-291a90a89cf4 / got description=b3d1a3db-b62b-4b61-a1be-aadfd317eeb5) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect ace32cbd-4a4c-42f6-b0ac-ddbb9ae70b0a / got description=378ae313-aeac-4a57-abbd-291a90a89cf4) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 is NOT working (expect 06e64cdb-6407-4cae-8c29-98cc57f1c360 / got description=ace32cbd-4a4c-42f6-b0ac-ddbb9ae70b0a) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 9dabc3a2-e367-4aab-bd2a-ef2903aadcb0 / got description=06e64cdb-6407-4cae-8c29-98cc57f1c360) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect b297a7fb-09d2-4b48-864b-9861d2669382 / got description=9dabc3a2-e367-4aab-bd2a-ef2903aadcb0) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 is NOT working (expect 2e248191-4b34-4caf-9668-7ca9d7a27558 / got description=b297a7fb-09d2-4b48-864b-9861d2669382) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 is working
Passed suites/fractional/fractional_test.py::test_newly_added_attribute_nsds5replicatedattributelisttotal 5.56
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 3a656543-9759-4548-a65a-7fcb81ac9db4 / got description=2e248191-4b34-4caf-9668-7ca9d7a27558) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 3a656543-9759-4548-a65a-7fcb81ac9db4 / got description=2e248191-4b34-4caf-9668-7ca9d7a27558) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 3a656543-9759-4548-a65a-7fcb81ac9db4 / got description=2e248191-4b34-4caf-9668-7ca9d7a27558) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 0c1da8f5-1d60-4a97-828c-4041128d710d / got description=3a656543-9759-4548-a65a-7fcb81ac9db4) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 is NOT working (expect 6d6d1e12-e890-432c-99a1-fae4fd0c911f / got description=0c1da8f5-1d60-4a97-828c-4041128d710d) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 is working
Passed suites/fractional/fractional_test.py::test_attribute_nsds5replicatedattributelisttotal 21.47
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 10c72778-e91e-4258-8206-a786023e41e1 / got description=6d6d1e12-e890-432c-99a1-fae4fd0c911f) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect e3f0df74-c720-4b97-886e-4a6df6a7ff4e / got description=10c72778-e91e-4258-8206-a786023e41e1) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 is NOT working (expect 5675c8b6-bd06-4ec8-a2bc-7c2e5a6021a7 / got description=e3f0df74-c720-4b97-886e-4a6df6a7ff4e) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 is working
Passed suites/fractional/fractional_test.py::test_implicit_replication_of_password_policy 12.45
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 08396be7-38c1-4451-946d-dd1541df8cf4 / got description=5675c8b6-bd06-4ec8-a2bc-7c2e5a6021a7) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 3768b431-0143-4249-bb38-2c4228f6b1ce / got description=08396be7-38c1-4451-946d-dd1541df8cf4) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 is NOT working (expect 9a270ce7-f307-4fda-b0f0-588a9503e41e / got description=3768b431-0143-4249-bb38-2c4228f6b1ce) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect a8f760d0-2777-4402-b528-f0fb75dc0ea4 / got description=9a270ce7-f307-4fda-b0f0-588a9503e41e) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect a8f760d0-2777-4402-b528-f0fb75dc0ea4 / got description=9a270ce7-f307-4fda-b0f0-588a9503e41e) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect a8f760d0-2777-4402-b528-f0fb75dc0ea4 / got description=9a270ce7-f307-4fda-b0f0-588a9503e41e) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect a8f760d0-2777-4402-b528-f0fb75dc0ea4 / got description=9a270ce7-f307-4fda-b0f0-588a9503e41e) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 0c9cf5c3-25f2-4061-8601-916872503bcd / got description=a8f760d0-2777-4402-b528-f0fb75dc0ea4) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 is NOT working (expect 03cc3031-de62-41e4-a0e4-830cc7641a72 / got description=0c9cf5c3-25f2-4061-8601-916872503bcd) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 8e327b47-1b50-4d43-b841-7bb65021b4e6 / got description=a8f760d0-2777-4402-b528-f0fb75dc0ea4) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect ecaeaeec-3f8e-4a04-aa8b-34d012bb19bd / got description=8e327b47-1b50-4d43-b841-7bb65021b4e6) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 is NOT working (expect b6bec972-9650-4000-bd39-8b66f9b3b1e7 / got description=ecaeaeec-3f8e-4a04-aa8b-34d012bb19bd) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.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-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. INFO  tests.suites.get_effective_rights.acceptance_test:acceptance_test.py:30 Adding user testuser
-------------------------------Captured log call--------------------------------
INFO  tests.suites.get_effective_rights.acceptance_test:acceptance_test.py:57 Adding group group1 INFO  tests.suites.get_effective_rights.acceptance_test:acceptance_test.py:70 Add an ACI granting add access to a user matching the groupdn INFO  lib389:acceptance_test.py:79 dn: uid=testuser,dc=example,dc=com INFO  lib389:acceptance_test.py:81 ######## entryLevelRights: b'vadn'
Passed suites/get_effective_rights/acceptance_test.py::test_group_aci_template_entry 0.25
-------------------------------Captured log call--------------------------------
INFO  tests.suites.get_effective_rights.acceptance_test:acceptance_test.py:105 Add an ACI granting add access to a user matching the userdn INFO  lib389:acceptance_test.py:115 dn: cn=template_person_objectclass,dc=example,dc=com INFO  lib389:acceptance_test.py:117 ######## entryLevelRights: b'vadn' INFO  lib389:acceptance_test.py:120 dn: cn=template_groupofnames_objectclass,dc=example,dc=com INFO  lib389:acceptance_test.py:122 ######## entryLevelRights: b'v'
Passed suites/gssapi/simple_gssapi_test.py::test_gssapi_bind 0.48
-----------------------------Captured stdout setup------------------------------
Kerberos master password: Nor.lI.rwITiSxZKKNmcwaVMF2FJ771SFAdMdByn6fgG8XbJ70DKkVw2nlF1ET0yx 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-138-103.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-138-103.hosted.upshift.rdu2.redhat.com@HOSTED.UPSHIFT.RDU2.REDHAT.COM kiprop/ci-vm-10-0-138-103.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-138-103.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-138-103.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-138-103.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-138-103.hosted.upshift.rdu2.redhat.com@HOSTED.UPSHIFT.RDU2.REDHAT.COM kiprop/ci-vm-10-0-138-103.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-138-103.hosted.upshift.rdu2.redhat.com@HOSTED.UPSHIFT.RDU2.REDHAT.COM testuser@HOSTED.UPSHIFT.RDU2.REDHAT.COM Authenticating as principal root/admin@HOSTED.UPSHIFT.RDU2.REDHAT.COM with password. Entry for principal testuser@HOSTED.UPSHIFT.RDU2.REDHAT.COM with kvno 2, encryption type aes256-cts-hmac-sha1-96 added to keytab WRFILE:/tmp/testuser.keytab. Entry for principal testuser@HOSTED.UPSHIFT.RDU2.REDHAT.COM with kvno 2, encryption type aes128-cts-hmac-sha1-96 added to keytab WRFILE:/tmp/testuser.keytab.
-----------------------------Captured stderr setup------------------------------
No policy specified for ldap/ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com@HOSTED.UPSHIFT.RDU2.REDHAT.COM; defaulting to no policy No policy specified for testuser@HOSTED.UPSHIFT.RDU2.REDHAT.COM; defaulting to no policy
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/gssapi/simple_gssapi_test.py::test_invalid_sasl_map 0.24
No log output captured.
Passed suites/gssapi/simple_gssapi_test.py::test_missing_user 1.14
------------------------------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-138-103.hosted.upshift.rdu2.redhat.com@HOSTED.UPSHIFT.RDU2.REDHAT.COM kiprop/ci-vm-10-0-138-103.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-138-103.hosted.upshift.rdu2.redhat.com@HOSTED.UPSHIFT.RDU2.REDHAT.COM testuser@HOSTED.UPSHIFT.RDU2.REDHAT.COM Authenticating as principal testuser/admin@HOSTED.UPSHIFT.RDU2.REDHAT.COM with password. Entry for principal doesnotexist@HOSTED.UPSHIFT.RDU2.REDHAT.COM with kvno 2, encryption type aes256-cts-hmac-sha1-96 added to keytab WRFILE:/tmp/doesnotexist.keytab. Entry for principal doesnotexist@HOSTED.UPSHIFT.RDU2.REDHAT.COM with kvno 2, encryption type aes128-cts-hmac-sha1-96 added to keytab WRFILE:/tmp/doesnotexist.keytab.
------------------------------Captured stderr call------------------------------
No policy specified for doesnotexist@HOSTED.UPSHIFT.RDU2.REDHAT.COM; defaulting to no policy
Passed suites/gssapi/simple_gssapi_test.py::test_support_mech 0.28
No log output captured.
Passed suites/gssapi/simple_gssapi_test.py::test_rejected_mech 0.25
No log output captured.
Passed suites/gssapi_repl/gssapi_repl_test.py::test_gssapi_repl 0.00
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 4d4aebc0-9327-448a-948d-5cbdad194cee / got description=dbfff5b7-69d6-481a-92ea-461bb8e1b6f6) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
Passed suites/import/import_test.py::test_import_with_index 8.16
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/import/import_test.py::test_crash_on_ldif2db 5.29
No log output captured.
Passed suites/import/import_test.py::test_ldif2db_allows_entries_without_a_parent_to_be_imported 5.12
-------------------------------Captured log call--------------------------------
ERROR  lib389:__init__.py:2706 ldif2db: Can't find file: /var/lib/dirsrv/slapd-standalone1/ldif/bogus.ldif
Passed suites/import/import_test.py::test_issue_a_warning_if_the_cache_size_is_smaller 7.10
No log output captured.
Passed suites/import/import_test.py::test_fast_slow_import 24.93
No log output captured.
Passed suites/import/import_test.py::test_entry_with_escaped_characters_fails_to_import_and_index 14.18
------------------------------Captured stderr call------------------------------
[24/Oct/2020:20:13:47.419326289 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [24/Oct/2020:20:13:47.427705098 -0400] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7540097024, process usage 22740992 [24/Oct/2020:20:13:47.431269272 -0400] - INFO - check_and_set_import_cache - Import allocates 2945350KB import cache. [24/Oct/2020:20:13:47.435601558 -0400] - INFO - bdb_copy_directory - Backing up file 0 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/givenName.db) [24/Oct/2020:20:13:47.438886297 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/givenName.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/givenName.db [24/Oct/2020:20:13:47.442344028 -0400] - INFO - bdb_copy_directory - Backing up file 1 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/aci.db) [24/Oct/2020:20:13:47.446101013 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/aci.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/aci.db [24/Oct/2020:20:13:47.448855590 -0400] - INFO - bdb_copy_directory - Backing up file 2 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/sn.db) [24/Oct/2020:20:13:47.451999907 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/sn.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/sn.db [24/Oct/2020:20:13:47.454841410 -0400] - INFO - bdb_copy_directory - Backing up file 3 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/numsubordinates.db) [24/Oct/2020:20:13:47.458326302 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/numsubordinates.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/numsubordinates.db [24/Oct/2020:20:13:47.463518876 -0400] - INFO - bdb_copy_directory - Backing up file 4 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/nsuniqueid.db) [24/Oct/2020:20:13:47.470130605 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/nsuniqueid.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/nsuniqueid.db [24/Oct/2020:20:13:47.484368994 -0400] - INFO - bdb_copy_directory - Backing up file 5 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/ancestorid.db) [24/Oct/2020:20:13:47.490763539 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/ancestorid.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/ancestorid.db [24/Oct/2020:20:13:47.497814022 -0400] - INFO - bdb_copy_directory - Backing up file 6 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/parentid.db) [24/Oct/2020:20:13:47.504266304 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/parentid.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/parentid.db [24/Oct/2020:20:13:47.513355601 -0400] - INFO - bdb_copy_directory - Backing up file 7 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/mail.db) [24/Oct/2020:20:13:47.519780785 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/mail.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/mail.db [24/Oct/2020:20:13:47.525001097 -0400] - INFO - bdb_copy_directory - Backing up file 8 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/telephoneNumber.db) [24/Oct/2020:20:13:47.527816346 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/telephoneNumber.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/telephoneNumber.db [24/Oct/2020:20:13:47.530791220 -0400] - INFO - bdb_copy_directory - Backing up file 9 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/cn.db) [24/Oct/2020:20:13:47.535076929 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/cn.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/cn.db [24/Oct/2020:20:13:47.539049441 -0400] - INFO - bdb_copy_directory - Backing up file 10 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/roomNumber.db) [24/Oct/2020:20:13:47.542244550 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/roomNumber.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/roomNumber.db [24/Oct/2020:20:13:47.546370448 -0400] - INFO - bdb_copy_directory - Backing up file 11 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/DBVERSION) [24/Oct/2020:20:13:47.549385661 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/DBVERSION to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/DBVERSION [24/Oct/2020:20:13:47.553220250 -0400] - INFO - bdb_copy_directory - Backing up file 12 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/uid.db) [24/Oct/2020:20:13:47.557986070 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/uid.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/uid.db [24/Oct/2020:20:13:47.562211992 -0400] - INFO - bdb_copy_directory - Backing up file 13 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/entryrdn.db) [24/Oct/2020:20:13:47.570320187 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryrdn.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/entryrdn.db [24/Oct/2020:20:13:47.576466707 -0400] - INFO - bdb_copy_directory - Backing up file 14 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/id2entry.db) [24/Oct/2020:20:13:47.579475145 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/id2entry.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/id2entry.db [24/Oct/2020:20:13:47.582760967 -0400] - INFO - bdb_copy_directory - Backing up file 15 (/var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/objectclass.db) [24/Oct/2020:20:13:47.585824189 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/objectclass.db to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/userRoot/objectclass.db [24/Oct/2020:20:13:47.589939780 -0400] - INFO - upgradedb_core - userRoot: Start upgradedb. [24/Oct/2020:20:13:47.593361263 -0400] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7539732480, process usage 23670784 [24/Oct/2020:20:13:47.595792167 -0400] - INFO - check_and_set_import_cache - Import allocates 2945208KB import cache. [24/Oct/2020:20:13:48.334574628 -0400] - INFO - bdb_import_main - reindex userRoot: Index buffering enabled with bucket size 100 [24/Oct/2020:20:13:49.042103655 -0400] - INFO - import_monitor_threads - reindex userRoot: Workers finished; cleaning up... [24/Oct/2020:20:13:49.245808931 -0400] - INFO - import_monitor_threads - reindex userRoot: Workers cleaned up. [24/Oct/2020:20:13:49.248851051 -0400] - INFO - bdb_import_main - reindex userRoot: Cleaning up producer thread... [24/Oct/2020:20:13:49.251890714 -0400] - INFO - bdb_import_main - reindex userRoot: Indexing complete. Post-processing... [24/Oct/2020:20:13:49.254394742 -0400] - INFO - bdb_import_main - reindex userRoot: Generating numsubordinates (this may take several minutes to complete)... [24/Oct/2020:20:13:49.258275621 -0400] - INFO - bdb_import_main - reindex userRoot: Generating numSubordinates complete. [24/Oct/2020:20:13:49.261059976 -0400] - INFO - bdb_get_nonleaf_ids - reindex userRoot: Gathering ancestorid non-leaf IDs... [24/Oct/2020:20:13:49.263946274 -0400] - INFO - bdb_get_nonleaf_ids - reindex userRoot: Finished gathering ancestorid non-leaf IDs. [24/Oct/2020:20:13:49.266717361 -0400] - INFO - ldbm_get_nonleaf_ids - reindex userRoot: Starting sort of ancestorid non-leaf IDs... [24/Oct/2020:20:13:49.269217181 -0400] - INFO - ldbm_get_nonleaf_ids - reindex userRoot: Finished sort of ancestorid non-leaf IDs. [24/Oct/2020:20:13:49.275699737 -0400] - INFO - bdb_ancestorid_new_idl_create_index - reindex userRoot: Creating ancestorid index (new idl)... [24/Oct/2020:20:13:49.282194478 -0400] - INFO - bdb_ancestorid_new_idl_create_index - reindex userRoot: Created ancestorid index (new idl). [24/Oct/2020:20:13:49.286192903 -0400] - INFO - bdb_import_main - reindex userRoot: Flushing caches... [24/Oct/2020:20:13:49.289545818 -0400] - INFO - bdb_import_main - reindex userRoot: Closing files... [24/Oct/2020:20:13:49.394983794 -0400] - INFO - bdb_import_main - reindex userRoot: Reindexing complete. Processed 15 entries in 1 seconds. (15.00 entries/sec) [24/Oct/2020:20:13:49.399266419 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/log.0000000001 to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/log.0000000001 [24/Oct/2020:20:13:49.420472925 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/DBVERSION to /var/lib/dirsrv/slapd-standalone1/bak/reindex_2020-10-24T20:13:47.282525/DBVERSION [24/Oct/2020:20:13:49.424358915 -0400] - INFO - bdb_pre_close - All database threads now stopped
Passed suites/import/regression_test.py::test_replay_import_operation 32.42
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.import.regression_test:regression_test.py:94 Exporting LDIF online... INFO  tests.suites.import.regression_test:regression_test.py:53 Run. INFO  tests.suites.import.regression_test:regression_test.py:104 Importing LDIF online, should raise operation error. INFO  tests.suites.import.regression_test:regression_test.py:115 Looping. Tried 1 times so far. INFO  tests.suites.import.regression_test:regression_test.py:57 Adding users. INFO  tests.suites.import.regression_test:regression_test.py:119 Importing LDIF online
Passed suites/import/regression_test.py::test_import_be_default 11.35
-------------------------------Captured log call--------------------------------
INFO  tests.suites.import.regression_test:regression_test.py:143 Adding suffix:dc=default,dc=com and backend: default... INFO  tests.suites.import.regression_test:regression_test.py:149 Create LDIF file and import it... INFO  tests.suites.import.regression_test:regression_test.py:154 Stopping the server and running offline import... INFO  tests.suites.import.regression_test:regression_test.py:160 Verifying entry count after import... INFO  tests.suites.import.regression_test:regression_test.py:166 Test PASSED
Passed suites/import/regression_test.py::test_del_suffix_import 6.31
-------------------------------Captured log call--------------------------------
INFO  tests.suites.import.regression_test:regression_test.py:183 Adding suffix:dc=importest1,dc=com and backend: importest1 INFO  tests.suites.import.regression_test:regression_test.py:188 Create LDIF file and import it INFO  tests.suites.import.regression_test:regression_test.py:194 Stopping the server and running offline import INFO  tests.suites.import.regression_test:regression_test.py:199 Deleting suffix-dc=importest2,dc=com INFO  tests.suites.import.regression_test:regression_test.py:202 Adding the same database-importest1 after deleting it
Passed suites/import/regression_test.py::test_del_suffix_backend 7.74
-------------------------------Captured log call--------------------------------
INFO  tests.suites.import.regression_test:regression_test.py:221 Adding suffix:dc=importest2,dc=com and backend: importest2 INFO  tests.suites.import.regression_test:regression_test.py:226 Create LDIF file and import it INFO  lib389:tasks.py:498 Import task import_10242020_201450 for file /var/lib/dirsrv/slapd-standalone1/ldif/suffix_del2.ldif completed successfully INFO  tests.suites.import.regression_test:regression_test.py:234 Deleting suffix-dc=importest2,dc=com INFO  tests.suites.import.regression_test:regression_test.py:237 Adding the same database-importest2 after deleting it INFO  tests.suites.import.regression_test:regression_test.py:240 Checking if server can be restarted after re-adding the same database
Passed suites/import/regression_test.py::test_import_duplicate_dn 15.29
-------------------------------Captured log call--------------------------------
INFO  tests.suites.import.regression_test:regression_test.py:266 Delete the previous error logs INFO  tests.suites.import.regression_test:regression_test.py:269 Create import file INFO  tests.suites.import.regression_test:regression_test.py:292 Import ldif with duplicate entry ERROR  lib389:tasks.py:495 Error: import task import_10242020_201501 for file /var/lib/dirsrv/slapd-standalone1/ldif/data.ldif exited with -23 INFO  tests.suites.import.regression_test:regression_test.py:295 Restart the server to flush the logs INFO  tests.suites.import.regression_test:regression_test.py:298 Error log should not have "unable to flush" message INFO  tests.suites.import.regression_test:regression_test.py:301 Error log should have "Duplicated DN detected" message
Passed suites/import/regression_test.py::test_large_ldif2db_ancestorid_index_creation 630.16
-------------------------------Captured log call--------------------------------
INFO  tests.suites.import.regression_test:regression_test.py:354 Delete the previous errors logs INFO  tests.suites.import.regression_test:regression_test.py:357 Add suffix:o=test and backend: test... INFO  tests.suites.import.regression_test:regression_test.py:370 Create a large nested ldif file using dbgen : /var/lib/dirsrv/slapd-standalone1/ldif/large_nested.ldif INFO  tests.suites.import.regression_test:regression_test.py:373 Stop the server and run offline import... INFO  tests.suites.import.regression_test:regression_test.py:378 Starting the server INFO  tests.suites.import.regression_test:regression_test.py:381 parse the errors logs to check lines with "Starting sort of ancestorid" are present INFO  tests.suites.import.regression_test:regression_test.py:385 parse the errors logs to check lines with "Finished sort of ancestorid" are present INFO  tests.suites.import.regression_test:regression_test.py:389 parse the error logs for the line with "Gathering ancestorid non-leaf IDs" INFO  tests.suites.import.regression_test:regression_test.py:393 parse the error logs for the line with "Created ancestorid index" INFO  tests.suites.import.regression_test:regression_test.py:397 get the ancestorid non-leaf IDs indexing start and end time from the collected strings INFO  tests.suites.import.regression_test:regression_test.py:403 Calculate the elapsed time for the ancestorid non-leaf IDs index creation
Passed suites/indexes/regression_test.py::test_reindex_task_creates_abandoned_index_file 13.32
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  lib389:tasks.py:798 Index task index_all_10242020_202551 completed successfully INFO  lib389:tasks.py:798 Index task index_all_10242020_202554 completed successfully INFO  lib389:tasks.py:798 Index task index_all_10242020_202601 completed successfully
Passed suites/lib389/config_compare_test.py::test_config_compare 0.16
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38902, 'ldap-secureport': 63602, 'server-id': 'standalone2', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/lib389/dsldapobject/dn_construct_test.py::test_mul_explicit_rdn 0.01
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/lib389/dsldapobject/dn_construct_test.py::test_mul_derive_single_dn 0.01
No log output captured.
Passed suites/lib389/dsldapobject/dn_construct_test.py::test_mul_derive_mult_dn 0.01
No log output captured.
Passed suites/lib389/dsldapobject/dn_construct_test.py::test_sin_explicit_dn 0.01
No log output captured.
Passed suites/lib389/dsldapobject/dn_construct_test.py::test_sin_explicit_rdn 0.01
No log output captured.
Passed suites/lib389/dsldapobject/dn_construct_test.py::test_sin_derive_single_dn 0.01
No log output captured.
Passed suites/lib389/dsldapobject/dn_construct_test.py::test_sin_derive_mult_dn 0.01
No log output captured.
Passed suites/lib389/dsldapobject/dn_construct_test.py::test_sin_invalid_no_basedn 0.00
No log output captured.
Passed suites/lib389/dsldapobject/dn_construct_test.py::test_sin_invalid_no_rdn 0.00
No log output captured.
Passed suites/lib389/dsldapobject/dn_construct_test.py::test_sin_non_present_rdn 0.03
No log output captured.
Passed suites/lib389/idm/user_compare_i2_test.py::test_user_compare_i2 0.35
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38902, 'ldap-secureport': 63602, 'server-id': 'standalone2', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/lib389/idm/user_compare_m2Repl_test.py::test_user_compare_m2Repl 1.09
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect d02b7bb8-a4af-4acd-9c3c-c9d4a86dde76 / got description=None) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect d02b7bb8-a4af-4acd-9c3c-c9d4a86dde76 / got description=None) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect d02b7bb8-a4af-4acd-9c3c-c9d4a86dde76 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect df4f6a0c-1967-4660-b755-49d74f283ce9 / got description=d02b7bb8-a4af-4acd-9c3c-c9d4a86dde76) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect e778d669-20a7-4d64-ab64-35b5fc37e4a0 / got description=df4f6a0c-1967-4660-b755-49d74f283ce9) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working
Passed suites/lib389/idm/user_compare_st_test.py::test_user_compare 0.57
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/logging/logging_config_test.py::test_logging_digit_config[logexpirationtime-invalid_vals0-valid_vals0] 0.35
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/logging/logging_config_test.py::test_logging_digit_config[maxlogsize-invalid_vals1-valid_vals1] 0.10
No log output captured.
Passed suites/logging/logging_config_test.py::test_logging_digit_config[logmaxdiskspace-invalid_vals2-valid_vals2] 0.35
No log output captured.
Passed suites/logging/logging_config_test.py::test_logging_digit_config[logminfreediskspace-invalid_vals3-valid_vals3] 0.84
No log output captured.
Passed suites/logging/logging_config_test.py::test_logging_digit_config[mode-invalid_vals4-valid_vals4] 0.14
No log output captured.
Passed suites/logging/logging_config_test.py::test_logging_digit_config[maxlogsperdir-invalid_vals5-valid_vals5] 0.11
No log output captured.
Passed suites/logging/logging_config_test.py::test_logging_digit_config[logrotationsynchour-invalid_vals6-valid_vals6] 0.12
No log output captured.
Passed suites/logging/logging_config_test.py::test_logging_digit_config[logrotationsyncmin-invalid_vals7-valid_vals7] 0.09
No log output captured.
Passed suites/logging/logging_config_test.py::test_logging_digit_config[logrotationtime-invalid_vals8-valid_vals8] 0.11
No log output captured.
Passed suites/mapping_tree/acceptance_test.py::test_invalid_mt 0.02
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/mapping_tree/be_del_and_default_naming_attr_test.py::test_be_delete 0.82
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology.
Passed suites/mapping_tree/referral_during_tot_init_test.py::test_referral_during_tot 7.56
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1a5c23bc-330d-437c-ab54-2ea7f0bf4b45 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 7a39a6e9-2809-4a04-a88e-eac29f3eea76 / got description=1a5c23bc-330d-437c-ab54-2ea7f0bf4b45) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
------------------------------Captured stderr call------------------------------
[24/Oct/2020:20:27:58.653558565 -0400] - INFO - slapd_exemode_ldif2db - Backend Instance: userRoot
Passed suites/memberof_plugin/regression_test.py::test_memberof_with_repl 94.46
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39101, 'ldap-secureport': 63801, 'server-id': 'hub1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39201, 'ldap-secureport': 63901, 'server-id': 'consumer1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:515 Creating replication topology. INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39101 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39101 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39101 is NOT working (expect daff4d4b-7972-40c7-b859-ba8708d175ef / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39101 is working INFO  lib389.replica:replica.py:2228 SUCCESS: joined consumer from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39101 INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39101 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is was created INFO  lib389.replica:replica.py:2285 SUCCESS: joined consumer from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39101 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect e52b0df9-0c11-44b5-a775-eaf2765ef7f2 / got description=daff4d4b-7972-40c7-b859-ba8708d175ef) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working
-------------------------------Captured log call--------------------------------
INFO  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 INFO  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.42
-----------------------------Captured stdout setup------------------------------
Instance slapd-master1 removed.
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 80184593-06e0-44d3-8386-8583f03aff7d / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 7c76bd20-c01d-4845-b341-45267fa9f7e2 / got description=80184593-06e0-44d3-8386-8583f03aff7d) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
-------------------------------Captured log call--------------------------------
INFO  tests.suites.memberof_plugin.regression_test:regression_test.py:318 memberOf attr value - cn=group1,ou=Groups,dc=example,dc=com INFO  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 55.13
-------------------------------Captured log call--------------------------------
INFO  tests.suites.memberof_plugin.regression_test:regression_test.py:353 Configure memberof on M1 and M2 INFO  tests.suites.memberof_plugin.regression_test:regression_test.py:364 On M1, add 999 test entries allowing memberof INFO  tests.suites.memberof_plugin.regression_test:regression_test.py:51 Adding 999 users INFO  tests.suites.memberof_plugin.regression_test:regression_test.py:367 On M1, add a group with these 999 entries as members INFO  tests.suites.memberof_plugin.regression_test:regression_test.py:375 Adding the test group using async function INFO  tests.suites.memberof_plugin.regression_test:regression_test.py:385 Check the log messages for error INFO  tests.suites.memberof_plugin.regression_test:regression_test.py:389 Check that the replication is working fine both ways, M1 <-> M2 INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect f430b560-ef01-4272-8613-533a496390a4 / got description=7c76bd20-c01d-4845-b341-45267fa9f7e2) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 870feb8c-a7b0-4cd7-bdf4-195914b1b1aa / got description=f430b560-ef01-4272-8613-533a496390a4) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 870feb8c-a7b0-4cd7-bdf4-195914b1b1aa / got description=f430b560-ef01-4272-8613-533a496390a4) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 870feb8c-a7b0-4cd7-bdf4-195914b1b1aa / got description=f430b560-ef01-4272-8613-533a496390a4) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working
Passed suites/memberof_plugin/regression_test.py::test_memberof_group 6.05
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.memberof_plugin.regression_test:regression_test.py:480 Enable memberof plugin and set the scope as cn=sub1,dc=example,dc=com INFO  lib389:regression_test.py:439 !!!!!!! uid=test_m1,cn=sub1,dc=example,dc=com: memberof->b'cn=g1,cn=sub1,dc=example,dc=com' INFO  lib389:regression_test.py:439 !!!!!!! uid=test_m2,cn=sub1,dc=example,dc=com: memberof->b'cn=g1,cn=sub1,dc=example,dc=com' INFO  lib389:regression_test.py:439 !!!!!!! uid=test_m1,cn=sub1,dc=example,dc=com: memberof->b'cn=g1,cn=sub1,dc=example,dc=com' INFO  lib389:regression_test.py:439 !!!!!!! uid=test_m2,cn=sub1,dc=example,dc=com: memberof->b'cn=g1,cn=sub1,dc=example,dc=com' CRITICAL tests.suites.memberof_plugin.regression_test:regression_test.py:426 Renaming user (cn=g2,cn=sub2,dc=example,dc=com): new cn=g2-new INFO  lib389:regression_test.py:439 !!!!!!! uid=test_m1,cn=sub1,dc=example,dc=com: memberof->b'cn=g1,cn=sub1,dc=example,dc=com' INFO  lib389:regression_test.py:439 !!!!!!! uid=test_m2,cn=sub1,dc=example,dc=com: memberof->b'cn=g1,cn=sub1,dc=example,dc=com' INFO  lib389:regression_test.py:439 !!!!!!! uid=test_m1,cn=sub1,dc=example,dc=com: memberof->b'cn=g1,cn=sub1,dc=example,dc=com' INFO  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' INFO  lib389:regression_test.py:439 !!!!!!! uid=test_m2,cn=sub1,dc=example,dc=com: memberof->b'cn=g1,cn=sub1,dc=example,dc=com' INFO  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 8.81
-------------------------------Captured log call--------------------------------
CRITICAL tests.suites.memberof_plugin.regression_test:regression_test.py:574 Adding user (cn=user0,ou=people,dc=example,dc=com): CRITICAL tests.suites.memberof_plugin.regression_test:regression_test.py:574 Adding user (cn=user1,ou=people,dc=example,dc=com): CRITICAL tests.suites.memberof_plugin.regression_test:regression_test.py:574 Adding user (cn=user2,ou=people,dc=example,dc=com): CRITICAL tests.suites.memberof_plugin.regression_test:regression_test.py:574 Adding user (cn=user3,ou=people,dc=example,dc=com): CRITICAL tests.suites.memberof_plugin.regression_test:regression_test.py:574 Adding user (cn=user4,ou=people,dc=example,dc=com): CRITICAL tests.suites.memberof_plugin.regression_test:regression_test.py:574 Adding user (cn=user5,ou=people,dc=example,dc=com): CRITICAL tests.suites.memberof_plugin.regression_test:regression_test.py:574 Adding user (cn=user6,ou=people,dc=example,dc=com): CRITICAL tests.suites.memberof_plugin.regression_test:regression_test.py:574 Adding user (cn=user7,ou=people,dc=example,dc=com): CRITICAL tests.suites.memberof_plugin.regression_test:regression_test.py:574 Adding user (cn=user8,ou=people,dc=example,dc=com): CRITICAL tests.suites.memberof_plugin.regression_test:regression_test.py:574 Adding user (cn=user9,ou=people,dc=example,dc=com): INFO  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') INFO  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') INFO  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') INFO  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') INFO  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') INFO  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') INFO  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') INFO  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') INFO  lib389:regression_test.py:671 retrieve: cn=group_in0,ou=People,dc=example,dc=com with desc=b'mygroup' INFO  lib389:regression_test.py:671 retrieve: cn=group_in1,ou=People,dc=example,dc=com with desc=b'mygroup' INFO  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.73
-------------------------------Captured log call--------------------------------
CRITICAL tests.suites.memberof_plugin.regression_test:regression_test.py:737 Adding user (cn=user0,ou=people,dc=example,dc=com): CRITICAL tests.suites.memberof_plugin.regression_test:regression_test.py:737 Adding user (cn=user1,ou=people,dc=example,dc=com): CRITICAL tests.suites.memberof_plugin.regression_test:regression_test.py:737 Adding user (cn=user2,ou=people,dc=example,dc=com): CRITICAL tests.suites.memberof_plugin.regression_test:regression_test.py:737 Adding user (cn=user3,ou=people,dc=example,dc=com): CRITICAL tests.suites.memberof_plugin.regression_test:regression_test.py:737 Adding user (cn=user4,ou=people,dc=example,dc=com): CRITICAL tests.suites.memberof_plugin.regression_test:regression_test.py:737 Adding user (cn=user5,ou=people,dc=example,dc=com): CRITICAL tests.suites.memberof_plugin.regression_test:regression_test.py:737 Adding user (cn=user6,ou=people,dc=example,dc=com): CRITICAL tests.suites.memberof_plugin.regression_test:regression_test.py:737 Adding user (cn=user7,ou=people,dc=example,dc=com): CRITICAL tests.suites.memberof_plugin.regression_test:regression_test.py:737 Adding user (cn=user8,ou=people,dc=example,dc=com): CRITICAL tests.suites.memberof_plugin.regression_test:regression_test.py:737 Adding user (cn=user9,ou=people,dc=example,dc=com): INFO  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') INFO  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') INFO  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') INFO  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') INFO  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') INFO  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') INFO  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') INFO  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') INFO  lib389:regression_test.py:832 Should assert cn=user2,ou=people,dc=example,dc=com has memberof is False INFO  lib389:regression_test.py:832 Should assert cn=user3,ou=people,dc=example,dc=com has memberof is False INFO  lib389:regression_test.py:855 Should assert cn=user4,ou=people,dc=example,dc=com has memberof is False INFO  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.52
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.monitor.monitor_test:monitor_test.py:44 connection: ['1:20201025003230Z:3:2:-:cn=directory manager:0:0:0:1:ip=127.0.0.1'], currentconnections: ['1'], totalconnections: ['1'] INFO  tests.suites.monitor.monitor_test:monitor_test.py:48 version :: ['1:20201025003230Z:6:5:-:cn=directory manager:0:0:0:1:ip=127.0.0.1'] INFO  tests.suites.monitor.monitor_test:monitor_test.py:52 threads: ['16'],currentconnectionsatmaxthreads: ['0'],maxthreadsperconnhits: ['0'] INFO  tests.suites.monitor.monitor_test:monitor_test.py:56 nbackends: ['1'], backendmonitordn: ['cn=monitor,cn=userRoot,cn=ldbm database,cn=plugins,cn=config'] INFO  tests.suites.monitor.monitor_test:monitor_test.py:60 opsinitiated: ['12'], opscompleted: ['13'] INFO  tests.suites.monitor.monitor_test:monitor_test.py:64 dtablesize: ['1024'],readwaiters: ['0'],entriessent: ['14'],bytessent: ['1099'],currenttime: ['20201025003231Z'],starttime: ['20201025003230Z']
Passed suites/monitor/monitor_test.py::test_monitor_ldbm 0.01
No log output captured.
Passed suites/monitor/monitor_test.py::test_monitor_backend 0.01
No log output captured.
Passed suites/openldap_2_389/migrate_test.py::test_parse_openldap_slapdd 0.02
-------------------------------Captured log call--------------------------------
INFO  lib389.migrate.openldap.config:config.py:264 Examining OpenLDAP Configuration ... INFO  lib389.migrate.openldap.config:config.py:285 Completed OpenLDAP Configuration Parsing.
Passed suites/openldap_2_389/migrate_test.py::test_migrate_openldap_slapdd 15.83
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
------------------------------Captured stdout call------------------------------
==== migration plan ==== SchemaAttributeCreate -> ('pseudonym',) SchemaAttributeCreate -> ('email', 'emailAddress', 'pkcs9email') SchemaAttributeCreate -> ('textEncodedORAddress',) SchemaAttributeUnsupported -> ('otherMailbox',) SchemaAttributeCreate -> ('aRecord',) SchemaAttributeCreate -> ('mDRecord',) SchemaAttributeCreate -> ('mXRecord',) SchemaAttributeCreate -> ('nSRecord',) SchemaAttributeCreate -> ('sOARecord',) SchemaAttributeCreate -> ('cNAMERecord',) SchemaAttributeCreate -> ('janetMailbox',) SchemaAttributeCreate -> ('mailPreferenceOption',) SchemaAttributeUnsupported -> ('dSAQuality',) SchemaAttributeUnsupported -> ('singleLevelQuality',) SchemaAttributeUnsupported -> ('subtreeMinimumQuality',) SchemaAttributeUnsupported -> ('subtreeMaximumQuality',) SchemaAttributeCreate -> ('personalSignature',) SchemaAttributeCreate -> ('suseDefaultBase',) SchemaAttributeCreate -> ('suseNextUniqueId',) SchemaAttributeCreate -> ('suseMinUniqueId',) SchemaAttributeCreate -> ('suseMaxUniqueId',) SchemaAttributeCreate -> ('suseDefaultTemplate',) SchemaAttributeCreate -> ('suseSearchFilter',) SchemaAttributeCreate -> ('suseDefaultValue',) SchemaAttributeCreate -> ('suseNamingAttribute',) SchemaAttributeCreate -> ('suseSecondaryGroup',) SchemaAttributeCreate -> ('suseMinPasswordLength',) SchemaAttributeCreate -> ('suseMaxPasswordLength',) SchemaAttributeCreate -> ('susePasswordHash',) SchemaAttributeCreate -> ('suseSkelDir',) SchemaAttributeCreate -> ('susePlugin',) SchemaAttributeCreate -> ('suseMapAttribute',) SchemaAttributeCreate -> ('suseImapServer',) SchemaAttributeCreate -> ('suseImapAdmin',) SchemaAttributeCreate -> ('suseImapDefaultQuota',) SchemaAttributeCreate -> ('suseImapUseSsl',) SchemaClassUnsupported -> 0.9.2342.19200300.100.4.4 ('pilotPerson', 'newPilotPerson') may -> ('userid', 'textEncodedORAddress', 'rfc822Mailbox', 'favouriteDrink', 'roomNumber', 'userClass', 'homeTelephoneNumber', 'homePostalAddress', 'secretary', 'personalTitle', 'preferredDeliveryMethod', 'businessCategory', 'janetMailbox', 'otherMailbox', 'mobileTelephoneNumber', 'pagerTelephoneNumber', 'organizationalStatus', 'mailPreferenceOption', 'personalSignature') must -> () sup -> ('person',) SchemaClassCreate -> 0.9.2342.19200300.100.4.15 ('dNSDomain',) may -> ('ARecord', 'MDRecord', 'MXRecord', 'NSRecord', 'SOARecord', 'CNAMERecord') must -> () sup -> ('domain',) SchemaClassCreate -> 0.9.2342.19200300.100.4.20 ('pilotOrganization',) may -> ('buildingName',) must -> () sup -> ('organization', 'organizationalUnit') SchemaClassUnsupported -> 0.9.2342.19200300.100.4.21 ('pilotDSA',) may -> ('dSAQuality',) must -> () sup -> ('dsa',) SchemaClassUnsupported -> 0.9.2342.19200300.100.4.22 ('qualityLabelledData',) may -> ('subtreeMinimumQuality', 'subtreeMaximumQuality') must -> ('dsaQuality',) sup -> ('top',) SchemaClassCreate -> SUSE.YaST.ModuleConfig.OC:2 ('suseModuleConfiguration',) may -> ('suseDefaultBase',) must -> ('cn',) sup -> ('top',) SchemaClassCreate -> SUSE.YaST.ModuleConfig.OC:3 ('suseUserConfiguration',) may -> ('suseMinPasswordLength', 'suseMaxPasswordLength', 'susePasswordHash', 'suseSkelDir', 'suseNextUniqueId', 'suseMinUniqueId', 'suseMaxUniqueId', 'suseDefaultTemplate', 'suseSearchFilter', 'suseMapAttribute') must -> () sup -> ('suseModuleConfiguration',) SchemaClassCreate -> SUSE.YaST.ModuleConfig.OC:4 ('suseObjectTemplate',) may -> ('susePlugin', 'suseDefaultValue', 'suseNamingAttribute') must -> ('cn',) sup -> ('top',) SchemaClassCreate -> SUSE.YaST.ModuleConfig.OC:5 ('suseUserTemplate',) may -> ('suseSecondaryGroup',) must -> ('cn',) sup -> ('suseObjectTemplate',) SchemaClassCreate -> SUSE.YaST.ModuleConfig.OC:6 ('suseGroupTemplate',) may -> () must -> ('cn',) sup -> ('suseObjectTemplate',) SchemaClassCreate -> SUSE.YaST.ModuleConfig.OC:7 ('suseGroupConfiguration',) may -> ('suseNextUniqueId', 'suseMinUniqueId', 'suseMaxUniqueId', 'suseDefaultTemplate', 'suseSearchFilter', 'suseMapAttribute') must -> () sup -> ('suseModuleConfiguration',) SchemaClassCreate -> SUSE.YaST.ModuleConfig.OC:8 ('suseCaConfiguration',) may -> () must -> () sup -> ('suseModuleConfiguration',) SchemaClassCreate -> SUSE.YaST.ModuleConfig.OC:9 ('suseDnsConfiguration',) may -> () must -> () sup -> ('suseModuleConfiguration',) SchemaClassCreate -> SUSE.YaST.ModuleConfig.OC:10 ('suseDhcpConfiguration',) may -> () must -> () sup -> ('suseModuleConfiguration',) SchemaClassCreate -> SUSE.YaST.ModuleConfig.OC:11 ('suseMailConfiguration',) may -> () must -> ('suseImapServer', 'suseImapAdmin', 'suseImapDefaultQuota', 'suseImapUseSsl') sup -> ('suseModuleConfiguration',) DatabaseReindex -> dc=example,dc=com PluginMemberOfEnable PluginMemberOfScope -> dc=example,dc=com PluginMemberOfFixup -> dc=example,dc=com PluginRefintEnable PluginRefintAttributes -> member PluginRefintAttributes -> memberOf PluginRefintScope -> dc=example,dc=com PluginUniqueConfigure -> dc=example,dc=com, mail 401a528e-eaf5-1039-8667-dbfbf2f5e6dd PluginUniqueConfigure -> dc=example,dc=com, uid 401a528e-eaf5-1039-8667-dbfbf2f5e6dd DatabaseCreate -> dc=example,dc=net, 401a7084-eaf5-1039-866c-dbfbf2f5e6dd DatabaseIndexCreate -> objectClass eq, dc=example,dc=net DatabaseReindex -> dc=example,dc=net PluginMemberOfEnable PluginMemberOfScope -> dc=example,dc=net PluginMemberOfFixup -> dc=example,dc=net PluginUniqueConfigure -> dc=example,dc=net, mail 401a7084-eaf5-1039-866c-dbfbf2f5e6dd PluginUniqueConfigure -> dc=example,dc=net, uid 401a7084-eaf5-1039-866c-dbfbf2f5e6dd DatabaseLdifImport -> dc=example,dc=com /export/tests/suites/openldap_2_389/../../data/openldap_2_389/1/example_com.slapcat.ldif DatabaseLdifImport -> dc=example,dc=net /export/tests/suites/openldap_2_389/../../data/openldap_2_389/1/example_net.slapcat.ldif ==== end migration plan ====
-------------------------------Captured log call--------------------------------
INFO  lib389.migrate.openldap.config:config.py:264 Examining OpenLDAP Configuration ... INFO  lib389.migrate.openldap.config:config.py:285 Completed OpenLDAP Configuration Parsing. INFO  lib389.migrate.plan:plan.py:656 migration: 1 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 2 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 3 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 4 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 5 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 6 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 7 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 8 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 9 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 10 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 11 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 12 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 13 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 14 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 15 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 16 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 17 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 18 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 19 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 20 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 21 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 22 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 23 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 24 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 25 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 26 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 27 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 28 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 29 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 30 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 31 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 32 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 33 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 34 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 35 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 36 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 37 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 38 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 39 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 40 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 41 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 42 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 43 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 44 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 45 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 46 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 47 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 48 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 49 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 50 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 51 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 52 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 53 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 54 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 55 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 56 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 57 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 58 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 59 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 60 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 61 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 62 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 63 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 64 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 65 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 66 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 67 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 68 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 69 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 70 / 71 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 71 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 1 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 2 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 3 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 4 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 5 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 6 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 7 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 8 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 9 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 10 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 11 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 12 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 13 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 14 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 15 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 16 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 17 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 18 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 19 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 20 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 21 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 22 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 23 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 24 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 25 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 26 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 27 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 28 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 29 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 30 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 31 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 32 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 33 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 34 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 35 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 36 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 37 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 38 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 39 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 40 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 41 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 42 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 43 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 44 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 45 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 46 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 47 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 48 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 49 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 50 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 51 / 71 complete ... INFO  lib389:tasks.py:798 Index task index_all_10242020_203249 completed successfully INFO  lib389.migrate.plan:plan.py:663 post: 52 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 53 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 54 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 55 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 56 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 57 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 58 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 59 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 60 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 61 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 62 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 63 / 71 complete ... INFO  lib389:tasks.py:798 Index task index_all_10242020_203251 completed successfully INFO  lib389.migrate.plan:plan.py:663 post: 64 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 65 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 66 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 67 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 68 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 69 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 70 / 71 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 71 / 71 complete ...
Passed suites/openldap_2_389/migrate_test.py::test_migrate_openldap_slapdd_skip_elements 10.62
------------------------------Captured stdout call------------------------------
==== migration plan ==== SchemaAttributeUnsupported -> ('otherMailbox',) SchemaAttributeUnsupported -> ('dSAQuality',) SchemaAttributeUnsupported -> ('singleLevelQuality',) SchemaAttributeUnsupported -> ('subtreeMinimumQuality',) SchemaAttributeUnsupported -> ('subtreeMaximumQuality',) SchemaAttributeCreate -> ('suseDefaultBase',) SchemaAttributeCreate -> ('suseNextUniqueId',) SchemaAttributeCreate -> ('suseMinUniqueId',) SchemaAttributeCreate -> ('suseMaxUniqueId',) SchemaAttributeCreate -> ('suseDefaultTemplate',) SchemaAttributeCreate -> ('suseSearchFilter',) SchemaAttributeCreate -> ('suseDefaultValue',) SchemaAttributeCreate -> ('suseNamingAttribute',) SchemaAttributeCreate -> ('suseSecondaryGroup',) SchemaAttributeCreate -> ('suseMinPasswordLength',) SchemaAttributeCreate -> ('suseMaxPasswordLength',) SchemaAttributeCreate -> ('susePasswordHash',) SchemaAttributeCreate -> ('suseSkelDir',) SchemaAttributeCreate -> ('susePlugin',) SchemaAttributeCreate -> ('suseMapAttribute',) SchemaAttributeCreate -> ('suseImapServer',) SchemaAttributeCreate -> ('suseImapAdmin',) SchemaAttributeCreate -> ('suseImapDefaultQuota',) SchemaAttributeCreate -> ('suseImapUseSsl',) SchemaClassUnsupported -> 0.9.2342.19200300.100.4.4 ('pilotPerson', 'newPilotPerson') may -> ('userid', 'textEncodedORAddress', 'rfc822Mailbox', 'favouriteDrink', 'roomNumber', 'userClass', 'homeTelephoneNumber', 'homePostalAddress', 'secretary', 'personalTitle', 'preferredDeliveryMethod', 'businessCategory', 'janetMailbox', 'otherMailbox', 'mobileTelephoneNumber', 'pagerTelephoneNumber', 'organizationalStatus', 'mailPreferenceOption', 'personalSignature') must -> () sup -> ('person',) SchemaClassInconsistent -> ( 0.9.2342.19200300.100.4.20 NAME 'pilotOrganization' SUP organization STRUCTURAL MAY buildingName X-ORIGIN 'user defined' ) to 0.9.2342.19200300.100.4.20 ('pilotOrganization',) may -> ('buildingName',) must -> () sup -> ('organization', 'organizationalUnit') SchemaClassUnsupported -> 0.9.2342.19200300.100.4.21 ('pilotDSA',) may -> ('dSAQuality',) must -> () sup -> ('dsa',) SchemaClassUnsupported -> 0.9.2342.19200300.100.4.22 ('qualityLabelledData',) may -> ('subtreeMinimumQuality', 'subtreeMaximumQuality') must -> ('dsaQuality',) sup -> ('top',) SchemaClassCreate -> SUSE.YaST.ModuleConfig.OC:2 ('suseModuleConfiguration',) may -> ('suseDefaultBase',) must -> ('cn',) sup -> ('top',) SchemaClassCreate -> SUSE.YaST.ModuleConfig.OC:3 ('suseUserConfiguration',) may -> ('suseMinPasswordLength', 'suseMaxPasswordLength', 'susePasswordHash', 'suseSkelDir', 'suseNextUniqueId', 'suseMinUniqueId', 'suseMaxUniqueId', 'suseDefaultTemplate', 'suseSearchFilter', 'suseMapAttribute') must -> () sup -> ('suseModuleConfiguration',) SchemaClassCreate -> SUSE.YaST.ModuleConfig.OC:4 ('suseObjectTemplate',) may -> ('susePlugin', 'suseDefaultValue', 'suseNamingAttribute') must -> ('cn',) sup -> ('top',) SchemaClassCreate -> SUSE.YaST.ModuleConfig.OC:5 ('suseUserTemplate',) may -> ('suseSecondaryGroup',) must -> ('cn',) sup -> ('suseObjectTemplate',) SchemaClassCreate -> SUSE.YaST.ModuleConfig.OC:6 ('suseGroupTemplate',) may -> () must -> ('cn',) sup -> ('suseObjectTemplate',) SchemaClassCreate -> SUSE.YaST.ModuleConfig.OC:7 ('suseGroupConfiguration',) may -> ('suseNextUniqueId', 'suseMinUniqueId', 'suseMaxUniqueId', 'suseDefaultTemplate', 'suseSearchFilter', 'suseMapAttribute') must -> () sup -> ('suseModuleConfiguration',) SchemaClassCreate -> SUSE.YaST.ModuleConfig.OC:8 ('suseCaConfiguration',) may -> () must -> () sup -> ('suseModuleConfiguration',) SchemaClassCreate -> SUSE.YaST.ModuleConfig.OC:9 ('suseDnsConfiguration',) may -> () must -> () sup -> ('suseModuleConfiguration',) SchemaClassCreate -> SUSE.YaST.ModuleConfig.OC:10 ('suseDhcpConfiguration',) may -> () must -> () sup -> ('suseModuleConfiguration',) SchemaClassCreate -> SUSE.YaST.ModuleConfig.OC:11 ('suseMailConfiguration',) may -> () must -> ('suseImapServer', 'suseImapAdmin', 'suseImapDefaultQuota', 'suseImapUseSsl') sup -> ('suseModuleConfiguration',) DatabaseReindex -> dc=example,dc=com PluginMemberOfEnable PluginMemberOfScope -> dc=example,dc=com PluginMemberOfFixup -> dc=example,dc=com PluginRefintEnable PluginRefintAttributes -> member PluginRefintAttributes -> memberOf PluginRefintScope -> dc=example,dc=com PluginUniqueConfigure -> dc=example,dc=com, mail 401a528e-eaf5-1039-8667-dbfbf2f5e6dd PluginUniqueConfigure -> dc=example,dc=com, uid 401a528e-eaf5-1039-8667-dbfbf2f5e6dd DatabaseReindex -> dc=example,dc=net PluginMemberOfEnable PluginMemberOfScope -> dc=example,dc=net PluginMemberOfFixup -> dc=example,dc=net PluginUniqueConfigure -> dc=example,dc=net, mail 401a7084-eaf5-1039-866c-dbfbf2f5e6dd PluginUniqueConfigure -> dc=example,dc=net, uid 401a7084-eaf5-1039-866c-dbfbf2f5e6dd DatabaseLdifImport -> dc=example,dc=com /export/tests/suites/openldap_2_389/../../data/openldap_2_389/1/example_com.slapcat.ldif ==== end migration plan ====
-------------------------------Captured log call--------------------------------
INFO  lib389.migrate.openldap.config:config.py:264 Examining OpenLDAP Configuration ... INFO  lib389.migrate.openldap.config:config.py:285 Completed OpenLDAP Configuration Parsing. INFO  lib389.migrate.plan:plan.py:656 migration: 1 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 2 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 3 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 4 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 5 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 6 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 7 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 8 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 9 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 10 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 11 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 12 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 13 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 14 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 15 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 16 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 17 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 18 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 19 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 20 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 21 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 22 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 23 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 24 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 25 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 26 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 27 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 28 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 29 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 30 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 31 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 32 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 33 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 34 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 35 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 36 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 37 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 38 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 39 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 40 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 41 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 42 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 43 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 44 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 45 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 46 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 47 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 48 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 49 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 50 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 51 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 52 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 53 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 54 / 55 complete ... INFO  lib389.migrate.plan:plan.py:656 migration: 55 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 1 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 2 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 3 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 4 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 5 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 6 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 7 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 8 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 9 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 10 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 11 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 12 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 13 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 14 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 15 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 16 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 17 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 18 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 19 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 20 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 21 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 22 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 23 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 24 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 25 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 26 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 27 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 28 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 29 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 30 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 31 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 32 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 33 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 34 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 35 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 36 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 37 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 38 / 55 complete ... INFO  lib389:tasks.py:798 Index task index_all_10242020_203300 completed successfully INFO  lib389.migrate.plan:plan.py:663 post: 39 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 40 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 41 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 42 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 43 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 44 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 45 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 46 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 47 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 48 / 55 complete ... INFO  lib389:tasks.py:798 Index task index_all_10242020_203302 completed successfully INFO  lib389.migrate.plan:plan.py:663 post: 49 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 50 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 51 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 52 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 53 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 54 / 55 complete ... INFO  lib389.migrate.plan:plan.py:663 post: 55 / 55 complete ...
Passed suites/paged_results/paged_results_test.py::test_search_success[6-5] 0.28
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:56 Adding user simplepaged_test
-------------------------------Captured log call--------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 5 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:247 Set user bind simplepaged_test INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 6; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f65e563d820>]. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:253 5 results INFO  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.28
-------------------------------Captured log call--------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 5 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:247 Set user bind simplepaged_test INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 5; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f65e55a7be0>]. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:253 5 results INFO  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.10
-------------------------------Captured log call--------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 25 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:247 Set user bind simplepaged_test INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 5; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f65e5731e50>]. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:253 25 results INFO  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.93
-------------------------------Captured log call--------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 200 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-idlistscanlimit to 100. Previous value - b'4000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:299 Set user bind INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:302 Create simple paged results control instance INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:308 Initiate ldapsearch with created control instance INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:320 Getting page 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 200 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-idlistscanlimit to b'4000'. Previous value - b'100'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config.
Passed suites/paged_results/paged_results_test.py::test_search_limits_fail[5-15-cn=config-nsslapd-timelimit-20-UNAVAILABLE_CRITICAL_EXTENSION] 30.73
-------------------------------Captured log call--------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 15 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-timelimit to 20. Previous value - b'3600'. Modified suffix - cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:299 Set user bind INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:302 Create simple paged results control instance INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:308 Initiate ldapsearch with created control instance INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:320 Getting page 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 15 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-timelimit to b'3600'. Previous value - b'20'. Modified suffix - cn=config.
Passed suites/paged_results/paged_results_test.py::test_search_limits_fail[21-50-cn=config-nsslapd-sizelimit-20-SIZELIMIT_EXCEEDED] 2.18
-------------------------------Captured log call--------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 50 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-sizelimit to 20. Previous value - b'2000'. Modified suffix - cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:299 Set user bind INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:302 Create simple paged results control instance INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:308 Initiate ldapsearch with created control instance INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:320 Getting page 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 50 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-sizelimit to b'2000'. Previous value - b'20'. Modified suffix - cn=config.
Passed suites/paged_results/paged_results_test.py::test_search_limits_fail[21-50-cn=config-nsslapd-pagedsizelimit-5-SIZELIMIT_EXCEEDED] 2.68
-------------------------------Captured log call--------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 50 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-pagedsizelimit to 5. Previous value - b'0'. Modified suffix - cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:299 Set user bind INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:302 Create simple paged results control instance INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:308 Initiate ldapsearch with created control instance INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:320 Getting page 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 50 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-pagedsizelimit to b'0'. Previous value - b'5'. Modified suffix - cn=config.
Passed suites/paged_results/paged_results_test.py::test_search_limits_fail[5-50-cn=config,cn=ldbm database,cn=plugins,cn=config-nsslapd-lookthroughlimit-20-ADMINLIMIT_EXCEEDED] 2.47
-------------------------------Captured log call--------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 50 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-lookthroughlimit to 20. Previous value - b'5000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:299 Set user bind INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:302 Create simple paged results control instance INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:308 Initiate ldapsearch with created control instance INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:320 Getting page 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 50 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-lookthroughlimit to b'5000'. Previous value - b'20'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config.
Passed suites/paged_results/paged_results_test.py::test_search_sort_success 3.36
-------------------------------Captured log call--------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 50 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:379 Initiate ldapsearch with created control instance INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:380 Collect data with sorting INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 5; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f65e55c82e0>, <lib389._controls.SSSRequestControl object at 0x7f65e55c8610>]. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 5 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 6 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 7 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 8 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 9 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:385 Substring numbers from user DNs INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:389 Assert that list is sorted INFO  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.47
-------------------------------Captured log call--------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 10 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:420 Set user bind INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:423 Create simple paged results control instance INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:427 Initiate a search with a paged results control INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:430 Abandon the search INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:433 Expect an ldap.TIMEOUT exception, while trying to get the search results INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 10 users
Passed suites/paged_results/paged_results_test.py::test_search_with_timelimit 34.32
-------------------------------Captured log call--------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 100 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:469 Set user bind INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:472 Create simple paged results control instance INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:477 Iteration 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:484 Getting page 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:484 Getting page 1 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:500 Done with this search - sleeping 10 seconds INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:477 Iteration 1 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:484 Getting page 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:484 Getting page 1 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:500 Done with this search - sleeping 10 seconds INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:477 Iteration 2 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:484 Getting page 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:484 Getting page 1 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:500 Done with this search - sleeping 10 seconds INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 100 users
Passed suites/paged_results/paged_results_test.py::test_search_dns_ip_aci[fqdn] 5.05
-------------------------------Captured log call--------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 100 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:548 Back up current suffix ACI INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:551 Add test ACI INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:557 Set user bind INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:560 Create simple paged results control instance INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:564 Initiate three searches with a paged results control INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:566 1 search INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 5; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f65e6a39b80>]. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 5 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 6 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 7 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 8 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 9 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 10 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 11 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 12 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 13 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 14 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 15 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 16 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 17 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 18 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 19 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:569 100 results INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:566 2 search INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 5; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f65e6a39b80>]. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 5 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 6 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 7 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 8 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 9 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 10 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 11 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 12 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 13 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 14 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 15 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 16 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 17 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 18 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 19 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:569 100 results INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:566 3 search INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 5; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f65e6a39b80>]. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 5 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 6 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 7 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 8 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 9 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 10 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 11 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 12 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 13 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 14 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 15 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 16 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 17 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 18 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 19 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:569 100 results INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:571 If we are here, then no error has happened. We are good. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:574 Restore ACI INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 100 users
Passed suites/paged_results/paged_results_test.py::test_search_dns_ip_aci[ip] 5.52
-------------------------------Captured log call--------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 100 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:548 Back up current suffix ACI INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:551 Add test ACI INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:557 Set user bind INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:560 Create simple paged results control instance INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:564 Initiate three searches with a paged results control INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:566 1 search INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 5; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f65e6264e80>]. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 5 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 6 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 7 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 8 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 9 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 10 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 11 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 12 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 13 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 14 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 15 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 16 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 17 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 18 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 19 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:569 100 results INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:566 2 search INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 5; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f65e6264e80>]. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 5 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 6 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 7 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 8 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 9 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 10 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 11 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 12 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 13 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 14 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 15 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 16 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 17 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 18 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 19 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:569 100 results INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:566 3 search INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 5; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f65e6264e80>]. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 5 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 6 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 7 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 8 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 9 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 10 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 11 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 12 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 13 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 14 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 15 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 16 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 17 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 18 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 19 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:569 100 results INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:571 If we are here, then no error has happened. We are good. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:574 Restore ACI INFO  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 4.42
-------------------------------Captured log call--------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 100 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:607 Set user bind INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:610 Create simple paged results control instance INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:615 Iteration 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:615 Iteration 1 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:615 Iteration 2 INFO  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.07
-------------------------------Captured log call--------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 100 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:662 Set user bind INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:665 Create simple paged results control instance INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:673 Put an invalid cookie (1000) to the control. TypeError is expected INFO  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] 5.08
-------------------------------Captured log call--------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 100 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:662 Set user bind INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:665 Create simple paged results control instance INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:673 Put an invalid cookie (-1) to the control. TypeError is expected INFO  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.73
-------------------------------Captured log call--------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 10 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:706 Set user bind INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:709 Create simple paged results control instance INFO  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.48
-------------------------------Captured log call--------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-pagedsizelimit to 20. Previous value - b'0'. Modified suffix - cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 10 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:755 Set user bind INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 10; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f65e63b0eb0>]. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:763 10 results INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 10 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-pagedsizelimit to b'0'. Previous value - b'20'. Modified suffix - cn=config.
Passed suites/paged_results/paged_results_test.py::test_search_nspagedsizelimit[5-15-PASS] 0.45
-------------------------------Captured log call--------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 10 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-pagedsizelimit to 5. Previous value - b'0'. Modified suffix - cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsPagedSizeLimit to 15. Previous value - None. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:818 Set user bind INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:829 Expect to pass INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 10; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f65e55c8580>]. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:831 10 results INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 10 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-pagedsizelimit to b'0'. Previous value - b'5'. Modified suffix - cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsPagedSizeLimit to None. Previous value - b'15'. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com.
Passed suites/paged_results/paged_results_test.py::test_search_nspagedsizelimit[15-5-SIZELIMIT_EXCEEDED] 0.52
-------------------------------Captured log call--------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 10 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-pagedsizelimit to 15. Previous value - b'0'. Modified suffix - cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsPagedSizeLimit to 5. Previous value - None. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:818 Set user bind INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:825 Expect to fail with SIZELIMIT_EXCEEDED INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 10; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f65e55a7f40>]. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 10 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-pagedsizelimit to b'0'. Previous value - b'15'. Modified suffix - cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsPagedSizeLimit to None. Previous value - b'5'. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com.
Passed suites/paged_results/paged_results_test.py::test_search_paged_limits[conf_attr_values0-ADMINLIMIT_EXCEEDED] 4.23
-------------------------------Captured log call--------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 101 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-sizelimit to 5000. Previous value - b'2000'. Modified suffix - cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-pagedsizelimit to 5000. Previous value - b'0'. Modified suffix - cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-idlistscanlimit to 100. Previous value - b'4000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-lookthroughlimit to 100. Previous value - b'5000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:890 Set user bind INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:897 Expect to fail with ADMINLIMIT_EXCEEDED INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 10; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f65e63ce1f0>]. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 5 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 6 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 7 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 8 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 101 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-sizelimit to b'2000'. Previous value - b'5000'. Modified suffix - cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-pagedsizelimit to b'0'. Previous value - b'5000'. Modified suffix - cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-lookthroughlimit to b'5000'. Previous value - b'100'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-idlistscanlimit to b'4000'. Previous value - b'100'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config.
Passed suites/paged_results/paged_results_test.py::test_search_paged_limits[conf_attr_values1-PASS] 4.28
-------------------------------Captured log call--------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 101 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-sizelimit to 5000. Previous value - b'2000'. Modified suffix - cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-pagedsizelimit to 5000. Previous value - b'0'. Modified suffix - cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-idlistscanlimit to 120. Previous value - b'4000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-lookthroughlimit to 122. Previous value - b'5000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:890 Set user bind INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:901 Expect to pass INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 10; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f65e56f83d0>]. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 5 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 6 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 7 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 8 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 9 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 10 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:903 101 results INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 101 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-sizelimit to b'2000'. Previous value - b'5000'. Modified suffix - cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-pagedsizelimit to b'0'. Previous value - b'5000'. Modified suffix - cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-lookthroughlimit to b'5000'. Previous value - b'122'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-idlistscanlimit to b'4000'. Previous value - b'120'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config.
Passed suites/paged_results/paged_results_test.py::test_search_paged_user_limits[conf_attr_values0-ADMINLIMIT_EXCEEDED] 4.69
-------------------------------Captured log call--------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 101 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-lookthroughlimit to 1000. Previous value - b'5000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-idlistscanlimit to 1000. Previous value - b'4000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsPagedIDListScanLimit to 100. Previous value - None. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsPagedLookthroughLimit to 100. Previous value - None. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:964 Set user bind INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:971 Expect to fail with ADMINLIMIT_EXCEEDED INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 10; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f65e60aff10>]. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 5 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 6 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 7 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 8 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 101 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-lookthroughlimit to b'5000'. Previous value - b'1000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-idlistscanlimit to b'4000'. Previous value - b'1000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsPagedIDListScanLimit to None. Previous value - b'100'. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsPagedLookthroughLimit to None. Previous value - b'100'. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com.
Passed suites/paged_results/paged_results_test.py::test_search_paged_user_limits[conf_attr_values1-PASS] 4.18
-------------------------------Captured log call--------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 101 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-lookthroughlimit to 1000. Previous value - b'5000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-idlistscanlimit to 1000. Previous value - b'4000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsPagedIDListScanLimit to 120. Previous value - None. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsPagedLookthroughLimit to 122. Previous value - None. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:964 Set user bind INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:975 Expect to pass INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 10; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f65e6084370>]. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 5 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 6 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 7 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 8 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 9 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 10 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:977 101 results INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 101 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-lookthroughlimit to b'5000'. Previous value - b'1000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-idlistscanlimit to b'4000'. Previous value - b'1000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsPagedIDListScanLimit to None. Previous value - b'120'. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsPagedLookthroughLimit to None. Previous value - b'122'. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com.
Passed suites/paged_results/paged_results_test.py::test_ger_basic 1.37
-------------------------------Captured log call--------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 20 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 4; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f65e601b610>, <ldap.controls.simple.GetEffectiveRightsControl object at 0x7f65e601b700>]. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 5 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:1015 20 results INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:1017 Check for attributeLevelRights INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:1020 Remove added users INFO  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 9.46
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:87 Adding suffix:o=test_parent and backend: parent_base INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:96 Adding ACI to allow our test user to search INFO  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--------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:1051 Clear the access log INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 10 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 10 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: o=test_parent; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 4; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f65e56832e0>]. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 5 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:1062 20 results INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:1065 Restart the server to flush the logs INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:1071 Assert that last pr_cookie == -1 and others pr_cookie == 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:1076 Remove added users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 10 users INFO  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.16
-------------------------------Captured log call--------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 20 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:1109 Set user bind INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 4; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f65e5fda520>]. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:1116 20 results INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:1119 Remove added users INFO  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.18
-------------------------------Captured log call--------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 20 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-maxsimplepaged-per-conn to -1. Previous value - b'-1'. Modified suffix - cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:1109 Set user bind INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 4; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f65e5fe3b50>]. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:1116 20 results INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:1119 Remove added users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 20 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-maxsimplepaged-per-conn to b'-1'. Previous value - b'-1'. Modified suffix - cn=config.
Passed suites/paged_results/paged_results_test.py::test_maxsimplepaged_per_conn_success[1000] 1.35
-------------------------------Captured log call--------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 20 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-maxsimplepaged-per-conn to 1000. Previous value - b'-1'. Modified suffix - cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:1109 Set user bind INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:191 Running simple paged result search with - search suffix: dc=example,dc=com; filter: (uid=test*); attr list ['dn', 'sn']; page_size = 4; controls: [<ldap.controls.libldap.SimplePagedResultsControl object at 0x7f65e61b3e50>]. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 0 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 1 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 2 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 3 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:199 Getting page 4 INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:1116 20 results INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:1119 Remove added users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 20 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-maxsimplepaged-per-conn to b'-1'. Previous value - b'1000'. Modified suffix - cn=config.
Passed suites/paged_results/paged_results_test.py::test_maxsimplepaged_per_conn_failure[0] 0.91
-------------------------------Captured log call--------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 20 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-maxsimplepaged-per-conn to 0. Previous value - b'-1'. Modified suffix - cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:1154 Set user bind INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:1157 Create simple paged results control instance INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:1172 Remove added users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 20 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-maxsimplepaged-per-conn to b'-1'. Previous value - b'0'. Modified suffix - cn=config.
Passed suites/paged_results/paged_results_test.py::test_maxsimplepaged_per_conn_failure[1] 0.91
-------------------------------Captured log call--------------------------------
INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:133 Adding 20 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-maxsimplepaged-per-conn to 1. Previous value - b'-1'. Modified suffix - cn=config. INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:1154 Set user bind INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:1157 Create simple paged results control instance INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:1172 Remove added users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:155 Deleting 20 users INFO  tests.suites.paged_results.paged_results_test:paged_results_test.py:169 Set nsslapd-maxsimplepaged-per-conn to b'-1'. Previous value - b'1'. Modified suffix - cn=config.
Passed suites/password/password_policy_test.py::test_password_change_section 0.98
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/password/password_policy_test.py::test_password_syntax_section 2.63
No log output captured.
Passed suites/password/password_policy_test.py::test_password_history_section 8.78
No log output captured.
Passed suites/password/password_policy_test.py::test_password_minimum_age_section 11.27
No log output captured.
Passed suites/password/password_policy_test.py::test_account_lockout_and_lockout_duration_section 6.29
No log output captured.
Passed suites/password/password_policy_test.py::test_grace_limit_section 17.11
No log output captured.
Passed suites/password/password_policy_test.py::test_additional_corner_cases 0.93
No log output captured.
Passed suites/password/password_test.py::test_password_delete_specific_password 0.08
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.password_test:password_test.py:44 Running test_password_delete_specific_password... INFO  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.45
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/password/pwdAdmin_test.py::test_pwdAdmin_bypass 0.13
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. INFO  tests.suites.password.pwdAdmin_test:pwdAdmin_test.py:46 test_pwdAdmin_init: Creating Password Administrator entries... INFO  tests.suites.password.pwdAdmin_test:pwdAdmin_test.py:85 test_pwdAdmin_init: Configuring password policy... INFO  tests.suites.password.pwdAdmin_test:pwdAdmin_test.py:100 Add aci to allow password admin to add/update entries... INFO  tests.suites.password.pwdAdmin_test:pwdAdmin_test.py:115 test_pwdAdmin_init: Bind as the Password Administrator (before activating)... INFO  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--------------------------------
INFO  tests.suites.password.pwdAdmin_test:pwdAdmin_test.py:167 test_pwdAdmin: Activate the Password Administator...
Passed suites/password/pwdAdmin_test.py::test_pwdAdmin_no_admin 0.08
No log output captured.
Passed suites/password/pwdAdmin_test.py::test_pwdAdmin_modify 0.13
No log output captured.
Passed suites/password/pwdAdmin_test.py::test_pwdAdmin_group 0.16
No log output captured.
Passed suites/password/pwdAdmin_test.py::test_pwdAdmin_config_validation 0.02
No log output captured.
Passed suites/password/pwdModify_test.py::test_pwd_modify_with_different_operation 15.29
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwdModify_test:pwdModify_test.py:101 Attempt for Password change for an entry that does not exists INFO  tests.suites.password.pwdModify_test:pwdModify_test.py:103 Attempt for Password change for an entry that exists INFO  tests.suites.password.pwdModify_test:pwdModify_test.py:105 Attempt for Password change to old for an entry that exists INFO  tests.suites.password.pwdModify_test:pwdModify_test.py:107 Attempt for Password Change with Binddn as testuser but with wrong old password INFO  tests.suites.password.pwdModify_test:pwdModify_test.py:111 Attempt for Password Change with Binddn as testuser INFO  tests.suites.password.pwdModify_test:pwdModify_test.py:113 Attempt for Password Change without giving newpassword INFO  tests.suites.password.pwdModify_test:pwdModify_test.py:116 Change password to NEW_PASSWD i.e newpassword INFO  tests.suites.password.pwdModify_test:pwdModify_test.py:119 Check binding with old/new password INFO  tests.suites.password.pwdModify_test:pwdModify_test.py:124 Change password back to OLD_PASSWD i.e password INFO  tests.suites.password.pwdModify_test:pwdModify_test.py:127 Checking password change Operation using a Non-Secure connection INFO  tests.suites.password.pwdModify_test:pwdModify_test.py:131 Testuser attempts to change password for testuser2(userPassword attribute is Set) INFO  tests.suites.password.pwdModify_test:pwdModify_test.py:147 Directory Manager attempts to change password for testuser2(userPassword attribute is Set) INFO  tests.suites.password.pwdModify_test:pwdModify_test.py:150 Changing userPassword attribute to Undefined for testuser2 INFO  tests.suites.password.pwdModify_test:pwdModify_test.py:152 Testuser attempts to change password for testuser2(userPassword attribute is Undefined) INFO  tests.suites.password.pwdModify_test:pwdModify_test.py:156 Directory Manager attempts to change password for testuser2(userPassword attribute is Undefined) INFO  tests.suites.password.pwdModify_test:pwdModify_test.py:159 Create a password syntax policy. Attempt to change to password that violates that policy INFO  tests.suites.password.pwdModify_test:pwdModify_test.py:163 Reset password syntax policy INFO  tests.suites.password.pwdModify_test:pwdModify_test.py:165 userPassword mod with control results in ber decode error INFO  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.38
-------------------------------Captured log setup-------------------------------
INFO  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--------------------------------
INFO  tests.suites.password.pwdModify_test:pwdModify_test.py:192 Change the password and check that a new entry has been added to the history INFO  tests.suites.password.pwdModify_test:pwdModify_test.py:196 Try changing password to one stored in history. Should fail INFO  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.09
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwdModify_test:pwdModify_test.py:228 Add a new SubSuffix INFO  tests.suites.password.pwdModify_test:pwdModify_test.py:235 Add the container & create password policies INFO  tests.suites.password.pwdModify_test:pwdModify_test.py:243 Add two New users under the SubEntry INFO  tests.suites.password.pwdModify_test:pwdModify_test.py:265 Changing password of uid=test_user0,ou=TestPeople_bug834047,dc=example,dc=com to newpassword INFO  tests.suites.password.pwdModify_test:pwdModify_test.py:270 Try to delete password- case when password is specified INFO  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 2.00
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. INFO  tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:39 Adding test user {}
Passed suites/password/pwdPolicy_attribute_test.py::test_change_pwd[on-off-UNWILLING_TO_PERFORM] 2.17
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:66 Create password policy for subtree ou=people,dc=example,dc=com INFO  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--------------------------------
INFO  tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:154 Set passwordChange to "on" - ou=people,dc=example,dc=com INFO  tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:161 Set passwordChange to "off" - uid=simplepaged_test,ou=people,dc=example,dc=com INFO  tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:170 Bind as user and modify userPassword INFO  tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:182 Bind as DM
Passed suites/password/pwdPolicy_attribute_test.py::test_change_pwd[off-off-UNWILLING_TO_PERFORM] 2.16
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:154 Set passwordChange to "off" - ou=people,dc=example,dc=com INFO  tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:161 Set passwordChange to "off" - uid=simplepaged_test,ou=people,dc=example,dc=com INFO  tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:170 Bind as user and modify userPassword INFO  tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:182 Bind as DM
Passed suites/password/pwdPolicy_attribute_test.py::test_change_pwd[off-on-False] 2.19
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:154 Set passwordChange to "off" - ou=people,dc=example,dc=com INFO  tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:161 Set passwordChange to "on" - uid=simplepaged_test,ou=people,dc=example,dc=com INFO  tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:170 Bind as user and modify userPassword INFO  tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:182 Bind as DM
Passed suites/password/pwdPolicy_attribute_test.py::test_change_pwd[on-on-False] 2.19
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:154 Set passwordChange to "on" - ou=people,dc=example,dc=com INFO  tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:161 Set passwordChange to "on" - uid=simplepaged_test,ou=people,dc=example,dc=com INFO  tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:170 Bind as user and modify userPassword INFO  tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:182 Bind as DM
Passed suites/password/pwdPolicy_attribute_test.py::test_pwd_min_age 14.37
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:219 Set passwordminage to "10" - ou=people,dc=example,dc=com INFO  tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:224 Set passwordminage to "10" - uid=simplepaged_test,ou=people,dc=example,dc=com INFO  tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:228 Set passwordminage to "10" - cn=config INFO  tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:233 Bind as user and modify userPassword INFO  tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:239 Bind as user and modify userPassword straight away after previous change INFO  tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:244 Wait 12 second INFO  tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:248 Bind as user and modify userPassword INFO  tests.suites.password.pwdPolicy_attribute_test:pwdPolicy_attribute_test.py:256 Bind as DM
Passed suites/password/pwdPolicy_controls_test.py::test_pwd_must_change 2.19
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwdPolicy_controls_test:pwdPolicy_controls_test.py:109 Configure password policy with paswordMustChange set to "on" INFO  tests.suites.password.pwdPolicy_controls_test:pwdPolicy_controls_test.py:120 Reset userpassword as Directory Manager INFO  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.80
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwdPolicy_controls_test:pwdPolicy_controls_test.py:159 Configure password policy with grace limit set tot 2 INFO  tests.suites.password.pwdPolicy_controls_test:pwdPolicy_controls_test.py:164 Change password and wait for it to expire INFO  tests.suites.password.pwdPolicy_controls_test:pwdPolicy_controls_test.py:168 Bind and use up one grace login (only one left) INFO  tests.suites.password.pwdPolicy_controls_test:pwdPolicy_controls_test.py:178 Use up last grace login, should get control INFO  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.48
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwdPolicy_controls_test:pwdPolicy_controls_test.py:206 Configure password policy INFO  tests.suites.password.pwdPolicy_controls_test:pwdPolicy_controls_test.py:211 Change password and get controls INFO  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.56
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwdPolicy_controls_test:pwdPolicy_controls_test.py:250 Configure password policy INFO  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 INFO  tests.suites.password.pwdPolicy_controls_test:pwdPolicy_controls_test.py:262 Turn on sending expiring control regardless of warning INFO  tests.suites.password.pwdPolicy_controls_test:pwdPolicy_controls_test.py:274 Check expiring time again INFO  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.16
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. INFO  tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:39 Adding user uid=buser,ou=People,dc=example,dc=com INFO  tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:46 Adding an aci for the bind user INFO  tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:71 Enable fine-grained policy INFO  tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:92 Default value of nsslapd-pwpolicy-inherit-global is off INFO  tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:92 Default value of passwordCheckSyntax is off
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:119 Set nsslapd-pwpolicy-inherit-global to off INFO  tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:120 Set passwordCheckSyntax to off INFO  tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:92 Default value of nsslapd-pwpolicy-inherit-global is off INFO  tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:92 Default value of passwordCheckSyntax is off INFO  tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:129 Bind as test user INFO  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--------------------------------
INFO  tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:119 Set nsslapd-pwpolicy-inherit-global to on INFO  tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:120 Set passwordCheckSyntax to off INFO  tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:92 Default value of nsslapd-pwpolicy-inherit-global is on INFO  tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:92 Default value of passwordCheckSyntax is off INFO  tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:129 Bind as test user INFO  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--------------------------------
INFO  tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:119 Set nsslapd-pwpolicy-inherit-global to off INFO  tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:120 Set passwordCheckSyntax to on INFO  tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:92 Default value of nsslapd-pwpolicy-inherit-global is off INFO  tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:92 Default value of passwordCheckSyntax is on INFO  tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:129 Bind as test user INFO  tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:132 Make sure an entry added to ou=people has no password syntax restrictions.
Passed suites/password/pwdPolicy_inherit_global_test.py::test_entry_has_restrictions 1.05
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:173 Set nsslapd-pwpolicy-inherit-global to on INFO  tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:174 Set passwordCheckSyntax to on INFO  tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:92 Default value of nsslapd-pwpolicy-inherit-global is on INFO  tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:92 Default value of passwordCheckSyntax is on INFO  tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:187 Bind as test user INFO  tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:192 Try to add user with a short password (<9) INFO  tests.suites.password.pwdPolicy_inherit_global_test:pwdPolicy_inherit_global_test.py:197 Try to add user with a long password (>9) INFO  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 8.50
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:33 Enable global password policy. Check for syntax.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordMinLength: length too short INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordMinDigits: does not contain minimum number of digits INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordMinAlphas: does not contain minimum number of alphas INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordMaxRepeats: too many repeating characters INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordMinSpecials: does not contain minimum number of special characters INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordMinLowers: does not contain minimum number of lowercase characters INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordMinUppers: does not contain minimum number of lowercase characters INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordDictCheck: Password found in dictionary INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordPalindrome: Password is palindrome INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordMaxSequence: Max monotonic sequence is not allowed INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordMaxSequence: Max monotonic sequence is not allowed INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordMaxSequence: Max monotonic sequence is not allowed INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordMaxSequence: Max monotonic sequence is not allowed INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordMaxSeqSets: Max monotonic sequence is not allowed INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordMaxClassChars: Too may consecutive characters from the same class INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordMaxClassChars: Too may consecutive characters from the same class INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordMaxClassChars: Too may consecutive characters from the same class INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordMaxClassChars: Too may consecutive characters from the same class INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordBadWords: Too may consecutive characters from the same class INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordUserAttributes: Password found in user entry
Passed suites/password/pwdPolicy_syntax_test.py::test_config_set_few_user_attributes 7.25
-------------------------------Captured log call--------------------------------
INFO  lib389:pwdPolicy_syntax_test.py:307 Set passwordUserAttributes to "description loginShell" INFO  lib389:pwdPolicy_syntax_test.py:312 Verify passwordUserAttributes has the values INFO  lib389:pwdPolicy_syntax_test.py:316 Reset passwordUserAttributes INFO  lib389:pwdPolicy_syntax_test.py:319 Verify passwordUserAttributes enforced the policy INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordUserAttributes: Password found in user entry INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordUserAttributes: Password found in user entry INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordUserAttributes: Password found in user entry INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordUserAttributes: Password found in user entry INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordUserAttributes: Password found in user entry INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordUserAttributes: Password found in user entry INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordUserAttributes: Password found in user entry INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordUserAttributes: Password found in user entry INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordUserAttributes: Password found in user entry
Passed suites/password/pwdPolicy_syntax_test.py::test_config_set_few_bad_words 7.42
-------------------------------Captured log call--------------------------------
INFO  lib389:pwdPolicy_syntax_test.py:348 Set passwordBadWords to "fedora redhat" INFO  lib389:pwdPolicy_syntax_test.py:353 Verify passwordBadWords has the values INFO  lib389:pwdPolicy_syntax_test.py:357 Reset passwordBadWords INFO  lib389:pwdPolicy_syntax_test.py:360 Verify passwordBadWords enforced the policy INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordBadWords: Too may consecutive characters from the same class INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordBadWords: Too may consecutive characters from the same class INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordBadWords: Too may consecutive characters from the same class INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordBadWords: Too may consecutive characters from the same class INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordBadWords: Too may consecutive characters from the same class INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordBadWords: Too may consecutive characters from the same class INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordBadWords: Too may consecutive characters from the same class INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordBadWords: Too may consecutive characters from the same class INFO  tests.suites.password.pwdPolicy_syntax_test:pwdPolicy_syntax_test.py:98 Invalid password correctly rejected by passwordBadWords: Too may consecutive characters from the same class
Passed suites/password/pwdPolicy_token_test.py::test_token_lengths 4.15
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwdPolicy_token_test:pwdPolicy_token_test.py:67 Testing password len 4 token (test) INFO  tests.suites.password.pwdPolicy_token_test:pwdPolicy_token_test.py:72 Password correctly rejected: {'msgtype': 103, 'msgid': 12, 'result': 19, 'desc': 'Constraint violation', 'ctrls': [], 'info': 'invalid password syntax - password based off of user entry'} INFO  tests.suites.password.pwdPolicy_token_test:pwdPolicy_token_test.py:67 Testing password len 6 token (test_u) INFO  tests.suites.password.pwdPolicy_token_test:pwdPolicy_token_test.py:72 Password correctly rejected: {'msgtype': 103, 'msgid': 16, 'result': 19, 'desc': 'Constraint violation', 'ctrls': [], 'info': 'invalid password syntax - password based off of user entry'} INFO  tests.suites.password.pwdPolicy_token_test:pwdPolicy_token_test.py:67 Testing password len 10 token (test_user1) INFO  tests.suites.password.pwdPolicy_token_test:pwdPolicy_token_test.py:72 Password correctly rejected: {'msgtype': 103, 'msgid': 20, 'result': 19, 'desc': 'Constraint violation', 'ctrls': [], 'info': 'invalid password syntax - password based off of user entry'}
Passed suites/password/pwdPolicy_warning_test.py::test_different_values[ ] 0.26
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:207 Get the default value INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:211 An invalid value is being tested INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:173 Setting passwordSendExpiringTime to INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:215 Now check the value is unchanged INFO  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.26
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:207 Get the default value INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:211 An invalid value is being tested INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:173 Setting passwordSendExpiringTime to junk123 INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:215 Now check the value is unchanged INFO  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.27
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:207 Get the default value INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:220 A valid value is being tested INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:173 Setting passwordSendExpiringTime to on INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:223 Now check that the value has been changed INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:226 passwordSendExpiringTime is now set to on INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:228 Set passwordSendExpiringTime back to the default value INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:173 Setting passwordSendExpiringTime to off
Passed suites/password/pwdPolicy_warning_test.py::test_different_values[off] 1.02
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:207 Get the default value INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:220 A valid value is being tested INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:173 Setting passwordSendExpiringTime to off INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:223 Now check that the value has been changed INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:226 passwordSendExpiringTime is now set to off INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:228 Set passwordSendExpiringTime back to the default value INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:173 Setting passwordSendExpiringTime to off
Passed suites/password/pwdPolicy_warning_test.py::test_expiry_time 0.11
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:47 Get the default values INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:54 Set the new values INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:115 Add the user
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:259 Get the password expiry warning time INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:260 Binding with (uid=tuser,ou=people,dc=example,dc=com) and requesting the password expiry warning time INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:160 Bind with the user and request the password expiry warning time INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:264 Check whether the time is returned INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:267 user's password will expire in 172800 seconds INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:270 Rebinding as DM
Passed suites/password/pwdPolicy_warning_test.py::test_password_warning[passwordSendExpiringTime-off] 0.61
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:47 Get the default values INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:54 Set the new values INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:115 Add the user
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:302 Set configuration parameter INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:173 Setting passwordSendExpiringTime to off INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:305 Binding with (uid=tuser,ou=people,dc=example,dc=com) and requesting password expiry warning time INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:160 Bind with the user and request the password expiry warning time INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:309 Check the state of the control INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:311 Password Expiry warning time is not returned as passwordSendExpiringTime is set to off INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:317 Rebinding as DM
Passed suites/password/pwdPolicy_warning_test.py::test_password_warning[passwordWarning-3600] 0.63
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:47 Get the default values INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:54 Set the new values INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:115 Add the user
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:302 Set configuration parameter INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:173 Setting passwordWarning to 3600 INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:305 Binding with (uid=tuser,ou=people,dc=example,dc=com) and requesting password expiry warning time INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:160 Bind with the user and request the password expiry warning time INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:309 Check the state of the control INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:314 (uid=tuser,ou=people,dc=example,dc=com) password will expire in 172799 seconds INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:317 Rebinding as DM
Passed suites/password/pwdPolicy_warning_test.py::test_with_different_password_states 0.24
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:47 Get the default values INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:54 Set the new values INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:115 Add the user
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:350 Expire user's password by changing passwordExpirationTime timestamp INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:354 Old passwordExpirationTime: 20201027003943Z INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:357 New passwordExpirationTime: 20200926003943Z INFO  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 INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:160 Bind with the user and request the password expiry warning time INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:364 Bind Failed, error: <ExceptionInfo INVALID_CREDENTIALS({'msgtype': 97, 'msgid': 73, 'result': 49, 'desc': 'Invalid credentials', 'ctrls': [('1.3.6.1.4.1.....8.5.1', 0, b'0\x84\x00\x00\x00\x03\x81\x01\x00'), ('2.16.840.1.113730.3.4.4', 0, b'0')], 'info': 'password expired!'}) tblen=10> INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:366 Rebinding as DM INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:369 Reverting back user's passwordExpirationTime INFO  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 INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:160 Bind with the user and request the password expiry warning time INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:376 Check that the control is returned INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:379 user's password will expire in 172800 seconds INFO  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.11
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:85 Get the default values INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:91 Set the new values INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:115 Add the user
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:408 Binding with uid=tuser,ou=people,dc=example,dc=com and requesting the password expiry warning time INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:160 Bind with the user and request the password expiry warning time INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:412 Check that no control is returned INFO  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.15
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:85 Get the default values INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:91 Set the new values INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:115 Add the user
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:444 Set the new values INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:448 First change user's password to reset its password expiration time INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:455 Binding with uid=tuser,ou=people,dc=example,dc=com and requesting the password expiry warning time INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:160 Bind with the user and request the password expiry warning time INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:459 Check that control is returned evenif passwordSendExpiringTime is set to off INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:463 user's password will expire in 86400 seconds INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:465 Rebinding as DM
Passed suites/password/pwdPolicy_warning_test.py::test_with_local_policy 0.13
-----------------------------Captured stderr setup------------------------------
Container entries added.
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:47 Get the default values INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:54 Set the new values INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:115 Add the user INFO  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--------------------------------
INFO  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 INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:160 Bind with the user and request the password expiry warning time INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:495 Check that the control is not returned INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:498 Password expiry warning time is not returned INFO  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.18
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:47 Get the default values INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:54 Set the new values
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:532 Bind as cn=Directory Manager INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:535 Creating test user INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:540 Setting passwordWarning to smaller value than 86400 INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:543 Bind as test user INFO  tests.suites.password.pwdPolicy_warning_test:pwdPolicy_warning_test.py:546 Check if attribute shadowWarning is present
Passed suites/password/pwdPolicy_warning_test.py::test_password_expire_works 1.69
No log output captured.
Passed suites/password/pwd_algo_test.py::test_pwd_algo_test[CLEAR] 0.33
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  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--------------------------------
INFO  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.04
-------------------------------Captured log call--------------------------------
INFO  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--------------------------------
INFO  tests.suites.password.pwd_algo_test:pwd_algo_test.py:138 Test CRYPT-SHA256 PASSED
Passed suites/password/pwd_algo_test.py::test_pwd_algo_test[CRYPT-SHA512] 0.07
-------------------------------Captured log call--------------------------------
INFO  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.06
-------------------------------Captured log call--------------------------------
INFO  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.06
-------------------------------Captured log call--------------------------------
INFO  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.06
-------------------------------Captured log call--------------------------------
INFO  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.04
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwd_algo_test:pwd_algo_test.py:138 Test SHA384 PASSED
Passed suites/password/pwd_algo_test.py::test_pwd_algo_test[SHA512] 0.05
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwd_algo_test:pwd_algo_test.py:138 Test SHA512 PASSED
Passed suites/password/pwd_algo_test.py::test_pwd_algo_test[SMD5] 0.05
-------------------------------Captured log call--------------------------------
INFO  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.30
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwd_algo_test:pwd_algo_test.py:138 Test SSHA PASSED
Passed suites/password/pwd_algo_test.py::test_pwd_algo_test[SSHA256] 0.05
-------------------------------Captured log call--------------------------------
INFO  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.15
-------------------------------Captured log call--------------------------------
INFO  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--------------------------------
INFO  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.27
-------------------------------Captured log call--------------------------------
INFO  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.23
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwd_algo_test:pwd_algo_test.py:138 Test DEFAULT PASSED
Passed suites/password/pwd_algo_test.py::test_pbkdf2_algo 2.51
-------------------------------Captured log call--------------------------------
INFO  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.40
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/password/pwd_log_test.py::test_hide_unhashed_pwd 4.36
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwd_log_test:pwd_log_test.py:79 Test complete
Passed suites/password/pwp_gracel_test.py::test_password_gracelimit_section 13.61
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/password/pwp_history_test.py::test_history_is_not_overwritten 4.42
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwp_history_test:pwp_history_test.py:77 Configured password policy.
Passed suites/password/pwp_history_test.py::test_basic 7.55
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.pwp_history_test:pwp_history_test.py:152 Configured password policy. INFO  tests.suites.password.pwp_history_test:pwp_history_test.py:170 Password change correctly rejected INFO  tests.suites.password.pwp_history_test:pwp_history_test.py:201 Correct number of passwords found in history. INFO  tests.suites.password.pwp_history_test:pwp_history_test.py:212 Password change correctly rejected INFO  tests.suites.password.pwp_history_test:pwp_history_test.py:222 Password change correctly rejected INFO  tests.suites.password.pwp_history_test:pwp_history_test.py:232 Password change correctly rejected INFO  tests.suites.password.pwp_history_test:pwp_history_test.py:254 Password change correctly rejected INFO  tests.suites.password.pwp_history_test:pwp_history_test.py:267 Configured passwordInHistory to 0. INFO  tests.suites.password.pwp_history_test:pwp_history_test.py:283 Password change correctly rejected INFO  tests.suites.password.pwp_history_test:pwp_history_test.py:299 Configured passwordInHistory to 2. INFO  tests.suites.password.pwp_history_test:pwp_history_test.py:312 Password change correctly rejected INFO  tests.suites.password.pwp_history_test:pwp_history_test.py:326 Test suite PASSED.
Passed suites/password/pwp_test.py::test_passwordchange_to_no 0.11
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/password/pwp_test.py::test_password_check_syntax 0.30
No log output captured.
Passed suites/password/pwp_test.py::test_too_big_password 0.38
No log output captured.
Passed suites/password/pwp_test.py::test_pwminage 3.16
No log output captured.
Passed suites/password/pwp_test.py::test_invalid_credentials 7.31
No log output captured.
Passed suites/password/pwp_test.py::test_expiration_date 1.18
No log output captured.
Passed suites/password/pwp_test.py::test_passwordlockout 2.45
No log output captured.
Passed suites/password/regression_of_bugs_test.py::test_local_password_policy 0.35
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/password/regression_of_bugs_test.py::test_passwordexpirationtime_attribute 3.06
No log output captured.
Passed suites/password/regression_of_bugs_test.py::test_admin_group_to_modify_password 1.09
No log output captured.
Passed suites/password/regression_of_bugs_test.py::test_password_max_failure_should_lockout_password 0.14
No log output captured.
Passed suites/password/regression_of_bugs_test.py::test_pwd_update_time_attribute 3.21
No log output captured.
Passed suites/password/regression_of_bugs_test.py::test_password_track_update_time 7.50
No log output captured.
Passed suites/password/regression_of_bugs_test.py::test_signal_11 0.04
No log output captured.
Passed suites/password/regression_test.py::test_pwp_local_unlock 4.36
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. INFO  tests.suites.password.regression_test:regression_test.py:68 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to on INFO  tests.suites.password.regression_test:regression_test.py:75 Configure subtree password policy for ou=people,dc=example,dc=com INFO  tests.suites.password.regression_test:regression_test.py:98 Adding user-uid=UIDpwtest1,ou=people,dc=example,dc=com
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:137 Verify user can bind... INFO  tests.suites.password.regression_test:regression_test.py:140 Test passwordUnlock default - user should be able to reset password after lockout INFO  tests.suites.password.regression_test:regression_test.py:151 Verify account is locked INFO  tests.suites.password.regression_test:regression_test.py:155 Wait for lockout duration... INFO  tests.suites.password.regression_test:regression_test.py:158 Check if user can now bind with correct password
Passed suites/password/regression_test.py::test_trivial_passw_check[CNpwtest1] 0.14
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with CNpwtest1
Passed suites/password/regression_test.py::test_trivial_passw_check[SNpwtest1] 0.16
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with SNpwtest1
Passed suites/password/regression_test.py::test_trivial_passw_check[UIDpwtest1] 0.13
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with UIDpwtest1
Passed suites/password/regression_test.py::test_trivial_passw_check[MAILpwtest1@redhat.com] 0.14
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with MAILpwtest1@redhat.com
Passed suites/password/regression_test.py::test_trivial_passw_check[GNpwtest1] 0.40
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with GNpwtest1
Passed suites/password/regression_test.py::test_trivial_passw_check[CNpwtest1ZZZZ] 0.14
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with CNpwtest1ZZZZ
Passed suites/password/regression_test.py::test_trivial_passw_check[ZZZZZCNpwtest1] 0.14
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with ZZZZZCNpwtest1
Passed suites/password/regression_test.py::test_trivial_passw_check[ZCNpwtest1] 0.13
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with ZCNpwtest1
Passed suites/password/regression_test.py::test_trivial_passw_check[CNpwtest1Z] 0.13
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with CNpwtest1Z
Passed suites/password/regression_test.py::test_trivial_passw_check[ZCNpwtest1Z] 0.15
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with ZCNpwtest1Z
Passed suites/password/regression_test.py::test_trivial_passw_check[ZZCNpwtest1] 0.13
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with ZZCNpwtest1
Passed suites/password/regression_test.py::test_trivial_passw_check[CNpwtest1ZZ] 0.38
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with CNpwtest1ZZ
Passed suites/password/regression_test.py::test_trivial_passw_check[ZZCNpwtest1ZZ] 0.15
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with ZZCNpwtest1ZZ
Passed suites/password/regression_test.py::test_trivial_passw_check[ZZZCNpwtest1] 0.15
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with ZZZCNpwtest1
Passed suites/password/regression_test.py::test_trivial_passw_check[CNpwtest1ZZZ] 0.13
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with CNpwtest1ZZZ
Passed suites/password/regression_test.py::test_trivial_passw_check[ZZZCNpwtest1ZZZ] 0.13
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with ZZZCNpwtest1ZZZ
Passed suites/password/regression_test.py::test_trivial_passw_check[ZZZZZZCNpwtest1ZZZZZZZZ] 0.28
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:183 Replace userPassword attribute with ZZZZZZCNpwtest1ZZZZZZZZ
Passed suites/password/regression_test.py::test_global_vs_local[CNpwtest1] 0.21
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off INFO  tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with CNpwtest1
Passed suites/password/regression_test.py::test_global_vs_local[SNpwtest1] 0.20
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off INFO  tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with SNpwtest1
Passed suites/password/regression_test.py::test_global_vs_local[UIDpwtest1] 0.19
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off INFO  tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with UIDpwtest1
Passed suites/password/regression_test.py::test_global_vs_local[MAILpwtest1@redhat.com] 0.22
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off INFO  tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with MAILpwtest1@redhat.com
Passed suites/password/regression_test.py::test_global_vs_local[GNpwtest1] 0.20
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off INFO  tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with GNpwtest1
Passed suites/password/regression_test.py::test_global_vs_local[CNpwtest1ZZZZ] 0.21
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off INFO  tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with CNpwtest1ZZZZ
Passed suites/password/regression_test.py::test_global_vs_local[ZZZZZCNpwtest1] 0.22
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off INFO  tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with ZZZZZCNpwtest1
Passed suites/password/regression_test.py::test_global_vs_local[ZCNpwtest1] 0.21
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off INFO  tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with ZCNpwtest1
Passed suites/password/regression_test.py::test_global_vs_local[CNpwtest1Z] 0.22
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off INFO  tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with CNpwtest1Z
Passed suites/password/regression_test.py::test_global_vs_local[ZCNpwtest1Z] 0.24
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off INFO  tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with ZCNpwtest1Z
Passed suites/password/regression_test.py::test_global_vs_local[ZZCNpwtest1] 0.49
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off INFO  tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with ZZCNpwtest1
Passed suites/password/regression_test.py::test_global_vs_local[CNpwtest1ZZ] 0.20
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off INFO  tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with CNpwtest1ZZ
Passed suites/password/regression_test.py::test_global_vs_local[ZZCNpwtest1ZZ] 0.22
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off INFO  tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with ZZCNpwtest1ZZ
Passed suites/password/regression_test.py::test_global_vs_local[ZZZCNpwtest1] 0.24
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off INFO  tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with ZZZCNpwtest1
Passed suites/password/regression_test.py::test_global_vs_local[CNpwtest1ZZZ] 0.19
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off INFO  tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with CNpwtest1ZZZ
Passed suites/password/regression_test.py::test_global_vs_local[ZZZCNpwtest1ZZZ] 0.42
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off INFO  tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with ZZZCNpwtest1ZZZ
Passed suites/password/regression_test.py::test_global_vs_local[ZZZZZZCNpwtest1ZZZZZZZZ] 0.21
-------------------------------Captured log call--------------------------------
INFO  tests.suites.password.regression_test:regression_test.py:211 Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off INFO  tests.suites.password.regression_test:regression_test.py:216 Replace userPassword attribute with ZZZZZZCNpwtest1ZZZZZZZZ
Passed suites/plugins/acceptance_test.py::test_acctpolicy 16.06
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38902, 'ldap-secureport': 63602, 'server-id': 'standalone2', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/plugins/acceptance_test.py::test_attruniq 17.98
No log output captured.
Passed suites/plugins/acceptance_test.py::test_automember 24.93
No log output captured.
Passed suites/plugins/acceptance_test.py::test_dna 17.67
No log output captured.
Passed suites/plugins/acceptance_test.py::test_linkedattrs 25.21
No log output captured.
Passed suites/plugins/acceptance_test.py::test_memberof 35.18
No log output captured.
Passed suites/plugins/acceptance_test.py::test_mep 17.40
No log output captured.
Passed suites/plugins/acceptance_test.py::test_passthru 21.86
No log output captured.
Passed suites/plugins/acceptance_test.py::test_referint 12.96
No log output captured.
Passed suites/plugins/accpol_test.py::test_glact_inact 27.27
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.utils:accpol_test.py:35 Configuring Global account policy plugin, pwpolicy attributes and restarting the server
-------------------------------Captured log call--------------------------------
INFO  lib389.utils:accpol_test.py:348 AccountInactivityLimit set to 12. Account will be inactivated if not accessed in 12 secs INFO  lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs INFO  lib389.utils:accpol_test.py:351 Sleep for 10 secs to check if account is not inactivated, expected value 0 INFO  lib389.utils:accpol_test.py:353 Account should not be inactivated since AccountInactivityLimit not exceeded INFO  lib389.utils:accpol_test.py:356 Sleep for 3 more secs to check if account is inactivated INFO  lib389.utils:accpol_test.py:360 Sleep +10 secs to check if account glinactusr3 is inactivated INFO  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.11
-------------------------------Captured log call--------------------------------
INFO  lib389.utils:accpol_test.py:394 AccountInactivityLimit set to 12. Account will be inactivated if not accessed in 12 secs INFO  lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs INFO  lib389.utils:accpol_test.py:396 Sleep for 6 secs to check if account is not inactivated, expected value 0 INFO  lib389.utils:accpol_test.py:398 Account should not be inactivated since AccountInactivityLimit not exceeded INFO  lib389.utils:accpol_test.py:254 Delete lastLoginTime/createTimeStamp/ModifyTimeStamp attribute from user account INFO  lib389.utils:accpol_test.py:401 Sleep for 7 more secs to check if account is inactivated INFO  lib389.utils:accpol_test.py:219 Enable account by replacing lastLoginTime/createTimeStamp/ModifyTimeStamp attribute INFO  lib389.utils:accpol_test.py:405 Check if account is activated, expected 0 INFO  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.34
-------------------------------Captured log call--------------------------------
INFO  lib389.utils:accpol_test.py:434 AccountInactivityLimit set to 12. Account will be inactivated if not accessed in 12 secs INFO  lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs INFO  lib389.utils:accpol_test.py:436 Sleep for 13 secs to check if account is inactivated, expected error 19 INFO  lib389.utils:accpol_test.py:219 Enable account by replacing lastLoginTime/createTimeStamp/ModifyTimeStamp attribute INFO  lib389.utils:accpol_test.py:440 Check if account is activated, expected 0 INFO  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.54
-------------------------------Captured log call--------------------------------
INFO  lib389.utils:accpol_test.py:492 AccountInactivityLimit set to 12. Account will be inactivated if not accessed in 12 secs INFO  lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs INFO  lib389.utils:accpol_test.py:494 Sleep for 9 secs to check if account is not inactivated, expected 0 INFO  lib389.utils:accpol_test.py:189 Modify attribute value for a given DN INFO  lib389.utils:accpol_test.py:189 Modify attribute value for a given DN INFO  lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs INFO  lib389.utils:accpol_test.py:189 Modify attribute value for a given DN INFO  lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs INFO  lib389.utils:accpol_test.py:516 Check if account is activated, expected 0 INFO  lib389.utils:accpol_test.py:219 Enable account by replacing lastLoginTime/createTimeStamp/ModifyTimeStamp attribute INFO  lib389.utils:accpol_test.py:189 Modify attribute value for a given DN INFO  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--------------------------------
INFO  lib389.utils:accpol_test.py:1071 Account should be inactivated since the subtree is configured INFO  lib389.utils:accpol_test.py:271 add_users: Pass all of these as parameters suffix, subtree, userid and nousrs INFO  lib389.utils:accpol_test.py:1073 Sleep for 11 secs to check if account is inactivated, expected value 19 INFO  lib389.utils:accpol_test.py:1076 Moving users from ou=people to ou=groups subtree INFO  lib389.utils:accpol_test.py:1083 Sleep for +2 secs and check users from both ou=people and ou=groups subtree INFO  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.47
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. INFO  tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:31 Ticket 47431 - 0: Enable 7bit plugin...
-------------------------------Captured log call--------------------------------
INFO  tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:56 Ticket 47431 - 1: Check 26 duplicate values are treated as one... DEBUG  tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:59 modify_s cn=7-bit check,cn=plugins,cn=config DEBUG  tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:83 line: [24/Oct/2020:20:52:44.928795629 -0400] - WARN - str2entry_dupcheck - 26 duplicate values for attribute type nsslapd-pluginarg2 detected in entry cn=7-bit check,cn=plugins,cn=config. Extra values ignored. INFO  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 INFO  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.65
-------------------------------Captured log call--------------------------------
INFO  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... DEBUG  tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:131 line - [24/Oct/2020:20:52:49.526456189 -0400] - DEBUG - NS7bitAttr - NS7bitAttr_Init - 0: uid DEBUG  tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:132 ATTRS[0] uid DEBUG  tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:136 uid was logged DEBUG  tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:131 line - [24/Oct/2020:20:52:49.530336199 -0400] - DEBUG - NS7bitAttr - NS7bitAttr_Init - 1: mail DEBUG  tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:132 ATTRS[1] mail DEBUG  tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:136 mail was logged DEBUG  tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:131 line - [24/Oct/2020:20:52:49.534111461 -0400] - DEBUG - NS7bitAttr - NS7bitAttr_Init - 2: userpassword DEBUG  tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:132 ATTRS[2] userpassword DEBUG  tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:136 userpassword was logged DEBUG  tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:131 line - [24/Oct/2020:20:52:49.536719439 -0400] - DEBUG - NS7bitAttr - NS7bitAttr_Init - 3: , DEBUG  tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:132 ATTRS[3] , DEBUG  tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:136 , was logged DEBUG  tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:131 line - [24/Oct/2020:20:52:49.539115710 -0400] - DEBUG - NS7bitAttr - NS7bitAttr_Init - 4: dc=example,dc=com DEBUG  tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:132 ATTRS[4] dc=example,dc=com DEBUG  tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:136 dc=example,dc=com was logged INFO  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.41
-------------------------------Captured log call--------------------------------
INFO  tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:170 Ticket 47431 - 3: Check missing args are fixed... DEBUG  tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:197 uid was logged DEBUG  tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:197 mail was logged DEBUG  tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:197 userpassword was logged DEBUG  tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:197 , was logged DEBUG  tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:197 dc=example,dc=com was logged INFO  tests.suites.plugins.attr_nsslapd-pluginarg_test:attr_nsslapd-pluginarg_test.py:203 Ticket 47431 - 3: done INFO  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.54
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
CRITICAL lib389.utils:cos_test.py:27 Adding user (uid=user_0,ou=people,dc=example,dc=com): INFO  lib389.utils:cos_test.py:153 Returned telephonenumber (exp. real): b'1234 is real' INFO  lib389.utils:cos_test.py:154 Returned telephonenumber: 8 INFO  lib389.utils:cos_test.py:160 Returned l (exp. real): b'here is real' INFO  lib389.utils:cos_test.py:161 Returned l: 8 INFO  lib389.utils:cos_test.py:170 Returned seealso (exp. virtual): b'dc=virtual,dc=example,dc=com' INFO  lib389.utils:cos_test.py:171 Returned seealso: 3 INFO  lib389.utils:cos_test.py:180 Returned description (exp. virtual): b'desc is virtual' INFO  lib389.utils:cos_test.py:181 Returned description: 8 INFO  lib389.utils:cos_test.py:191 Returned title (exp. real): b'title is real' INFO  lib389.utils:cos_test.py:212 Returned title(exp. virt): b'title is virtual 1' INFO  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.39
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.plugins.deref_aci_test:deref_aci_test.py:133 Check, that the dereference search result does not have userpassword
Passed suites/plugins/dna_test.py::test_dnatype_only_valid 4.63
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/plugins/entryusn_test.py::test_entryusn_no_duplicates 5.80
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/plugins/entryusn_test.py::test_entryusn_is_same_after_failure 5.93
No log output captured.
Passed suites/plugins/entryusn_test.py::test_entryusn_after_repl_delete 5.61
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 57954d5e-c341-484a-8095-200051a30b66 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 097111d8-fdac-4b09-b5f6-d8f6f99f4c4d / got description=57954d5e-c341-484a-8095-200051a30b66) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
Passed suites/plugins/managed_entry_test.py::test_binddn_tracking 2.11
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/plugins/managed_entry_test.py::test_mentry01 9.86
No log output captured.
Passed suites/plugins/managed_entry_test.py::test_managed_entry_removal 4.17
No log output captured.
Passed suites/plugins/memberof_test.py::test_betxnpostoperation_replace 4.49
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/plugins/memberof_test.py::test_memberofgroupattr_add 0.01
No log output captured.
Passed suites/plugins/memberof_test.py::test_enable 4.45
-------------------------------Captured log call--------------------------------
INFO  tests.suites.plugins.memberof_test:memberof_test.py:181 Enable MemberOf plugin
Passed suites/plugins/memberof_test.py::test_member_add 0.59
-------------------------------Captured log call--------------------------------
INFO  tests.suites.plugins.memberof_test:memberof_test.py:67 Create user uid=user_memofenh1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:67 Create user uid=user_memofenh2,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp2,ou=groups,dc=example,dc=com INFO  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) INFO  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) INFO  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) INFO  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) INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified
Passed suites/plugins/memberof_test.py::test_member_delete_gr1 0.26
-------------------------------Captured log call--------------------------------
INFO  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) INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified
Passed suites/plugins/memberof_test.py::test_member_delete_gr2 0.01
-------------------------------Captured log call--------------------------------
INFO  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) INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  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--------------------------------
INFO  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) INFO  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) INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  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 7.96
-------------------------------Captured log call--------------------------------
INFO  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) INFO  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) INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:364 Remove uniqueMember as a memberofgrpattr INFO  tests.suites.plugins.memberof_test:memberof_test.py:371 Assert that this change of configuration did change the already set values INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified
Passed suites/plugins/memberof_test.py::test_memberofgroupattr_uid 0.00
-------------------------------Captured log call--------------------------------
ERROR  tests.suites.plugins.memberof_test:memberof_test.py:400 Setting 'memberUid' as memberofgroupattr is rejected (expected)
Passed suites/plugins/memberof_test.py::test_member_add_duplicate_usr1 0.03
-------------------------------Captured log call--------------------------------
INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  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) ERROR  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.53
-------------------------------Captured log call--------------------------------
INFO  tests.suites.plugins.memberof_test:memberof_test.py:450 Check initial status INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  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) ERROR  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) INFO  tests.suites.plugins.memberof_test:memberof_test.py:470 Check final status INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified
Passed suites/plugins/memberof_test.py::test_member_uniquemember_same_user 0.05
-------------------------------Captured log call--------------------------------
INFO  tests.suites.plugins.memberof_test:memberof_test.py:557 Check initial status INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp3,ou=groups,dc=example,dc=com INFO  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) INFO  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) INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  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) INFO  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) INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:613 Checking final status INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified
Passed suites/plugins/memberof_test.py::test_member_not_exists 0.03
-------------------------------Captured log call--------------------------------
INFO  tests.suites.plugins.memberof_test:memberof_test.py:671 Checking Initial status INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp015,ou=groups,dc=example,dc=com INFO  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) INFO  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) INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com
Passed suites/plugins/memberof_test.py::test_member_not_exists_complex 0.06
-------------------------------Captured log call--------------------------------
INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp016,ou=groups,dc=example,dc=com INFO  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) INFO  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) INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  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) INFO  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) INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  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.07
-------------------------------Captured log call--------------------------------
INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:67 Create user uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:67 Create user uid=user_memofuser2,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:67 Create user uid=user_memofuser3,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp017,ou=groups,dc=example,dc=com INFO  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) INFO  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) INFO  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) INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  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.11
-------------------------------Captured log call--------------------------------
INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp018,ou=groups,dc=example,dc=com INFO  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) INFO  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) INFO  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) INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp018,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp018,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp018,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp018,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp018,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp018,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  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) INFO  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) INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  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.17
-------------------------------Captured log call--------------------------------
INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:67 Create user uid=user_memofuser2,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:67 Create user uid=user_memofuser3,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp019_2,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp019_3,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp019_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_1,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_1,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_1,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_1,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_1,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_1,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_1,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_1,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_1,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp019_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  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.20
-------------------------------Captured log call--------------------------------
INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:67 Create user uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp020_3,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp020_4,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp020_5,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified
Passed suites/plugins/memberof_test.py::test_complex_group_scenario_5 0.15
-------------------------------Captured log call--------------------------------
INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:67 Create user uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:67 Create user uid=user_memofuser2,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:67 Create user uid=user_memofuser3,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:67 Create user uid=user_memofuser4,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp020_3,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp020_4,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:83 Create group cn=group_memofegrp020_5,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser2,ou=people,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser3,ou=people,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser4,ou=people,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_4,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_4,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_4,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_4,ou=groups,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  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.23
-------------------------------Captured log call--------------------------------
INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser2,ou=people,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser3,ou=people,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser4,ou=people,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_4,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_4,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_4,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_4,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser2,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser2,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser3,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser3,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser4,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser4,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  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--------------------------------
INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser2,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser2,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser3,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser3,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser4,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser4,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_4,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_4,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser2,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser2,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: cn=group_memofegrp020_5,ou=groups,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser3,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser3,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: cn=group_memofegrp020_5,ou=groups,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser4,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser4,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: cn=group_memofegrp020_5,ou=groups,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser2,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser2,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser3,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser3,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser4,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser4,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified
Passed suites/plugins/memberof_test.py::test_complex_group_scenario_8 0.05
-------------------------------Captured log call--------------------------------
INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_4,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser2,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser2,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: cn=group_memofegrp020_5,ou=groups,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser3,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser3,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: cn=group_memofegrp020_5,ou=groups,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser4,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser4,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: cn=group_memofegrp020_5,ou=groups,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser2,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser2,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser3,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser3,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser4,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser4,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_4,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser2,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser2,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: cn=group_memofegrp020_5,ou=groups,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser3,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser3,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: cn=group_memofegrp020_5,ou=groups,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser4,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser4,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: cn=group_memofegrp020_5,ou=groups,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser2,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser2,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser3,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser3,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser4,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser4,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified
Passed suites/plugins/memberof_test.py::test_complex_group_scenario_9 0.14
-------------------------------Captured log call--------------------------------
INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_4,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser2,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser2,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: cn=group_memofegrp020_5,ou=groups,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser3,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser3,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: cn=group_memofegrp020_5,ou=groups,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser4,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser4,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: cn=group_memofegrp020_5,ou=groups,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser2,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser2,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser3,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser3,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser4,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser4,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 uniqueMember: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_5,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_2,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_3,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_4,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_1,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: uid=user_memofuser1,ou=people,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_1,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_2,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_3,ou=groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:101 member: cn=group_memofegrp020_4,ou=groups,dc=example,dc=com INFO  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' INFO  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' INFO  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' INFO  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' INFO  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' INFO  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' INFO  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' INFO  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' INFO  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' INFO  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' INFO  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' INFO  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' INFO  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' INFO  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' INFO  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' INFO  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' INFO  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' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_1,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_2,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_3,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'cn=group_memofegrp020_4,ou=groups,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group_memofegrp020_5,ou=Groups,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from b'uid=user_memofuser4,ou=people,dc=example,dc=com' INFO  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.13
-------------------------------Captured log call--------------------------------
INFO  tests.suites.plugins.memberof_test:memberof_test.py:109 Lookup memberof from uid=user1,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:116 memberof: cn=group,dc=example,dc=com INFO  tests.suites.plugins.memberof_test:memberof_test.py:119 --> membership verified INFO  tests.suites.plugins.memberof_test:memberof_test.py:2753 Correctly rejected invalid objectclass INFO  tests.suites.plugins.memberof_test:memberof_test.py:2823 Test complete.
Passed suites/plugins/pluginpath_validation_test.py::test_pluginpath_validation 0.53
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.plugins.pluginpath_validation_test:pluginpath_validation_test.py:103 Test complete
Passed suites/plugins/referint_test.py::test_referential_false_failure 7.08
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo0,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo1,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo2,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo3,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo4,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo5,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo6,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo7,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo8,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo9,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo10,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo11,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo12,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo13,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo14,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo15,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo16,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo17,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo18,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo19,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo20,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo21,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo22,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo23,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo24,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo25,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo26,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo27,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo28,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo29,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo30,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo31,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo32,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo33,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo34,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo35,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo36,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo37,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo38,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo39,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo40,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo41,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo42,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo43,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo44,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo45,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo46,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo47,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo48,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo49,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo50,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo51,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo52,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo53,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo54,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo55,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo56,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo57,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo58,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo59,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo60,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo61,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo62,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo63,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo64,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo65,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo66,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo67,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo68,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo69,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo70,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo71,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo72,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo73,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo74,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo75,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo76,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo77,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo78,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo79,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo80,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo81,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo82,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo83,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo84,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo85,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo86,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo87,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo88,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo89,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo90,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo91,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo92,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo93,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo94,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo95,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo96,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo97,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo98,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo99,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo100,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo101,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo102,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo103,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo104,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo105,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo106,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo107,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo108,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo109,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo110,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo111,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo112,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo113,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo114,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo115,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo116,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo117,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo118,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo119,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo120,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo121,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo122,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo123,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo124,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo125,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo126,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo127,dc=example,dc=com): CRITICAL tests.suites.plugins.referint_test:referint_test.py:37 Adding user (uid=foo\,oo128,dc=example,dc=com): CRITICAL 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.04
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. INFO  tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:60 Initializing root DN test suite... INFO  tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:70 test_rootdn_init: Initialized root DN test suite. INFO  tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:36 Cleaning up the config area
-------------------------------Captured log call--------------------------------
INFO  tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:102 Running test_rootdn_access_specific_time...
Passed suites/plugins/rootdn_plugin_test.py::test_rootdn_access_day_of_week 2.57
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:36 Cleaning up the config area
-------------------------------Captured log call--------------------------------
INFO  tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:185 Running test_rootdn_access_day_of_week... INFO  tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:202 Today: Sun INFO  tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:203 Allowed days: Sun,Mon INFO  tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:204 Deny days: Thu,Fri
Passed suites/plugins/rootdn_plugin_test.py::test_rootdn_access_denied_ip 2.56
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:36 Cleaning up the config area
-------------------------------Captured log call--------------------------------
INFO  tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:268 Running test_rootdn_access_denied_ip...
Passed suites/plugins/rootdn_plugin_test.py::test_rootdn_access_denied_host 2.56
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:36 Cleaning up the config area
-------------------------------Captured log call--------------------------------
INFO  tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:333 Running test_rootdn_access_denied_host...
Passed suites/plugins/rootdn_plugin_test.py::test_rootdn_access_allowed_ip 2.57
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:36 Cleaning up the config area
-------------------------------Captured log call--------------------------------
INFO  tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:400 Running test_rootdn_access_allowed_ip...
Passed suites/plugins/rootdn_plugin_test.py::test_rootdn_access_allowed_host 2.58
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:36 Cleaning up the config area
-------------------------------Captured log call--------------------------------
INFO  tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:466 Running test_rootdn_access_allowed_host...
Passed suites/plugins/rootdn_plugin_test.py::test_rootdn_config_validate 0.02
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:36 Cleaning up the config area
-------------------------------Captured log call--------------------------------
INFO  tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:575 Add just "rootdn-open-time"
Passed suites/plugins/rootdn_plugin_test.py::test_rootdn_access_denied_ip_wildcard 2.55
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:36 Cleaning up the config area
-------------------------------Captured log call--------------------------------
INFO  tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:666 Running test_rootdn_access_denied_ip_wildcard...
Passed suites/plugins/rootdn_plugin_test.py::test_rootdn_access_allowed_ip_wildcard 3.06
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:36 Cleaning up the config area
-------------------------------Captured log call--------------------------------
INFO  tests.suites.plugins.rootdn_plugin_test:rootdn_plugin_test.py:712 Running test_rootdn_access_allowed_ip...
Passed suites/psearch/psearch_test.py::test_psearch 2.02
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  lib389:psearch_test.py:30 dc=example,dc=com has changed! INFO  lib389:psearch_test.py:30 cn=Directory Administrators,dc=example,dc=com has changed! INFO  lib389:psearch_test.py:30 ou=Groups,dc=example,dc=com has changed! INFO  lib389:psearch_test.py:30 ou=People,dc=example,dc=com has changed! INFO  lib389:psearch_test.py:30 ou=Special Users,dc=example,dc=com has changed! INFO  lib389:psearch_test.py:30 cn=Accounting Managers,ou=Groups,dc=example,dc=com has changed! INFO  lib389:psearch_test.py:30 cn=HR Managers,ou=Groups,dc=example,dc=com has changed! INFO  lib389:psearch_test.py:30 cn=QA Managers,ou=Groups,dc=example,dc=com has changed! INFO  lib389:psearch_test.py:30 cn=PD Managers,ou=Groups,dc=example,dc=com has changed! INFO  lib389:psearch_test.py:34 No more results INFO  lib389:psearch_test.py:30 cn=group1,ou=Groups,dc=example,dc=com has changed! INFO  lib389:psearch_test.py:34 No more results
Passed suites/pwp_storage/storage_test.py::test_check_password_scheme[CRYPT] 0.27
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/pwp_storage/storage_test.py::test_check_password_scheme[SHA] 0.03
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.02
No log output captured.
Passed suites/pwp_storage/storage_test.py::test_check_password_scheme[SHA384] 0.03
No log output captured.
Passed suites/pwp_storage/storage_test.py::test_check_password_scheme[SSHA384] 0.03
No log output captured.
Passed suites/pwp_storage/storage_test.py::test_check_password_scheme[SHA512] 0.03
No log output captured.
Passed suites/pwp_storage/storage_test.py::test_check_password_scheme[SSHA512] 0.03
No log output captured.
Passed suites/pwp_storage/storage_test.py::test_check_password_scheme[MD5] 0.02
No log output captured.
Passed suites/pwp_storage/storage_test.py::test_check_password_scheme[PBKDF2_SHA256] 0.05
No log output captured.
Passed suites/pwp_storage/storage_test.py::test_clear_scheme 0.03
No log output captured.
Passed suites/pwp_storage/storage_test.py::test_check_two_scheme 3.36
No log output captured.
Passed suites/pwp_storage/storage_test.py::test_check_pbkdf2_sha256 4.60
No log output captured.
Passed suites/pwp_storage/storage_test.py::test_check_ssha512 5.78
No log output captured.
Passed suites/referint_plugin/rename_test.py::test_rename_large_subtree 144.02
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 4fa4d457-5490-4603-a484-5ec4c5a594cb / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 2d63d0e2-53ee-4fbb-89f9-31e4e0aef1e7 / got description=4fa4d457-5490-4603-a484-5ec4c5a594cb) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect b2c30e72-0183-415f-9ac7-bf48bfb65eda / got description=2d63d0e2-53ee-4fbb-89f9-31e4e0aef1e7) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect b2c30e72-0183-415f-9ac7-bf48bfb65eda / got description=2d63d0e2-53ee-4fbb-89f9-31e4e0aef1e7) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect b2c30e72-0183-415f-9ac7-bf48bfb65eda / got description=2d63d0e2-53ee-4fbb-89f9-31e4e0aef1e7) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect b2c30e72-0183-415f-9ac7-bf48bfb65eda / got description=2d63d0e2-53ee-4fbb-89f9-31e4e0aef1e7) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect b2c30e72-0183-415f-9ac7-bf48bfb65eda / got description=2d63d0e2-53ee-4fbb-89f9-31e4e0aef1e7) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect b2c30e72-0183-415f-9ac7-bf48bfb65eda / got description=2d63d0e2-53ee-4fbb-89f9-31e4e0aef1e7) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect b2c30e72-0183-415f-9ac7-bf48bfb65eda / got description=2d63d0e2-53ee-4fbb-89f9-31e4e0aef1e7) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect b2c30e72-0183-415f-9ac7-bf48bfb65eda / got description=2d63d0e2-53ee-4fbb-89f9-31e4e0aef1e7) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect b2c30e72-0183-415f-9ac7-bf48bfb65eda / got description=2d63d0e2-53ee-4fbb-89f9-31e4e0aef1e7) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect b2c30e72-0183-415f-9ac7-bf48bfb65eda / got description=2d63d0e2-53ee-4fbb-89f9-31e4e0aef1e7) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect b2c30e72-0183-415f-9ac7-bf48bfb65eda / got description=2d63d0e2-53ee-4fbb-89f9-31e4e0aef1e7) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect b2c30e72-0183-415f-9ac7-bf48bfb65eda / got description=2d63d0e2-53ee-4fbb-89f9-31e4e0aef1e7) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect b2c30e72-0183-415f-9ac7-bf48bfb65eda / got description=2d63d0e2-53ee-4fbb-89f9-31e4e0aef1e7) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect f8ad8f52-e24d-4131-98b2-8a4be4275e36 / got description=b2c30e72-0183-415f-9ac7-bf48bfb65eda) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect f8ad8f52-e24d-4131-98b2-8a4be4275e36 / got description=b2c30e72-0183-415f-9ac7-bf48bfb65eda) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect f8ad8f52-e24d-4131-98b2-8a4be4275e36 / got description=b2c30e72-0183-415f-9ac7-bf48bfb65eda) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect f8ad8f52-e24d-4131-98b2-8a4be4275e36 / got description=b2c30e72-0183-415f-9ac7-bf48bfb65eda) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect f8ad8f52-e24d-4131-98b2-8a4be4275e36 / got description=b2c30e72-0183-415f-9ac7-bf48bfb65eda) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect f8ad8f52-e24d-4131-98b2-8a4be4275e36 / got description=b2c30e72-0183-415f-9ac7-bf48bfb65eda) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect f8ad8f52-e24d-4131-98b2-8a4be4275e36 / got description=b2c30e72-0183-415f-9ac7-bf48bfb65eda) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect f8ad8f52-e24d-4131-98b2-8a4be4275e36 / got description=b2c30e72-0183-415f-9ac7-bf48bfb65eda) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect f8ad8f52-e24d-4131-98b2-8a4be4275e36 / got description=b2c30e72-0183-415f-9ac7-bf48bfb65eda) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect f8ad8f52-e24d-4131-98b2-8a4be4275e36 / got description=b2c30e72-0183-415f-9ac7-bf48bfb65eda) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect f8ad8f52-e24d-4131-98b2-8a4be4275e36 / got description=b2c30e72-0183-415f-9ac7-bf48bfb65eda) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect f8ad8f52-e24d-4131-98b2-8a4be4275e36 / got description=b2c30e72-0183-415f-9ac7-bf48bfb65eda) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working
Passed suites/replication/acceptance_test.py::test_add_entry 10.02
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39003, 'ldap-secureport': 63703, 'server-id': 'master3', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39004, 'ldap-secureport': 63704, 'server-id': 'master4', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 7ded85e5-3c2f-4d30-ac58-79b0e858bea6 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect d73e4f14-a568-40ea-82bd-902e14c7bb07 / got description=7ded85e5-3c2f-4d30-ac58-79b0e858bea6) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:162 Joining master master3 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect c4547c5a-77a9-44fc-ae17-8283af1fcd95 / got description=d73e4f14-a568-40ea-82bd-902e14c7bb07) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 03176bb9-26fa-443a-968b-b6094cf78328 / got description=c4547c5a-77a9-44fc-ae17-8283af1fcd95) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 INFO  lib389.topologies:topologies.py:162 Joining master master4 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 4e3d8264-da82-4106-8fb7-cfad53630914 / got description=97b95709-3c0b-4103-80ab-b6de780d74bf) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master3 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master4 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master3 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master4 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master2 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master4 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master4 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master4 to master2 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master4 to master3 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created INFO  tests.suites.replication.acceptance_test:acceptance_test.py:41 Adding entry uid=mmrepl_test,dc=example,dc=com
Passed suites/replication/acceptance_test.py::test_modify_entry 3.08
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.replication.acceptance_test:acceptance_test.py:41 Adding entry uid=mmrepl_test,dc=example,dc=com INFO  tests.suites.replication.acceptance_test:acceptance_test.py:45 Deleting entry uid=mmrepl_test,dc=example,dc=com
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.acceptance_test:acceptance_test.py:128 Modifying entry uid=mmrepl_test,dc=example,dc=com - add operation INFO  tests.suites.replication.acceptance_test:acceptance_test.py:138 Modifying entry uid=mmrepl_test,dc=example,dc=com - replace operation INFO  tests.suites.replication.acceptance_test:acceptance_test.py:146 Modifying entry uid=mmrepl_test,dc=example,dc=com - delete operation
Passed suites/replication/acceptance_test.py::test_delete_entry 10.03
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.replication.acceptance_test:acceptance_test.py:41 Adding entry uid=mmrepl_test,dc=example,dc=com INFO  tests.suites.replication.acceptance_test:acceptance_test.py:45 Deleting entry uid=mmrepl_test,dc=example,dc=com
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.acceptance_test:acceptance_test.py:168 Deleting entry uid=mmrepl_test,dc=example,dc=com during the test
Passed suites/replication/acceptance_test.py::test_modrdn_entry[0] 20.05
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.replication.acceptance_test:acceptance_test.py:41 Adding entry uid=mmrepl_test,dc=example,dc=com
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.acceptance_test:acceptance_test.py:192 Modify entry RDN uid=mmrepl_test,dc=example,dc=com INFO  tests.suites.replication.acceptance_test:acceptance_test.py:211 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-------------------------------
INFO  tests.suites.replication.acceptance_test:acceptance_test.py:41 Adding entry uid=mmrepl_test,dc=example,dc=com
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.acceptance_test:acceptance_test.py:192 Modify entry RDN uid=mmrepl_test,dc=example,dc=com INFO  tests.suites.replication.acceptance_test:acceptance_test.py:211 Remove entry with new RDN uid=newrdn,dc=example,dc=com
Passed suites/replication/acceptance_test.py::test_modrdn_after_pause 14.41
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.acceptance_test:acceptance_test.py:237 Adding entry uid=mmrepl_test,dc=example,dc=com INFO  tests.suites.replication.acceptance_test:acceptance_test.py:252 Pause all replicas INFO  tests.suites.replication.acceptance_test:acceptance_test.py:255 Modify entry RDN uid=mmrepl_test,dc=example,dc=com INFO  tests.suites.replication.acceptance_test:acceptance_test.py:263 Resume all replicas INFO  tests.suites.replication.acceptance_test:acceptance_test.py:266 Wait for replication to happen INFO  tests.suites.replication.acceptance_test:acceptance_test.py:273 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--------------------------------
INFO  tests.suites.replication.acceptance_test:acceptance_test.py:295 Modify nsds5replicastripattrs with b'modifiersname modifytimestamp' INFO  tests.suites.replication.acceptance_test:acceptance_test.py:298 Check nsds5replicastripattrs for b'modifiersname modifytimestamp'
Passed suites/replication/acceptance_test.py::test_new_suffix 10.95
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.replication.acceptance_test:acceptance_test.py:62 Adding suffix:o=test_repl and backend: repl_base to master1 INFO  lib389:backend.py:80 List backend with suffix=o=test_repl INFO  lib389:backend.py:290 Creating a local backend INFO  lib389:backend.py:76 List backend cn=repl_base,cn=ldbm database,cn=plugins,cn=config INFO  lib389:__init__.py:1772 Found entry dn: cn=repl_base,cn=ldbm database,cn=plugins,cn=config cn: repl_base nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-master1/db/repl_base nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: o=test_repl objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance INFO  lib389:mappingTree.py:154 Entry dn: cn="o=test_repl",cn=mapping tree,cn=config cn: o=test_repl nsslapd-backend: repl_base nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree INFO  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 INFO  tests.suites.replication.acceptance_test:acceptance_test.py:62 Adding suffix:o=test_repl and backend: repl_base to master2 INFO  lib389:backend.py:80 List backend with suffix=o=test_repl INFO  lib389:backend.py:290 Creating a local backend INFO  lib389:backend.py:76 List backend cn=repl_base,cn=ldbm database,cn=plugins,cn=config INFO  lib389:__init__.py:1772 Found entry dn: cn=repl_base,cn=ldbm database,cn=plugins,cn=config cn: repl_base nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-master2/db/repl_base nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: o=test_repl objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance INFO  lib389:mappingTree.py:154 Entry dn: cn="o=test_repl",cn=mapping tree,cn=config cn: o=test_repl nsslapd-backend: repl_base nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree INFO  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 INFO  tests.suites.replication.acceptance_test:acceptance_test.py:62 Adding suffix:o=test_repl and backend: repl_base to master3 INFO  lib389:backend.py:80 List backend with suffix=o=test_repl INFO  lib389:backend.py:290 Creating a local backend INFO  lib389:backend.py:76 List backend cn=repl_base,cn=ldbm database,cn=plugins,cn=config INFO  lib389:__init__.py:1772 Found entry dn: cn=repl_base,cn=ldbm database,cn=plugins,cn=config cn: repl_base nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-master3/db/repl_base nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: o=test_repl objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance INFO  lib389:mappingTree.py:154 Entry dn: cn="o=test_repl",cn=mapping tree,cn=config cn: o=test_repl nsslapd-backend: repl_base nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree INFO  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 INFO  tests.suites.replication.acceptance_test:acceptance_test.py:62 Adding suffix:o=test_repl and backend: repl_base to master4 INFO  lib389:backend.py:80 List backend with suffix=o=test_repl INFO  lib389:backend.py:290 Creating a local backend INFO  lib389:backend.py:76 List backend cn=repl_base,cn=ldbm database,cn=plugins,cn=config INFO  lib389:__init__.py:1772 Found entry dn: cn=repl_base,cn=ldbm database,cn=plugins,cn=config cn: repl_base nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-master4/db/repl_base nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: o=test_repl objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance INFO  lib389:mappingTree.py:154 Entry dn: cn="o=test_repl",cn=mapping tree,cn=config cn: o=test_repl nsslapd-backend: repl_base nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree INFO  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--------------------------------
INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ff66459d-52f7-4d37-a348-68df9bf4d20e / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 0a8a74cd-8066-46be-b1e9-74808af35e40 / got description=ff66459d-52f7-4d37-a348-68df9bf4d20e) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 0d8ac093-8ab0-45b3-a639-a70d876956fd / got description=0a8a74cd-8066-46be-b1e9-74808af35e40) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 108a0aff-86c8-4400-815a-d2d5f991a6fa / got description=0d8ac093-8ab0-45b3-a639-a70d876956fd) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working
Passed suites/replication/acceptance_test.py::test_many_attrs 20.12
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.replication.acceptance_test:acceptance_test.py:41 Adding entry uid=mmrepl_test,dc=example,dc=com
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.acceptance_test:acceptance_test.py:353 Modifying entry uid=mmrepl_test,dc=example,dc=com - 10 add operations INFO  tests.suites.replication.acceptance_test:acceptance_test.py:357 Check that everything was properly replicated after an add operation INFO  tests.suites.replication.acceptance_test:acceptance_test.py:362 Modifying entry uid=mmrepl_test,dc=example,dc=com - 4 delete operations for [b'test0', b'test4', b'test7', b'test9'] INFO  tests.suites.replication.acceptance_test:acceptance_test.py:366 Check that everything was properly replicated after a delete operation
Passed suites/replication/acceptance_test.py::test_double_delete 10.03
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.replication.acceptance_test:acceptance_test.py:41 Adding entry uid=mmrepl_test,dc=example,dc=com INFO  tests.suites.replication.acceptance_test:acceptance_test.py:45 Deleting entry uid=mmrepl_test,dc=example,dc=com
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.acceptance_test:acceptance_test.py:386 Deleting entry uid=mmrepl_test,dc=example,dc=com from master1 INFO  tests.suites.replication.acceptance_test:acceptance_test.py:389 Deleting entry uid=mmrepl_test,dc=example,dc=com from master2 INFO  tests.suites.replication.acceptance_test:acceptance_test.py:393 Entry uid=mmrepl_test,dc=example,dc=com wasn't found master2. It is expected. INFO  tests.suites.replication.acceptance_test:acceptance_test.py:395 Make searches to check if server is alive
Passed suites/replication/acceptance_test.py::test_password_repl_error 23.45
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.replication.acceptance_test:acceptance_test.py:41 Adding entry uid=mmrepl_test,dc=example,dc=com
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.acceptance_test:acceptance_test.py:416 Clean the error log INFO  tests.suites.replication.acceptance_test:acceptance_test.py:419 Set replication loglevel INFO  tests.suites.replication.acceptance_test:acceptance_test.py:422 Modifying entry uid=mmrepl_test,dc=example,dc=com - change userpassword on master 2 INFO  tests.suites.replication.acceptance_test:acceptance_test.py:430 Restart the servers to flush the logs INFO  tests.suites.replication.acceptance_test:acceptance_test.py:439 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--------------------------------
CRITICAL lib389:agreement.py:1026 Failed to add replication agreement: {'msgtype': 105, 'msgid': 5, 'result': 53, 'desc': 'Server is unwilling to perform', 'ctrls': []} INFO  lib389:acceptance_test.py:464 Invalid repl agreement correctly rejected
Passed suites/replication/acceptance_test.py::test_warining_for_invalid_replica 0.02
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.acceptance_test:acceptance_test.py:494 Set nsds5ReplicaBackoffMin to 20 INFO  tests.suites.replication.acceptance_test:acceptance_test.py:497 Set nsds5ReplicaBackoffMax to 10 INFO  tests.suites.replication.acceptance_test:acceptance_test.py:499 Resetting configuration: nsds5ReplicaBackoffMin INFO  tests.suites.replication.acceptance_test:acceptance_test.py:501 Check the error log for the error
Passed suites/replication/acceptance_test.py::test_csngen_task 11.02
-----------------------------Captured stdout setup------------------------------
Instance slapd-master1 removed. Instance slapd-master2 removed.
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 47514584-a5c9-445a-8d0f-52d084a5e392 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 6449db95-703b-4e37-8d2a-33a1a9f2f492 / got description=47514584-a5c9-445a-8d0f-52d084a5e392) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.acceptance_test:acceptance_test.py:523 Check the error log contains strings showing csn generator is tested
Passed suites/replication/acceptance_test.py::test_csnpurge_large_valueset 6.32
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.acceptance_test:acceptance_test.py:574 nsds5ReplicaPurgeDelay to 5
Passed suites/replication/acceptance_test.py::test_urp_trigger_substring_search 608.92
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.acceptance_test:acceptance_test.py:604 Set nsslapd-plugin-logging to on INFO  tests.suites.replication.acceptance_test:acceptance_test.py:634 Entry not yet replicated on M2, wait a bit INFO  tests.suites.replication.acceptance_test:acceptance_test.py:638 Check that on M2, URP as not triggered such internal search INFO  tests.suites.replication.acceptance_test:acceptance_test.py:641 found line: []
Passed suites/replication/cascading_test.py::test_basic_with_hub 14.23
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39101, 'ldap-secureport': 63801, 'server-id': 'hub1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39201, 'ldap-secureport': 63901, 'server-id': 'consumer1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:515 Creating replication topology. INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39101 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39101 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39101 is NOT working (expect aa1a15da-7293-4beb-bf86-d9983d6e64db / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39101 is working INFO  lib389.replica:replica.py:2228 SUCCESS: joined consumer from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39101 INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39101 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is was created INFO  lib389.replica:replica.py:2285 SUCCESS: joined consumer from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39101 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 694bfd9d-8a5d-447e-8b80-c86c9355271f / got description=aa1a15da-7293-4beb-bf86-d9983d6e64db) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working
-------------------------------Captured log call--------------------------------
INFO  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 INFO  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 INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 755ae0e2-8799-43a1-8b61-7cadc30975f6 / got description=694bfd9d-8a5d-447e-8b80-c86c9355271f) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect fa6b522d-5d14-4b40-bbf6-b1825bcf2fd2 / got description=755ae0e2-8799-43a1-8b61-7cadc30975f6) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect b4cfd265-9f40-4c5d-8e8f-026be2e92da8 / got description=fa6b522d-5d14-4b40-bbf6-b1825bcf2fd2) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working
Passed suites/replication/changelog_encryption_test.py::test_cl_encryption_setup_process 31.52
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39201, 'ldap-secureport': 63901, 'server-id': 'consumer1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:175 Joining consumer consumer1 from master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect a749c6d3-ebc6-4984-812b-1a8d891a8fe6 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working INFO  lib389.replica:replica.py:2285 SUCCESS: joined consumer from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 INFO  lib389.topologies:topologies.py:180 Ensuring consumer consumer1 from master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 already exists
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.changelog_encryption_test:changelog_encryption_test.py:43 Enable TLS ... INFO  tests.suites.replication.changelog_encryption_test:changelog_encryption_test.py:48 Export changelog ... INFO  tests.suites.replication.changelog_encryption_test:changelog_encryption_test.py:55 Enable changelog encryption ... INFO  tests.suites.replication.changelog_encryption_test:changelog_encryption_test.py:68 Import changelog ... INFO  tests.suites.replication.changelog_encryption_test:changelog_encryption_test.py:73 Test replication is still working ...
Passed suites/replication/changelog_test.py::test_dsconf_dump_changelog_files_removed 5.52
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect e6264513-9184-41ea-b63c-15c60eac0c9e / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect f22982b8-8487-4b84-8ce6-3e7dbdb3dfa2 / got description=e6264513-9184-41ea-b63c-15c60eac0c9e) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.changelog_test:changelog_test.py:222 Remove .ldif files, if present in: /var/lib/dirsrv/slapd-master1/ldif INFO  tests.suites.replication.changelog_test:changelog_test.py:222 Remove .done files, if present in: /var/lib/dirsrv/slapd-master1/ldif INFO  tests.suites.replication.changelog_test:changelog_test.py:52 Adding user replusr INFO  tests.suites.replication.changelog_test:changelog_test.py:65 Modify RDN of user uid=replusr,ou=People,dc=example,dc=com INFO  tests.suites.replication.changelog_test:changelog_test.py:72 Deleting user: uid=cl5usr,ou=People,dc=example,dc=com INFO  tests.suites.replication.changelog_test:changelog_test.py:386 Use dsconf export-changelog with invalid parameters INFO  tests.suites.replication.changelog_test:changelog_test.py:388 Command used : ['/usr/sbin/dsconf', 'ldap://LOCALHOST:39001', '-D', 'cn=Directory Manager', '-w', 'badpasswd', 'replication', 'export-changelog'] INFO  tests.suites.replication.changelog_test:changelog_test.py:391 output message : b'No action provided, here is some --help.\nusage: dsconf [-h] [-v] [-D BINDDN] [-w BINDPW] [-W] [-y PWDFILE] [-b BASEDN]\n [-Z] [-j]\n instance\n {backend,backup,chaining,config,directory_manager,monitor,plugin,pwpolicy,localpwp,replication,repl-agmt,repl-winsync-agmt,repl-tasks,sasl,security,schema,repl-conflict}\n ...\n\npositional arguments:\n instance The instance name OR the LDAP url to connect to, IE\n localhost, ldap://mai.example.com:389\n {backend,backup,chaining,config,directory_manager,monitor,plugin,pwpolicy,localpwp,replication,repl-agmt,repl-winsync-agmt,repl-tasks,sasl,security,schema,repl-conflict}\n resources to act upon\n backend Manage database suffixes and backends\n backup Manage online backups\n chaining Manage database chaining/database links\n config Manage server configuration\n directory_manager Manage the directory manager account\n monitor Monitor the state of the instance\n plugin Manage plugins available on the server\n pwpolicy Get and set the global password policy settings\n localpwp Manage local (user/subtree) password policies\n replication Configure replication for a suffix\n repl-agmt Manage replication agreements\n repl-winsync-agmt Manage Winsync Agreements\n repl-tasks Manage replication tasks\n sasl Query and manipulate SASL mappings\n security Query and manipulate security options\n schema Query and manipulate schema\n repl-conflict Manage replication conflicts\n\noptional arguments:\n -h, --help show this help message and exit\n -v, --verbose Display verbose operation tracing during command\n execution\n -D BINDDN, --binddn BINDDN\n The account to bind as for executing operations\n -w BINDPW, --bindpw BINDPW\n Password for binddn\n -W, --prompt Prompt for password for the bind DN\n -y PWDFILE, --pwdfile PWDFILE\n Specifies a file containing the password for the\n binddn\n -b BASEDN, --basedn BASEDN\n Basedn (root naming context) of the instance to manage\n -Z, --starttls Connect with StartTLS\n -j, --json Return result in JSON object\n' INFO  tests.suites.replication.changelog_test:changelog_test.py:396 Use dsconf replication changelog without -l option: no generated ldif files should be present in /var/lib/dirsrv/slapd-master1/ldif INFO  tests.suites.replication.changelog_test:changelog_test.py:399 Command used : ['/usr/sbin/dsconf', 'ldap://LOCALHOST:39001', '-D', 'cn=Directory Manager', '-w', 'password', 'replication', 'export-changelog', 'default', '-r', 'dc=example,dc=com'] INFO  tests.suites.replication.changelog_test:changelog_test.py:404 Wait for all dsconf export-changelog files to be generated INFO  tests.suites.replication.changelog_test:changelog_test.py:407 Check if dsconf export-changelog generated .ldif.done files are present - should not INFO  tests.suites.replication.changelog_test:changelog_test.py:413 All dsconf export-changelog generated .ldif files have been successfully removed from /var/lib/dirsrv/slapd-master1/ldif INFO  tests.suites.replication.changelog_test:changelog_test.py:416 Use dsconf replication changelog with -l option: generated ldif files should be kept in /var/lib/dirsrv/slapd-master1/ldif INFO  tests.suites.replication.changelog_test:changelog_test.py:419 Command used : ['/usr/sbin/dsconf', 'ldap://LOCALHOST:39001', '-D', 'cn=Directory Manager', '-w', 'password', 'replication', 'export-changelog', 'to-ldif', '-o', '/var/lib/dirsrv/slapd-master1/ldif/test.ldif', '-r', 'dc=example,dc=com', '-l'] INFO  tests.suites.replication.changelog_test:changelog_test.py:424 Wait for all dsconf export-changelog files to be generated INFO  tests.suites.replication.changelog_test:changelog_test.py:427 Check if dsconf export-changelog generated .ldif.done files are present - should be INFO  tests.suites.replication.changelog_test:changelog_test.py:431 Success : ldif file /var/lib/dirsrv/slapd-master1/ldif/84c2df85-165f11eb-9ae58c10-d4088078_cl.ldif.done is present
Passed suites/replication/changelog_test.py::test_verify_changelog 0.11
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.changelog_test:changelog_test.py:454 LDAP operations add, modify, modrdn and delete INFO  tests.suites.replication.changelog_test:changelog_test.py:52 Adding user replusr INFO  tests.suites.replication.changelog_test:changelog_test.py:65 Modify RDN of user uid=replusr,ou=People,dc=example,dc=com INFO  tests.suites.replication.changelog_test:changelog_test.py:72 Deleting user: uid=cl5usr,ou=People,dc=example,dc=com INFO  tests.suites.replication.changelog_test:changelog_test.py:79 Dump changelog using nss5task and check if ldap operations are logged INFO  tests.suites.replication.changelog_test:changelog_test.py:88 Remove ldif files, if present in: /var/lib/dirsrv/slapd-master1/ldif INFO  tests.suites.replication.changelog_test:changelog_test.py:99 No existing changelog ldif files present INFO  tests.suites.replication.changelog_test:changelog_test.py:101 Running nsds5task to dump changelog database to a file INFO  tests.suites.replication.changelog_test:changelog_test.py:104 Check if changelog ldif file exist in: /var/lib/dirsrv/slapd-master1/ldif INFO  tests.suites.replication.changelog_test:changelog_test.py:108 Changelog ldif file exist: /var/lib/dirsrv/slapd-master1/ldif/84c2df85-165f11eb-9ae58c10-d4088078_cl.ldif INFO  tests.suites.replication.changelog_test:changelog_test.py:118 Checking changelog ldif file for ldap operations INFO  tests.suites.replication.changelog_test:changelog_test.py:123 Checking if all required changetype operations are present INFO  tests.suites.replication.changelog_test:changelog_test.py:129 Valid ldap operations: {'add', 'modify', 'modrdn', 'delete'} INFO  tests.suites.replication.changelog_test:changelog_test.py:130 Ldap operations found: {'add', 'modify', 'modrdn', 'delete'}
Passed suites/replication/changelog_test.py::test_verify_changelog_online_backup 5.10
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.changelog_test:changelog_test.py:481 Run db2bak script to take database backup INFO  lib389:tasks.py:619 Backup task backup_10242020_211526 completed successfully INFO  tests.suites.replication.changelog_test:changelog_test.py:493 Database backup is created successfully INFO  tests.suites.replication.changelog_test:changelog_test.py:498 Run bak2db to restore directory server INFO  lib389:tasks.py:673 Restore task restore_10242020_211528 completed successfully INFO  tests.suites.replication.changelog_test:changelog_test.py:505 LDAP operations add, modify, modrdn and delete INFO  tests.suites.replication.changelog_test:changelog_test.py:52 Adding user replusr INFO  tests.suites.replication.changelog_test:changelog_test.py:65 Modify RDN of user uid=replusr,ou=People,dc=example,dc=com INFO  tests.suites.replication.changelog_test:changelog_test.py:72 Deleting user: uid=cl5usr,ou=People,dc=example,dc=com INFO  tests.suites.replication.changelog_test:changelog_test.py:79 Dump changelog using nss5task and check if ldap operations are logged INFO  tests.suites.replication.changelog_test:changelog_test.py:88 Remove ldif files, if present in: /var/lib/dirsrv/slapd-master1/ldif INFO  tests.suites.replication.changelog_test:changelog_test.py:97 Existing changelog ldif file: /var/lib/dirsrv/slapd-master1/ldif/84c2df85-165f11eb-9ae58c10-d4088078_cl.ldif removed INFO  tests.suites.replication.changelog_test:changelog_test.py:99 No existing changelog ldif files present INFO  tests.suites.replication.changelog_test:changelog_test.py:101 Running nsds5task to dump changelog database to a file INFO  tests.suites.replication.changelog_test:changelog_test.py:104 Check if changelog ldif file exist in: /var/lib/dirsrv/slapd-master1/ldif INFO  tests.suites.replication.changelog_test:changelog_test.py:108 Changelog ldif file exist: /var/lib/dirsrv/slapd-master1/ldif/84c2df85-165f11eb-9ae58c10-d4088078_cl.ldif INFO  tests.suites.replication.changelog_test:changelog_test.py:118 Checking changelog ldif file for ldap operations INFO  tests.suites.replication.changelog_test:changelog_test.py:123 Checking if all required changetype operations are present INFO  tests.suites.replication.changelog_test:changelog_test.py:129 Valid ldap operations: {'add', 'modify', 'modrdn', 'delete'} INFO  tests.suites.replication.changelog_test:changelog_test.py:130 Ldap operations found: {'add', 'modify', 'modrdn', 'delete'}
Passed suites/replication/changelog_test.py::test_verify_changelog_offline_backup 6.20
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.changelog_test:changelog_test.py:534 Run db2bak to take database backup INFO  tests.suites.replication.changelog_test:changelog_test.py:541 Run bak2db to restore directory server INFO  tests.suites.replication.changelog_test:changelog_test.py:554 Database backup is created successfully INFO  tests.suites.replication.changelog_test:changelog_test.py:559 LDAP operations add, modify, modrdn and delete INFO  tests.suites.replication.changelog_test:changelog_test.py:52 Adding user replusr INFO  tests.suites.replication.changelog_test:changelog_test.py:65 Modify RDN of user uid=replusr,ou=People,dc=example,dc=com INFO  tests.suites.replication.changelog_test:changelog_test.py:72 Deleting user: uid=cl5usr,ou=People,dc=example,dc=com INFO  tests.suites.replication.changelog_test:changelog_test.py:79 Dump changelog using nss5task and check if ldap operations are logged INFO  tests.suites.replication.changelog_test:changelog_test.py:88 Remove ldif files, if present in: /var/lib/dirsrv/slapd-master1/ldif INFO  tests.suites.replication.changelog_test:changelog_test.py:97 Existing changelog ldif file: /var/lib/dirsrv/slapd-master1/ldif/84c2df85-165f11eb-9ae58c10-d4088078_cl.ldif removed INFO  tests.suites.replication.changelog_test:changelog_test.py:99 No existing changelog ldif files present INFO  tests.suites.replication.changelog_test:changelog_test.py:101 Running nsds5task to dump changelog database to a file INFO  tests.suites.replication.changelog_test:changelog_test.py:104 Check if changelog ldif file exist in: /var/lib/dirsrv/slapd-master1/ldif INFO  tests.suites.replication.changelog_test:changelog_test.py:108 Changelog ldif file exist: /var/lib/dirsrv/slapd-master1/ldif/84c2df85-165f11eb-9ae58c10-d4088078_cl.ldif INFO  tests.suites.replication.changelog_test:changelog_test.py:118 Checking changelog ldif file for ldap operations INFO  tests.suites.replication.changelog_test:changelog_test.py:123 Checking if all required changetype operations are present INFO  tests.suites.replication.changelog_test:changelog_test.py:129 Valid ldap operations: {'add', 'modify', 'modrdn', 'delete'} INFO  tests.suites.replication.changelog_test:changelog_test.py:130 Ldap operations found: {'add', 'modify', 'modrdn', 'delete'}
Passed suites/replication/changelog_trimming_test.py::test_max_age 14.47
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.changelog_trimming_test:changelog_trimming_test.py:90 Testing changelog triming interval with max age...
Passed suites/replication/changelog_trimming_test.py::test_max_entries 12.65
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.changelog_trimming_test:changelog_trimming_test.py:133 Testing changelog triming interval with max entries...
Passed suites/replication/cleanallruv_max_tasks_test.py::test_max_tasks 40.41
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39003, 'ldap-secureport': 63703, 'server-id': 'master3', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39004, 'ldap-secureport': 63704, 'server-id': 'master4', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect a4d8ab4d-76ab-414a-affc-c889048436d6 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 83f80374-d6cf-4aa1-8d72-e272b72bcc18 / got description=a4d8ab4d-76ab-414a-affc-c889048436d6) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:162 Joining master master3 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect a78aaf66-daec-476a-bff4-c775f9a5e57f / got description=83f80374-d6cf-4aa1-8d72-e272b72bcc18) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect f08c21ec-1925-4a5a-81fb-4d3538efa4f2 / got description=a78aaf66-daec-476a-bff4-c775f9a5e57f) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 INFO  lib389.topologies:topologies.py:162 Joining master master4 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 25cf3320-0d5b-43c1-8a33-2085d243e1cc / got description=f08c21ec-1925-4a5a-81fb-4d3538efa4f2) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 9c7d2673-e5dd-42bf-a13f-16259f52b0f8 / got description=25cf3320-0d5b-43c1-8a33-2085d243e1cc) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master3 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master4 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master3 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master4 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master2 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master4 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master4 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master4 to master2 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master4 to master3 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created
Passed suites/replication/cleanallruv_test.py::test_clean 3.08
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39003, 'ldap-secureport': 63703, 'server-id': 'master3', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39004, 'ldap-secureport': 63704, 'server-id': 'master4', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 572abb44-69d6-4a26-b241-444dc0cc7ce3 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect a5f5f437-7812-4a51-bd1a-8da4315f6b33 / got description=572abb44-69d6-4a26-b241-444dc0cc7ce3) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:162 Joining master master3 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect a43a425b-74a6-4b3a-9c9d-9a703ec5c96d / got description=a5f5f437-7812-4a51-bd1a-8da4315f6b33) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect b553bf74-ffeb-43af-a148-6624b2a69cd1 / got description=a43a425b-74a6-4b3a-9c9d-9a703ec5c96d) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect b553bf74-ffeb-43af-a148-6624b2a69cd1 / got description=a43a425b-74a6-4b3a-9c9d-9a703ec5c96d) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect b553bf74-ffeb-43af-a148-6624b2a69cd1 / got description=a43a425b-74a6-4b3a-9c9d-9a703ec5c96d) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 INFO  lib389.topologies:topologies.py:162 Joining master master4 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 67e16be2-708e-4102-b3a4-19d13cb7d3f9 / got description=b553bf74-ffeb-43af-a148-6624b2a69cd1) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect eb421d67-8b53-43c6-aaf3-fd10f39422f3 / got description=67e16be2-708e-4102-b3a4-19d13cb7d3f9) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect eb421d67-8b53-43c6-aaf3-fd10f39422f3 / got description=67e16be2-708e-4102-b3a4-19d13cb7d3f9) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect eb421d67-8b53-43c6-aaf3-fd10f39422f3 / got description=67e16be2-708e-4102-b3a4-19d13cb7d3f9) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master3 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master4 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master3 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master4 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master2 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master4 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master4 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master4 to master2 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master4 to master3 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created DEBUG  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:153 Wait a bit before the reset - it is required for the slow machines DEBUG  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:155 -------------- BEGIN RESET of m4 ----------------- INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 88bd4c33-e836-4745-a7d9-80a3146025fb / got description=eb421d67-8b53-43c6-aaf3-fd10f39422f3) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 4a8c2686-5e9a-472c-9dc3-9252ff318080 / got description=88bd4c33-e836-4745-a7d9-80a3146025fb) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 55498f60-ecf1-4c6a-9e05-5d30c145b054 / got description=4a8c2686-5e9a-472c-9dc3-9252ff318080) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect d552a30d-30a7-4491-a133-139abec45658 / got description=55498f60-ecf1-4c6a-9e05-5d30c145b054) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 28cd1fe5-f8e8-4bec-814e-b3b7760888b9 / got description=d552a30d-30a7-4491-a133-139abec45658) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 36265e77-5ae2-410c-ab2b-3d2649209bf0 / got description=28cd1fe5-f8e8-4bec-814e-b3b7760888b9) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 95d39a40-ba33-49ec-9d8a-e7d0483413e5 / got description=36265e77-5ae2-410c-ab2b-3d2649209bf0) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 95d39a40-ba33-49ec-9d8a-e7d0483413e5 / got description=36265e77-5ae2-410c-ab2b-3d2649209bf0) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 95d39a40-ba33-49ec-9d8a-e7d0483413e5 / got description=36265e77-5ae2-410c-ab2b-3d2649209bf0) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 95d39a40-ba33-49ec-9d8a-e7d0483413e5 / got description=36265e77-5ae2-410c-ab2b-3d2649209bf0) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect dd4adfc4-26fd-4090-8a0e-ae1d35fb5802 / got description=95d39a40-ba33-49ec-9d8a-e7d0483413e5) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 32808f1d-5a83-4191-98dc-d7bed1f5d4d9 / got description=dd4adfc4-26fd-4090-8a0e-ae1d35fb5802) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect c8777c6e-0dd7-4675-be6c-3489582bd52c / got description=32808f1d-5a83-4191-98dc-d7bed1f5d4d9) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 067166ac-3651-4f23-b485-6a2652ad8630 / got description=c8777c6e-0dd7-4675-be6c-3489582bd52c) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 7c184989-75af-47bf-93e4-e18d4a9d9563 / got description=067166ac-3651-4f23-b485-6a2652ad8630) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working DEBUG  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:181 -------------- FINISH RESET of m4 -----------------
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:204 Running test_clean... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:207 test_clean: disable master 4... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:71 test_clean: remove all the agreements to master 4... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:211 test_clean: run the cleanAllRUV task... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:221 test_clean: check all the masters have been cleaned... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:85 check_ruvs for replica dc=example,dc=com:1 (suffix:rid) INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:85 check_ruvs for replica dc=example,dc=com:2 (suffix:rid) INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:85 check_ruvs for replica dc=example,dc=com:3 (suffix:rid) INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:225 test_clean PASSED, restoring master 4...
Passed suites/replication/cleanallruv_test.py::test_clean_restart 21.78
-------------------------------Captured log setup-------------------------------
DEBUG  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:153 Wait a bit before the reset - it is required for the slow machines DEBUG  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:155 -------------- BEGIN RESET of m4 ----------------- INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect fd7bd3a1-2442-4e8a-aedd-9b6def3af270 / got description=6b941df7-9722-4f11-a401-fd1795662c4a) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 13b7b985-0adb-4474-af88-1d5a04730a09 / got description=fd7bd3a1-2442-4e8a-aedd-9b6def3af270) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 48203d70-518c-40d7-b044-78ec34ca3a99 / got description=13b7b985-0adb-4474-af88-1d5a04730a09) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect ec913cdd-2d6f-48c7-9498-dceb3f369d9b / got description=48203d70-518c-40d7-b044-78ec34ca3a99) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 6845ea88-2b75-48e6-a79d-939275411cd7 / got description=ec913cdd-2d6f-48c7-9498-dceb3f369d9b) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 6cb4b714-3f7c-424e-8192-de45e3cffb34 / got description=6845ea88-2b75-48e6-a79d-939275411cd7) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect a34f90f5-a6ea-4ba2-a1c3-3f6f4a8c8f33 / got description=6cb4b714-3f7c-424e-8192-de45e3cffb34) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect d47cd4a2-bdcd-479a-90cd-2631483d8abd / got description=a34f90f5-a6ea-4ba2-a1c3-3f6f4a8c8f33) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 014a595a-a6ad-4c32-80ef-7459d7b56a19 / got description=d47cd4a2-bdcd-479a-90cd-2631483d8abd) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 0d6e4cfa-ec46-433c-87ef-5e412f18f8de / got description=014a595a-a6ad-4c32-80ef-7459d7b56a19) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect cee9a56c-dff0-4f51-a3b8-5c50425eef45 / got description=0d6e4cfa-ec46-433c-87ef-5e412f18f8de) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect ef14ac65-ca50-4482-88d0-6952d819565d / got description=cee9a56c-dff0-4f51-a3b8-5c50425eef45) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working DEBUG  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:181 -------------- FINISH RESET of m4 -----------------
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:256 Running test_clean_restart... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:259 test_clean: disable master 4... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:71 test_clean: remove all the agreements to master 4... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:267 test_clean: run the cleanAllRUV task... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:292 test_clean_restart: check all the masters have been cleaned... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:85 check_ruvs for replica dc=example,dc=com:1 (suffix:rid) INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:85 check_ruvs for replica dc=example,dc=com:2 (suffix:rid) INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:85 check_ruvs for replica dc=example,dc=com:3 (suffix:rid) INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:296 test_clean_restart PASSED, restoring master 4...
Passed suites/replication/cleanallruv_test.py::test_clean_force 30.54
-------------------------------Captured log setup-------------------------------
DEBUG  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:153 Wait a bit before the reset - it is required for the slow machines DEBUG  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:155 -------------- BEGIN RESET of m4 ----------------- INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 90e33c17-9846-41ba-ab64-fd9ee65b41b9 / got description=69ad4562-a776-438d-9b2c-530a990319bf) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect c6acfa8c-9245-4923-b30d-28996228ca45 / got description=90e33c17-9846-41ba-ab64-fd9ee65b41b9) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 3f3afc12-a11e-45f3-be5a-48c45d67dc47 / got description=c6acfa8c-9245-4923-b30d-28996228ca45) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 8d6a1cd7-5457-427d-a33b-3c1c0c90eb14 / got description=3f3afc12-a11e-45f3-be5a-48c45d67dc47) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 0b23e8dd-46a1-4b2a-ba92-9be7c47471f8 / got description=8d6a1cd7-5457-427d-a33b-3c1c0c90eb14) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 734e29cd-3189-48a4-839b-c6e0ac257490 / got description=0b23e8dd-46a1-4b2a-ba92-9be7c47471f8) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect abc724a4-685c-4593-9349-95408d0f8411 / got description=734e29cd-3189-48a4-839b-c6e0ac257490) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect f2cc1d69-edb3-4768-97ca-afea91ca2caf / got description=abc724a4-685c-4593-9349-95408d0f8411) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 70cd56b7-b015-4f39-ba9c-054039646188 / got description=f2cc1d69-edb3-4768-97ca-afea91ca2caf) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 23450790-4989-46b5-bf07-806400ada6ab / got description=70cd56b7-b015-4f39-ba9c-054039646188) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ba8ddea8-3ec4-4f0e-9324-7f222efe90fe / got description=23450790-4989-46b5-bf07-806400ada6ab) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect c6132f80-3855-4080-a7bc-3a5d9f62bfc1 / got description=ba8ddea8-3ec4-4f0e-9324-7f222efe90fe) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working DEBUG  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:181 -------------- FINISH RESET of m4 -----------------
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:322 Running test_clean_force... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:71 test_clean_force: remove all the agreements to master 4... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:340 test_clean: run the cleanAllRUV task... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:350 test_clean_force: check all the masters have been cleaned... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:85 check_ruvs for replica dc=example,dc=com:1 (suffix:rid) INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:85 check_ruvs for replica dc=example,dc=com:2 (suffix:rid) INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:85 check_ruvs for replica dc=example,dc=com:3 (suffix:rid) INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:354 test_clean_force PASSED, restoring master 4...
Passed suites/replication/cleanallruv_test.py::test_abort 7.24
-------------------------------Captured log setup-------------------------------
DEBUG  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:153 Wait a bit before the reset - it is required for the slow machines DEBUG  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:155 -------------- BEGIN RESET of m4 ----------------- INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 3352a891-218d-4897-8c5d-0beba1e657c0 / got description=2ee504da-4400-4aef-9f01-62a8264df49d) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect b5de0f68-de57-4901-b747-80efdeeede98 / got description=3352a891-218d-4897-8c5d-0beba1e657c0) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 480e7e76-ae50-4f90-9f5f-45b66cc05b78 / got description=b5de0f68-de57-4901-b747-80efdeeede98) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 9654434b-cb8c-41e1-800e-daf31d2d2def / got description=480e7e76-ae50-4f90-9f5f-45b66cc05b78) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 4f8fab10-d9b4-4bce-9331-71b2ccf8ee31 / got description=9654434b-cb8c-41e1-800e-daf31d2d2def) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 9a64001e-946b-455c-988b-96024122f95e / got description=4f8fab10-d9b4-4bce-9331-71b2ccf8ee31) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect f7421a10-5549-413e-99f5-8a6f3aff87e4 / got description=9a64001e-946b-455c-988b-96024122f95e) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c727eb6d-b632-467a-84f6-ab79eef22b98 / got description=f7421a10-5549-413e-99f5-8a6f3aff87e4) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 609b83a2-e8d1-4b25-8505-fbff8639e88a / got description=c727eb6d-b632-467a-84f6-ab79eef22b98) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect db0c1573-f217-453b-9f6c-04c8f9f52300 / got description=609b83a2-e8d1-4b25-8505-fbff8639e88a) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 440cd488-67d0-491b-a312-9ce91f6996ff / got description=db0c1573-f217-453b-9f6c-04c8f9f52300) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect c9323b05-c1f3-4ed8-8ee0-36d24ec38c4f / got description=440cd488-67d0-491b-a312-9ce91f6996ff) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working DEBUG  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:181 -------------- FINISH RESET of m4 -----------------
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:376 Running test_abort... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:71 test_abort: remove all the agreements to master 4... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:381 test_abort: stop master 2 to freeze the cleanAllRUV task... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:385 test_abort: add the cleanAllRUV task... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:400 test_abort: check master 1 no longer has a cleanAllRUV task... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:406 test_abort: start master 2 to begin the restore process... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:409 test_abort PASSED, restoring master 4...
Passed suites/replication/cleanallruv_test.py::test_abort_restart 30.50
-------------------------------Captured log setup-------------------------------
DEBUG  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:153 Wait a bit before the reset - it is required for the slow machines DEBUG  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:155 -------------- BEGIN RESET of m4 ----------------- INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect d4dfe996-f327-48da-ba7f-925971ee6f16 / got description=4b09192e-959d-4ebf-96e0-6f2cd475b1cb) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect b07f1e14-fc51-436e-8c0a-e903de00e8ac / got description=d4dfe996-f327-48da-ba7f-925971ee6f16) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 5084b027-5ff8-431f-9016-24cd231c3cba / got description=b07f1e14-fc51-436e-8c0a-e903de00e8ac) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 1de2bb36-230b-4670-8282-4a1ad5564904 / got description=5084b027-5ff8-431f-9016-24cd231c3cba) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect fe119911-bc62-4d95-a1f6-40dea66320a8 / got description=1de2bb36-230b-4670-8282-4a1ad5564904) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect a2f56515-aeeb-438e-b000-9ae703e55fe2 / got description=fe119911-bc62-4d95-a1f6-40dea66320a8) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 2bf0fe34-ab04-4a80-83a3-35349238c6ed / got description=a2f56515-aeeb-438e-b000-9ae703e55fe2) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect da8772b0-087d-4ec3-80bd-412438d84414 / got description=2bf0fe34-ab04-4a80-83a3-35349238c6ed) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 658e7f1d-21a3-4ecb-9e3f-57b88527c708 / got description=da8772b0-087d-4ec3-80bd-412438d84414) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 159115b6-464d-401e-ad0c-15a6d1b5956e / got description=658e7f1d-21a3-4ecb-9e3f-57b88527c708) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 036bdb82-9f20-477e-af9c-76c4f60838c9 / got description=159115b6-464d-401e-ad0c-15a6d1b5956e) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect e7950bf2-3fcc-41a3-8002-d35c2cac255e / got description=036bdb82-9f20-477e-af9c-76c4f60838c9) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working DEBUG  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:181 -------------- FINISH RESET of m4 -----------------
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:441 Running test_abort_restart... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:71 test_abort: remove all the agreements to master 4... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:446 test_abort_restart: stop master 3 to freeze the cleanAllRUV task... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:450 test_abort_restart: add the cleanAllRUV task... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:465 test_abort_abort: check master 1 no longer has a cleanAllRUV task... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:487 test_abort_restart PASSED, restoring master 4...
Passed suites/replication/cleanallruv_test.py::test_abort_certify 36.07
-------------------------------Captured log setup-------------------------------
DEBUG  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:153 Wait a bit before the reset - it is required for the slow machines DEBUG  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:155 -------------- BEGIN RESET of m4 ----------------- INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect d21b62bc-9c05-44a5-bf16-205e89d77311 / got description=f5643744-fb17-4af4-9e48-c57935537451) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect c541b1c2-54eb-49cc-9ef3-d984f4de8b30 / got description=d21b62bc-9c05-44a5-bf16-205e89d77311) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 8bd79a20-e867-4aad-80c7-bdcb20ddcb8b / got description=c541b1c2-54eb-49cc-9ef3-d984f4de8b30) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 85cc5b88-5686-4952-9d41-2da9174802ab / got description=8bd79a20-e867-4aad-80c7-bdcb20ddcb8b) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 8bd01c4b-be51-4b28-b6e4-5345f1008cc7 / got description=85cc5b88-5686-4952-9d41-2da9174802ab) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 8bd01c4b-be51-4b28-b6e4-5345f1008cc7 / got description=85cc5b88-5686-4952-9d41-2da9174802ab) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 07e9b75e-0665-46c8-b6a2-db47adb6c221 / got description=8bd01c4b-be51-4b28-b6e4-5345f1008cc7) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect cc159b76-bb62-4174-a5ab-8641733ab227 / got description=07e9b75e-0665-46c8-b6a2-db47adb6c221) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 2b19bf01-20f4-44c9-80e3-f2121b66a927 / got description=cc159b76-bb62-4174-a5ab-8641733ab227) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 38dc72ce-dc58-4d32-84ac-f0116d9a58f2 / got description=2b19bf01-20f4-44c9-80e3-f2121b66a927) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 6b40cdec-8d4c-4f6f-9be1-d9a0c0f1e0fa / got description=38dc72ce-dc58-4d32-84ac-f0116d9a58f2) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect e8778972-4b41-449e-be6b-bfefcccb47ea / got description=6b40cdec-8d4c-4f6f-9be1-d9a0c0f1e0fa) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect fd6060ec-c557-44de-b413-38db76a81042 / got description=e8778972-4b41-449e-be6b-bfefcccb47ea) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working DEBUG  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:181 -------------- FINISH RESET of m4 -----------------
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:509 Running test_abort_certify... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:71 test_abort_certify: remove all the agreements to master 4... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:515 test_abort_certify: stop master 2 to freeze the cleanAllRUV task... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:519 test_abort_certify: add the cleanAllRUV task... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:531 test_abort_certify: abort the cleanAllRUV task... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:535 test_abort_certify... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:542 test_abort_certify: start master 2 to allow the abort task to finish... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:551 test_abort_certify: check master 1 no longer has a cleanAllRUV task... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:556 test_abort_certify PASSED, restoring master 4...
Passed suites/replication/cleanallruv_test.py::test_stress_clean 44.00
-------------------------------Captured log setup-------------------------------
DEBUG  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:153 Wait a bit before the reset - it is required for the slow machines DEBUG  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:155 -------------- BEGIN RESET of m4 ----------------- INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect aaa30d9c-0fcd-491a-b70d-9c76aca645fe / got description=f9f3fb5a-7f95-4ea9-8a95-6595955b84cd) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect f482522c-5cf0-47aa-a262-123d8762d10f / got description=aaa30d9c-0fcd-491a-b70d-9c76aca645fe) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 11556dbb-a794-4da3-837d-72b5dbb01c77 / got description=f482522c-5cf0-47aa-a262-123d8762d10f) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 335c39f9-0de2-4c5b-8438-156a6a620183 / got description=11556dbb-a794-4da3-837d-72b5dbb01c77) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 335c39f9-0de2-4c5b-8438-156a6a620183 / got description=11556dbb-a794-4da3-837d-72b5dbb01c77) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 335c39f9-0de2-4c5b-8438-156a6a620183 / got description=11556dbb-a794-4da3-837d-72b5dbb01c77) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect cdec0d79-e4a9-4e67-9244-be0ff6982e8c / got description=335c39f9-0de2-4c5b-8438-156a6a620183) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 74777477-9d6a-49e1-b91e-da3eb4da98a8 / got description=cdec0d79-e4a9-4e67-9244-be0ff6982e8c) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 80af2c13-c50d-496a-ae72-e1621de73fcd / got description=74777477-9d6a-49e1-b91e-da3eb4da98a8) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 29245f9f-05ec-4023-bebb-82778581d681 / got description=80af2c13-c50d-496a-ae72-e1621de73fcd) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 257e607d-b88c-4d14-9f93-f268865bb13d / got description=29245f9f-05ec-4023-bebb-82778581d681) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 60404a71-9cd5-49da-bcb3-26469a267ba1 / got description=257e607d-b88c-4d14-9f93-f268865bb13d) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c0da693c-2878-4822-a21e-bfcb39a60d4a / got description=60404a71-9cd5-49da-bcb3-26469a267ba1) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 11c54c6f-0c1b-4ff5-9f07-506925255dc5 / got description=c0da693c-2878-4822-a21e-bfcb39a60d4a) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working DEBUG  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:181 -------------- FINISH RESET of m4 -----------------
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:580 Running test_stress_clean... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:581 test_stress_clean: put all the masters under load... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:598 test_stress_clean: allow some time for replication to get flowing... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:604 test_stress_clean: allow some time for master 4 to push changes out (60 seconds)... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:71 test_stress_clean: remove all the agreements to master 4... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:620 test_stress_clean: wait for all the updates to finish... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:627 test_stress_clean: check if all the replicas have been cleaned... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:85 check_ruvs for replica dc=example,dc=com:1 (suffix:rid) INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:85 check_ruvs for replica dc=example,dc=com:2 (suffix:rid) INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:85 check_ruvs for replica dc=example,dc=com:3 (suffix:rid) INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:631 test_stress_clean: PASSED, restoring master 4... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:634 Sleep for 120 seconds to allow replication to complete... INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 5f125e3f-532b-44d1-800c-10b5314aa062 / got description=11c54c6f-0c1b-4ff5-9f07-506925255dc5) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect c20369b8-2677-4fad-b396-18ef9723cda1 / got description=5f125e3f-532b-44d1-800c-10b5314aa062) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 743b70a9-c2cc-48e1-bac9-039dc9f64d12 / got description=c20369b8-2677-4fad-b396-18ef9723cda1) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 2c3ccc1d-9dcf-4292-9c22-fecb44d50338 / got description=743b70a9-c2cc-48e1-bac9-039dc9f64d12) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 267ed201-bfac-45bf-a50a-1acc9dc7cb0a / got description=2c3ccc1d-9dcf-4292-9c22-fecb44d50338) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 73c3cb75-fc66-4a96-b0d5-833fd6bd7e75 / got description=267ed201-bfac-45bf-a50a-1acc9dc7cb0a) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working
Passed suites/replication/cleanallruv_test.py::test_multiple_tasks_with_force 47.72
-------------------------------Captured log setup-------------------------------
DEBUG  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:153 Wait a bit before the reset - it is required for the slow machines DEBUG  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:155 -------------- BEGIN RESET of m4 ----------------- INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 08f80bd1-2f89-45d8-9f3b-d4c8e56140e1 / got description=c1853225-158f-4961-800c-d423bfb1d31b) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect a0f35365-80c2-48d0-92f0-293d711909f7 / got description=08f80bd1-2f89-45d8-9f3b-d4c8e56140e1) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 7d2693c2-241e-434e-b893-b2b8388a17d1 / got description=a0f35365-80c2-48d0-92f0-293d711909f7) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 2bcbb2cd-b7d7-4309-aa39-26ebfebbab2c / got description=7d2693c2-241e-434e-b893-b2b8388a17d1) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 7d9a47e8-3079-4893-8cbd-42072165de0c / got description=2bcbb2cd-b7d7-4309-aa39-26ebfebbab2c) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 166913b0-8d00-412c-8255-74cc17434371 / got description=7d9a47e8-3079-4893-8cbd-42072165de0c) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 90793aa5-855c-4e51-b9ab-11c9f15e2094 / got description=166913b0-8d00-412c-8255-74cc17434371) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect e8dc6fc4-8949-4316-8c2d-6790c344a24c / got description=90793aa5-855c-4e51-b9ab-11c9f15e2094) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 6510f9ec-b642-487a-b256-b0a5b4603f24 / got description=e8dc6fc4-8949-4316-8c2d-6790c344a24c) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect b379328c-04f2-4ca5-b8a7-f38c614afe53 / got description=6510f9ec-b642-487a-b256-b0a5b4603f24) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 63664cf4-53c7-4820-9b6e-1b66a4045f6b / got description=b379328c-04f2-4ca5-b8a7-f38c614afe53) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 93e2e981-7a01-43cc-926c-7cb340c3e14d / got description=63664cf4-53c7-4820-9b6e-1b66a4045f6b) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working DEBUG  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:181 -------------- FINISH RESET of m4 -----------------
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:671 Running test_multiple_tasks_with_force... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:71 test_multiple_tasks_with_force: remove all the agreements to master 4... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:690 test_multiple_tasks_with_force: run the cleanAllRUV task with "force" on... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:699 test_multiple_tasks_with_force: run the cleanAllRUV task with "force" off... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:718 test_multiple_tasks_with_force: check all the masters have been cleaned... INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:85 check_ruvs for replica dc=example,dc=com:1 (suffix:rid) INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:85 check_ruvs for replica dc=example,dc=com:2 (suffix:rid) INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:85 check_ruvs for replica dc=example,dc=com:3 (suffix:rid) INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:722 test_abort: check master 1 no longer has a cleanAllRUV task...
Passed suites/replication/cleanallruv_test.py::test_clean_shutdown_crash 46.90
-----------------------------Captured stdout setup------------------------------
Instance slapd-master1 removed. Instance slapd-master2 removed.
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 2c1eb8fc-a3c1-42aa-bd35-04c8a5d99a5f / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect ffd42010-ff07-4142-8bf4-f9f38ef7050a / got description=2c1eb8fc-a3c1-42aa-bd35-04c8a5d99a5f) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:771 Enabling TLS INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:774 Creating replication dns INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:782 Changing auth type INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:803 Stopping master2 INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:806 Run the cleanAllRUV task INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:817 Check if master1 crashed INFO  tests.suites.replication.cleanallruv_test:cleanallruv_test.py:820 Repeat
Passed suites/replication/conflict_resolve_test.py::TestTwoMasters::test_add_modrdn 17.88
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect dd99217a-a20f-4820-af17-df5678c7f395 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect ad9aa7bb-66c1-44d2-b4a0-4d8b7c4d2d31 / got description=dd99217a-a20f-4820-af17-df5678c7f395) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 019eac9a-9aeb-4a93-9518-9a482bc84185 / got description=ad9aa7bb-66c1-44d2-b4a0-4d8b7c4d2d31) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 019eac9a-9aeb-4a93-9518-9a482bc84185 / got description=ad9aa7bb-66c1-44d2-b4a0-4d8b7c4d2d31) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 019eac9a-9aeb-4a93-9518-9a482bc84185 / got description=ad9aa7bb-66c1-44d2-b4a0-4d8b7c4d2d31) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 019eac9a-9aeb-4a93-9518-9a482bc84185 / got description=ad9aa7bb-66c1-44d2-b4a0-4d8b7c4d2d31) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:210 Test create - modrdn INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 951af80b-8ba5-44df-b5fa-c90de3e9a71e / got description=019eac9a-9aeb-4a93-9518-9a482bc84185) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 951af80b-8ba5-44df-b5fa-c90de3e9a71e / got description=019eac9a-9aeb-4a93-9518-9a482bc84185) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 0c81e664-fd15-4c5b-a712-42ef1cfd8af9 / got description=951af80b-8ba5-44df-b5fa-c90de3e9a71e) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working
Passed suites/replication/conflict_resolve_test.py::TestTwoMasters::test_conflict_attribute_multi_valued 10.82
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:833 Check foo1 is on M1 INFO  tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:833 Check foo2 is on M1 INFO  tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:839 Check foo1 is on M1 INFO  tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:839 Check foo2 is on M1 INFO  tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:844 Check M1.uid foo1 is also on M2 INFO  tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:844 Check M1.uid foo2 is also on M2 INFO  tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:848 Check M2.uid foo1 is also on M1 INFO  tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:848 Check M2.uid foo2 is also on M1
Passed suites/replication/conflict_resolve_test.py::TestTwoMasters::test_conflict_attribute_single_valued 12.71
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:921 Check foo1 is on M1 INFO  tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:927 Check foo1 is on M2 INFO  tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:932 Check M1.uid foo1 is also on M2 INFO  tests.suites.replication.conflict_resolve_test:conflict_resolve_test.py:936 Check M2.uid foo1 is also on M1
Passed suites/replication/encryption_cl5_test.py::test_algorithm_unhashed 43.78
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 91a8306e-7a90-4c7f-85e2-f60dea19ad46 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 0b2da894-acdd-40b1-ad91-458cfcf61855 / got description=91a8306e-7a90-4c7f-85e2-f60dea19ad46) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.replica:replica.py:2515 Retry: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 is NOT working (expect c9b85f3b-f29a-4915-89cb-430eac2d40ae / got description=0b2da894-acdd-40b1-ad91-458cfcf61855) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 is working
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:47 Configuring changelog encryption:master1 for: AES INFO  tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:64 Running dbscan -f to check unhashed#user#password attr INFO  lib389:__init__.py:3073 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master1/db/userRoot/replication_changelog.db'] INFO  tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:64 Running dbscan -f to check unhashed#user#password attr INFO  lib389:__init__.py:3073 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master2/db/userRoot/replication_changelog.db'] INFO  tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:64 Running dbscan -f to check unhashed#user#password attr INFO  lib389:__init__.py:3073 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master1/db/userRoot/replication_changelog.db'] INFO  tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:64 Running dbscan -f to check unhashed#user#password attr INFO  lib389:__init__.py:3073 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master2/db/userRoot/replication_changelog.db'] INFO  tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:64 Running dbscan -f to check unhashed#user#password attr INFO  lib389:__init__.py:3073 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master1/db/userRoot/replication_changelog.db'] INFO  tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:64 Running dbscan -f to check unhashed#user#password attr INFO  lib389:__init__.py:3073 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master2/db/userRoot/replication_changelog.db'] INFO  tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:64 Running dbscan -f to check unhashed#user#password attr INFO  lib389:__init__.py:3073 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master1/db/userRoot/replication_changelog.db'] INFO  tests.suites.replication.encryption_cl5_test:encryption_cl5_test.py:64 Running dbscan -f to check unhashed#user#password attr INFO  lib389:__init__.py:3073 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-master2/db/userRoot/replication_changelog.db']
Passed suites/replication/multiple_changelogs_test.py::test_multiple_changelogs 12.17
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39201, 'ldap-secureport': 63901, 'server-id': 'consumer1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:175 Joining consumer consumer1 from master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect fcf3694d-6cdc-4c16-8278-ee3ff497ba89 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working INFO  lib389.replica:replica.py:2285 SUCCESS: joined consumer from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 INFO  lib389.topologies:topologies.py:180 Ensuring consumer consumer1 from master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 already exists
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect a7125416-96da-49c5-ba6e-a3cb10f05b44 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working INFO  lib389.replica:replica.py:2285 SUCCESS: joined consumer from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201
Passed suites/replication/multiple_changelogs_test.py::test_multiple_changelogs_export_import 10.07
No log output captured.
Passed suites/replication/regression_test.py::test_special_symbol_replica_agreement 1.06
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38902, 'ldap-secureport': 63602, 'server-id': 'standalone2', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  lib389:backend.py:80 List backend with suffix=dc=example,dc=com INFO  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}AAAIAM6eI6VTYpOn0FpXK8nqRbEKj+1EqkPOGlUNK+gX4TdbTDP74S4v5xhnhLAcpil2Ynp/jDpo4fnd1rdmW7DgvAGY/s8YBlIXOOpv0fbNlL7TKo7OGXdf4hJsK4Ugf1yeZZPceleLTk2k4SU4/27+sF3zS3abJUO/pF3nhkYQtrp4uMIybZk07iCUSzAL4aR+4pBAchFZHDAT/+ZTUgfwmWChPXZ70YKlEPNJVDqfIbUGqMzpC3Gud6phESdAdmkDu7jntx9xYKQw0C8dhLZJfnk3ERmSfZt8pEqa21Fr3NbeWAUaEXKYdr2a34SPMj5XCXeBZ458who3ozf+ILux8WRcBXr1Iyd1BbyLA70dZHo6DxBkh0+SHcgKd0O0LHIrsuX//edXeJ8XAtyeDkB/Z1YK7Gc0435thVwid6p38TKO INFO  lib389:agreement.py:1169 Starting total init cn=-3meTo_ci-vm-10-0-138-103.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.41
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 4bef0db1-5349-4204-ba7c-0ecdbdf323d4 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 392a1318-23b5-4495-ad0e-89bb1e14783f / got description=4bef0db1-5349-4204-ba7c-0ecdbdf323d4) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  tests.suites.replication.regression_test:regression_test.py:141 Adding a test entry user
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.regression_test:regression_test.py:268 Deleting entry uid=testuser,ou=People,dc=example,dc=com from master1 INFO  tests.suites.replication.regression_test:regression_test.py:271 Deleting entry uid=testuser,ou=People,dc=example,dc=com from master2 INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 694e2ee1-7a4a-49ee-be2e-f4311e60c33a / got description=392a1318-23b5-4495-ad0e-89bb1e14783f) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 0c471fef-7593-4d39-a64e-340a9fbcfb68 / got description=694e2ee1-7a4a-49ee-be2e-f4311e60c33a) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working
Passed suites/replication/regression_test.py::test_repl_modrdn 6.51
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.regression_test:regression_test.py:314 Add test entries - Add 3 OUs and 2 same users under 2 different OUs INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 383408d8-2d59-4a99-96a7-f41d0042a2a3 / got description=0c471fef-7593-4d39-a64e-340a9fbcfb68) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 49ff6468-8a43-48ef-ba11-5e1ff3fd867f / got description=383408d8-2d59-4a99-96a7-f41d0042a2a3) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  tests.suites.replication.regression_test:regression_test.py:338 Stop Replication INFO  tests.suites.replication.regression_test:regression_test.py:341 Apply modrdn to M1 - move test user from OU A -> C INFO  tests.suites.replication.regression_test:regression_test.py:344 Apply modrdn on M2 - move test user from OU B -> C INFO  tests.suites.replication.regression_test:regression_test.py:347 Start Replication INFO  tests.suites.replication.regression_test:regression_test.py:350 Wait for sometime for repl to resume INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 562d4e58-af9b-4029-9991-fffa45de3cc3 / got description=49ff6468-8a43-48ef-ba11-5e1ff3fd867f) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 623406fe-e31a-4acc-8f56-a1f9be23b416 / got description=562d4e58-af9b-4029-9991-fffa45de3cc3) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  tests.suites.replication.regression_test:regression_test.py:354 Check that there should be only one test entry under ou=C on both masters INFO  tests.suites.replication.regression_test:regression_test.py:361 Check that the replication is working fine both ways, M1 <-> M2 INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect fbd1e453-9c40-4069-ac04-9fba3a4ad618 / got description=623406fe-e31a-4acc-8f56-a1f9be23b416) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect fe98acb1-48dc-4605-a732-7528cd9bed1e / got description=fbd1e453-9c40-4069-ac04-9fba3a4ad618) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working
Passed suites/replication/regression_test.py::test_password_repl_error 12.35
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.replication.regression_test:regression_test.py:141 Adding a test entry user
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.regression_test:regression_test.py:385 Clean the error log INFO  tests.suites.replication.regression_test:regression_test.py:388 Set replication loglevel INFO  tests.suites.replication.regression_test:regression_test.py:391 Modifying entry uid=testuser,ou=People,dc=example,dc=com - change userpassword on master 1 INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect daa61133-711f-493a-9491-f28e5ec88e4e / got description=fe98acb1-48dc-4605-a732-7528cd9bed1e) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  tests.suites.replication.regression_test:regression_test.py:398 Restart the servers to flush the logs INFO  tests.suites.replication.regression_test:regression_test.py:403 Check that password works on master 2 INFO  tests.suites.replication.regression_test:regression_test.py:407 Check the error log for the error with uid=testuser,ou=People,dc=example,dc=com INFO  tests.suites.replication.regression_test:regression_test.py:410 Set the default loglevel
Passed suites/replication/regression_test.py::test_invalid_agmt 2.04
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ecf6f337-6896-4429-982e-fd90a489c79c / got description=daa61133-711f-493a-9491-f28e5ec88e4e) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 248e7d82-febc-4e47-a231-9fc6e8b45831 / got description=ecf6f337-6896-4429-982e-fd90a489c79c) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working
Passed suites/replication/regression_test.py::test_fetch_bindDnGroup 18.22
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect fe59420f-3906-4c88-8c06-062d0fc367b7 / got description=248e7d82-febc-4e47-a231-9fc6e8b45831) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working
Passed suites/replication/regression_test.py::test_plugin_bind_dn_tracking_and_replication 0.71
No log output captured.
Passed suites/replication/regression_test.py::test_cleanallruv_repl 116.32
-----------------------------Captured stdout setup------------------------------
Instance slapd-master1 removed. Instance slapd-master2 removed.
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39003, 'ldap-secureport': 63703, 'server-id': 'master3', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect d63ee7f6-430b-40d1-819b-eb830a38d3d5 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 2f8b3df4-9e4e-40c3-8c3b-a781999373a3 / got description=d63ee7f6-430b-40d1-819b-eb830a38d3d5) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:162 Joining master master3 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect b99bacd8-6df1-4d0f-9b4f-4beceae102e5 / got description=2f8b3df4-9e4e-40c3-8c3b-a781999373a3) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect b05e2c6f-14e0-4694-9d13-e94d630cbacb / got description=b99bacd8-6df1-4d0f-9b4f-4beceae102e5) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master3 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master3 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master2 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.regression_test:regression_test.py:680 Change the error log levels for all masters INFO  tests.suites.replication.regression_test:regression_test.py:684 Get the replication agreements for all 3 masters INFO  tests.suites.replication.regression_test:regression_test.py:689 Modify nsslapd-changelogmaxage=30 and nsslapd-changelogtrim-interval=5 for M1 and M2 INFO  tests.suites.replication.regression_test:regression_test.py:712 Add test users to 3 masters INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:tasks.py:1400 cleanAllRUV task (task-10242020_214548) completed successfully INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config
Passed suites/replication/regression_test.py::test_online_reinit_may_hang 18.67
-----------------------------Captured stdout setup------------------------------
Instance slapd-master1 removed. Instance slapd-master2 removed.
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect f8859a95-81d2-4a18-a434-a3039ad4daa3 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 32927633-32fa-42a6-a8b3-e73f6c1e9d00 / got description=f8859a95-81d2-4a18-a434-a3039ad4daa3) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
------------------------------Captured stderr call------------------------------
ldiffile: /var/lib/dirsrv/slapd-master1/ldif/master1.ldif
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1d3d2321-4a36-45d4-8d12-f176a2e53d99 / got description=32927633-32fa-42a6-a8b3-e73f6c1e9d00) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 3f59b8c3-6a26-4e7d-9fd5-4c16d2b947c5 / got description=1d3d2321-4a36-45d4-8d12-f176a2e53d99) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working
Passed suites/replication/regression_test.py::test_moving_entry_make_online_init_fail 1.38
-----------------------------Captured stdout setup------------------------------
Instance slapd-master1 removed. Instance slapd-master2 removed.
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect cdab95c9-a29f-45e5-9d2d-b4d6616b589b / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 7f9bea4c-5ff2-4b79-9a63-540a782fe24d / got description=cdab95c9-a29f-45e5-9d2d-b4d6616b589b) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.regression_test:regression_test.py:862 Generating DIT_0 INFO  tests.suites.replication.regression_test:regression_test.py:865 Created entry: ou=OU0, dc=example, dc=com INFO  tests.suites.replication.regression_test:regression_test.py:870 Created entry: ou=OU0, ou=OU0, dc=example, dc=com INFO  tests.suites.replication.regression_test:regression_test.py:191 Create password policy for subtree ou=OU0,dc=example,dc=com INFO  tests.suites.replication.regression_test:regression_test.py:879 Turning tuser0 into a tombstone entry INFO  tests.suites.replication.regression_test:regression_test.py:879 Turning tuser2 into a tombstone entry INFO  tests.suites.replication.regression_test:regression_test.py:879 Turning tuser4 into a tombstone entry INFO  tests.suites.replication.regression_test:regression_test.py:879 Turning tuser6 into a tombstone entry INFO  tests.suites.replication.regression_test:regression_test.py:879 Turning tuser8 into a tombstone entry INFO  tests.suites.replication.regression_test:regression_test.py:882 dc=example,dc=com => ou=OU0,dc=example,dc=com => ou=OU0,ou=OU0,dc=example,dc=com => 10 USERS INFO  tests.suites.replication.regression_test:regression_test.py:884 Generating DIT_1 INFO  tests.suites.replication.regression_test:regression_test.py:887 Created entry: ou=OU1,dc=example,dc=com INFO  tests.suites.replication.regression_test:regression_test.py:891 Created entry: ou=OU1, ou=OU1, dc=example, dc=com INFO  tests.suites.replication.regression_test:regression_test.py:191 Create password policy for subtree ou=OU1,dc=example,dc=com INFO  tests.suites.replication.regression_test:regression_test.py:895 Moving ou=OU0,ou=OU0,dc=example,dc=com to DIT_1 INFO  tests.suites.replication.regression_test:regression_test.py:898 Moving ou=OU0,dc=example,dc=com to DIT_1 INFO  tests.suites.replication.regression_test:regression_test.py:905 Moving USERS to ou=OU0,ou=OU0,ou=OU1,dc=example,dc=com INFO  tests.suites.replication.regression_test:regression_test.py:910 dc=example,dc=com => ou=OU1,dc=example,dc=com => ou=OU0,ou=OU1,dc=example,dc=com => ou=OU0,ou=OU0,ou=OU1,dc=example,dc=com => 10 USERS INFO  tests.suites.replication.regression_test:regression_test.py:912 Run Initialization. INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1ee6b5ab-98fd-41db-bf9d-df34e1bbacef / got description=7f9bea4c-5ff2-4b79-9a63-540a782fe24d) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  tests.suites.replication.regression_test:regression_test.py:921 m1entry count - 42 INFO  tests.suites.replication.regression_test:regression_test.py:922 m2entry count - 42
Passed suites/replication/repl_agmt_bootstrap_test.py::test_repl_agmt_bootstrap_credentials 15.42
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 8f818452-7ca3-48b4-af45-3774aee2cc82 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 102fad6e-c0cd-42e0-a02b-e7a45ef28e24 / got description=8f818452-7ca3-48b4-af45-3774aee2cc82) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
Passed suites/replication/replica_config_test.py::test_replica_num_add[nsDS5ReplicaType--1-4-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] 0.86
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/replication/replica_config_test.py::test_replica_num_add[nsDS5Flags--1-2-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] 0.14
No log output captured.
Passed suites/replication/replica_config_test.py::test_replica_num_add[nsDS5ReplicaId-0-65536-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] 0.09
No log output captured.
Passed suites/replication/replica_config_test.py::test_replica_num_add[nsds5ReplicaPurgeDelay--2-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] 0.10
No log output captured.
Passed suites/replication/replica_config_test.py::test_replica_num_add[nsDS5ReplicaBindDnGroupCheckInterval--2-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] 0.09
No log output captured.
Passed suites/replication/replica_config_test.py::test_replica_num_add[nsds5ReplicaTombstonePurgeInterval--2-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] 0.09
No log output captured.
Passed suites/replication/replica_config_test.py::test_replica_num_add[nsds5ReplicaProtocolTimeout--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] 0.33
No log output captured.
Passed suites/replication/replica_config_test.py::test_replica_num_add[nsds5ReplicaReleaseTimeout--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] 0.08
No log output captured.
Passed suites/replication/replica_config_test.py::test_replica_num_add[nsds5ReplicaBackoffMin-0-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-3] 0.08
No log output captured.
Passed suites/replication/replica_config_test.py::test_replica_num_add[nsds5ReplicaBackoffMax-0-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] 0.08
No log output captured.
Passed suites/replication/replica_config_test.py::test_replica_num_modify[nsDS5Flags--1-2-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] 0.06
No log output captured.
Passed suites/replication/replica_config_test.py::test_replica_num_modify[nsds5ReplicaPurgeDelay--2-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] 0.07
No log output captured.
Passed suites/replication/replica_config_test.py::test_replica_num_modify[nsDS5ReplicaBindDnGroupCheckInterval--2-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] 0.31
No log output captured.
Passed suites/replication/replica_config_test.py::test_replica_num_modify[nsds5ReplicaTombstonePurgeInterval--2-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] 0.09
No log output captured.
Passed suites/replication/replica_config_test.py::test_replica_num_modify[nsds5ReplicaProtocolTimeout--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] 0.07
No log output captured.
Passed suites/replication/replica_config_test.py::test_replica_num_modify[nsds5ReplicaReleaseTimeout--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-1] 0.07
No log output captured.
Passed suites/replication/replica_config_test.py::test_replica_num_modify[nsds5ReplicaBackoffMin-0-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-3] 0.09
No log output captured.
Passed suites/replication/replica_config_test.py::test_replica_num_modify[nsds5ReplicaBackoffMax-0-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] 0.08
No log output captured.
Passed suites/replication/replica_config_test.py::test_same_attr_yields_same_return_code 0.18
No log output captured.
Passed suites/replication/ruvstore_test.py::test_ruv_entry_backup 8.05
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect f387ac06-2918-41b9-b8ec-c4747d5985b4 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 60495251-52e5-446d-9b05-72414ef08ca3 / got description=f387ac06-2918-41b9-b8ec-c4747d5985b4) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
------------------------------Captured stderr call------------------------------
ldiffile: /var/lib/dirsrv/slapd-master1/ldif/master1.ldif
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.ruvstore_test:ruvstore_test.py:102 LDAP operations add, modify, modrdn and delete INFO  tests.suites.replication.ruvstore_test:ruvstore_test.py:58 Adding user to master1 INFO  tests.suites.replication.ruvstore_test:ruvstore_test.py:61 Modify RDN of user: uid=rep2lusr,ou=People,dc=example,dc=com INFO  tests.suites.replication.ruvstore_test:ruvstore_test.py:68 Deleting user: uid=ruvusr,ou=People,dc=example,dc=com INFO  tests.suites.replication.ruvstore_test:ruvstore_test.py:106 Stopping the server instance to run db2ldif task to create backup file INFO  tests.suites.replication.ruvstore_test:ruvstore_test.py:110 Starting the server after backup INFO  tests.suites.replication.ruvstore_test:ruvstore_test.py:113 Checking if backup file contains RUV and required attributes INFO  tests.suites.replication.ruvstore_test:ruvstore_test.py:51 Attribute found in RUV: objectClass INFO  tests.suites.replication.ruvstore_test:ruvstore_test.py:51 Attribute found in RUV: nsUniqueId INFO  tests.suites.replication.ruvstore_test:ruvstore_test.py:51 Attribute found in RUV: nsds50ruv INFO  tests.suites.replication.ruvstore_test:ruvstore_test.py:51 Attribute found in RUV: nsruvReplicaLastModified
Passed suites/replication/series_of_repl_bugs_test.py::test_deletions_are_not_replicated 10.04
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 2f89fa19-e498-4cd5-89f0-38448c69d198 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 642c052b-36cb-4744-ad67-bf050e07b3bc / got description=2f89fa19-e498-4cd5-89f0-38448c69d198) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 7b7e6a2b-679f-4e1e-81cc-44790b5a8fd9 / got description=642c052b-36cb-4744-ad67-bf050e07b3bc) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect d8a6906e-a79e-4ffe-a747-0bbd2b8c98e4 / got description=7b7e6a2b-679f-4e1e-81cc-44790b5a8fd9) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working
Passed suites/replication/series_of_repl_bugs_test.py::test_error_20 1.05
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 4d55c9b1-e7ca-4429-ab89-982a384570fa / got description=d8a6906e-a79e-4ffe-a747-0bbd2b8c98e4) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working
Passed suites/replication/series_of_repl_bugs_test.py::test_segfaults 0.04
No log output captured.
Passed suites/replication/series_of_repl_bugs_test.py::test_adding_deleting 0.08
No log output captured.
Passed suites/replication/series_of_repl_bugs_test.py::test_deleting_twice 2.09
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect b4d33136-bea4-466b-bb12-0e519e81aaf2 / got description=4d55c9b1-e7ca-4429-ab89-982a384570fa) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 1634334f-dacd-4635-828b-bf8a0688b2d4 / got description=b4d33136-bea4-466b-bb12-0e519e81aaf2) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working
Passed suites/replication/series_of_repl_bugs_test.py::test_rename_entry 2.27
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 5bb89fc2-68d5-45fc-9813-2d42811f5cc7 / got description=1634334f-dacd-4635-828b-bf8a0688b2d4) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect e8ac02f6-f5d4-4d88-928a-c7b112a9aa3a / got description=5bb89fc2-68d5-45fc-9813-2d42811f5cc7) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working
Passed suites/replication/series_of_repl_bugs_test.py::test_userpassword_attribute 3.35
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 31d86477-9484-4fee-b122-a2c7ccc19fdc / got description=e8ac02f6-f5d4-4d88-928a-c7b112a9aa3a) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 5379f553-625a-44ee-8c73-a7617701eb93 / got description=31d86477-9484-4fee-b122-a2c7ccc19fdc) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working
Passed suites/replication/series_of_repl_bugs_test.py::test_tombstone_modrdn 0.06
No log output captured.
Passed suites/replication/single_master_test.py::test_mail_attr_repl 13.88
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39201, 'ldap-secureport': 63901, 'server-id': 'consumer1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:175 Joining consumer consumer1 from master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 440a7242-67fe-499d-8a87-8fe84f9dbf27 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working INFO  lib389.replica:replica.py:2285 SUCCESS: joined consumer from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 INFO  lib389.topologies:topologies.py:180 Ensuring consumer consumer1 from master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 already exists
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.single_master_test:single_master_test.py:67 Check that replication is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 43598a9f-6ec5-492b-b57c-8058354cb9c9 / got description=440a7242-67fe-499d-8a87-8fe84f9dbf27) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working INFO  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 INFO  tests.suites.replication.single_master_test:single_master_test.py:87 Remove 'mail' attr from master INFO  tests.suites.replication.single_master_test:single_master_test.py:90 Wait for the replication to happen INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect f64c4ed3-9b0d-4d1a-b00a-2d88f997c464 / got description=43598a9f-6ec5-492b-b57c-8058354cb9c9) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect f64c4ed3-9b0d-4d1a-b00a-2d88f997c464 / got description=43598a9f-6ec5-492b-b57c-8058354cb9c9) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect f64c4ed3-9b0d-4d1a-b00a-2d88f997c464 / got description=43598a9f-6ec5-492b-b57c-8058354cb9c9) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect f64c4ed3-9b0d-4d1a-b00a-2d88f997c464 / got description=43598a9f-6ec5-492b-b57c-8058354cb9c9) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working INFO  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 INFO  tests.suites.replication.single_master_test:single_master_test.py:98 Make a search for mail attribute in attempt to crash server INFO  tests.suites.replication.single_master_test:single_master_test.py:101 Make sure that server hasn't crashed INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 27ab3a96-8b2c-4473-b0df-1551e885385c / got description=f64c4ed3-9b0d-4d1a-b00a-2d88f997c464) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 27ab3a96-8b2c-4473-b0df-1551e885385c / got description=f64c4ed3-9b0d-4d1a-b00a-2d88f997c464) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 27ab3a96-8b2c-4473-b0df-1551e885385c / got description=f64c4ed3-9b0d-4d1a-b00a-2d88f997c464) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 27ab3a96-8b2c-4473-b0df-1551e885385c / got description=f64c4ed3-9b0d-4d1a-b00a-2d88f997c464) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working
Passed suites/replication/single_master_test.py::test_lastupdate_attr_before_init 1.14
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38902, 'ldap-secureport': 63602, 'server-id': 'standalone2', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:38901 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:38902 is was created
Passed suites/replication/tls_client_auth_repl_test.py::test_ssl_transport 8.12
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 6952c313-1623-4c32-93b2-b03e3a08e5c7 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect e46f7e2e-abea-4c25-8af3-4aafb9565a76 / got description=6952c313-1623-4c32-93b2-b03e3a08e5c7) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.replica:replica.py:2515 Retry: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 is NOT working (expect 95ca2660-b150-429e-97ea-76c481ededf7 / got description=e46f7e2e-abea-4c25-8af3-4aafb9565a76) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 is NOT working (expect 683f2049-690f-4d05-b803-18c2090d8cb2 / got description=95ca2660-b150-429e-97ea-76c481ededf7) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 is NOT working (expect d4a7b8d2-f368-440c-91c1-2acb391b475b / got description=683f2049-690f-4d05-b803-18c2090d8cb2) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 is working
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2515 Retry: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 is NOT working (expect 3459ff91-137d-4b38-bdea-4cf23a8b7043 / got description=d4a7b8d2-f368-440c-91c1-2acb391b475b) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 is NOT working (expect dcaa377c-cf58-4693-a8f0-50086b193114 / got description=3459ff91-137d-4b38-bdea-4cf23a8b7043) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 is NOT working (expect 077da112-c2ad-4560-9f53-79f296efbf08 / got description=dcaa377c-cf58-4693-a8f0-50086b193114) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 is NOT working (expect ace5a8ae-0a9e-4aeb-b189-b512b153643f / got description=077da112-c2ad-4560-9f53-79f296efbf08) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 is NOT working (expect 352199b1-149b-47c6-80d1-61dd2b010d67 / got description=ace5a8ae-0a9e-4aeb-b189-b512b153643f) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 is NOT working (expect a9df80c3-b097-48a0-aa1a-76442fbb44d7 / got description=352199b1-149b-47c6-80d1-61dd2b010d67) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 is NOT working (expect 53aa7774-21e1-432e-a5ea-94e188860a6b / got description=a9df80c3-b097-48a0-aa1a-76442fbb44d7) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 is NOT working (expect c8a7e4ca-2dce-4e72-b90a-9c4be4c6d191 / got description=53aa7774-21e1-432e-a5ea-94e188860a6b) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 is working
Passed suites/replication/tls_client_auth_repl_test.py::test_extract_pemfiles 4.10
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.tls_client_auth_repl_test:tls_client_auth_repl_test.py:168 Check that nsslapd-extract-pemfiles is on INFO  tests.suites.replication.tls_client_auth_repl_test:tls_client_auth_repl_test.py:172 Set nsslapd-extract-pemfiles = '{}' and check replication works) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 is NOT working (expect ecd58984-bc17-4393-b689-9d9dcc17cb02 / got description=c8a7e4ca-2dce-4e72-b90a-9c4be4c6d191) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 is NOT working (expect 7f3e5ace-5988-43a6-aeeb-4cf4e68aad2f / got description=ecd58984-bc17-4393-b689-9d9dcc17cb02) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 is working INFO  tests.suites.replication.tls_client_auth_repl_test:tls_client_auth_repl_test.py:172 Set nsslapd-extract-pemfiles = '{}' and check replication works) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 is NOT working (expect dec11bb4-03e1-439f-9a5a-ea0d7acf9e21 / got description=7f3e5ace-5988-43a6-aeeb-4cf4e68aad2f) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 is NOT working (expect 4183699c-5af2-4539-9255-2af8e328a73e / got description=dec11bb4-03e1-439f-9a5a-ea0d7acf9e21) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 is working
Passed suites/replication/tombstone_fixup_test.py::test_precise_tombstone_purging 23.49
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology.
-------------------------------Captured log call--------------------------------
INFO  lib389:tasks.py:567 Export task export_10242020_215113 for file /var/lib/dirsrv/slapd-master1/ldif/export.ldif completed successfully INFO  lib389.utils:tombstone_fixup_test.py:77 Import replication LDIF file... INFO  lib389:tasks.py:498 Import task import_10242020_215116 for file /var/lib/dirsrv/slapd-master1/ldif/export.ldif completed successfully INFO  lib389:tasks.py:937 tombstone fixup task fixupTombstone_10242020_215119 for backend userRoot completed successfully INFO  lib389:tasks.py:937 tombstone fixup task fixupTombstone_10242020_215122 for backend userRoot completed successfully INFO  lib389.utils:tombstone_fixup_test.py:116 Wait for tombstone purge interval to pass... INFO  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.34
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology.
-------------------------------Captured log call--------------------------------
INFO  Tombstone:tombstone.py:165 Reviving nsuniqueid=a07cb487-166411eb-b304cb85-8b0fcad9,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-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 5acec9a8-738a-4c52-b242-349ca2926dd1 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect d01f223b-2ef8-471a-b05b-d1838acb98b8 / got description=5acec9a8-738a-4c52-b242-349ca2926dd1) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.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.03
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:63 Add 100 nested entries under replicated suffix on master1 INFO  tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:71 Delete created entries
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:170 Set Replication Debugging loglevel for the errorlog INFO  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 INFO  tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:201 Take the most common timestamp and assert it has appeared in the range from 4 to 11 times DEBUG  tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:204 4 <= 10 <= 11
Passed suites/replication/wait_for_async_feature_test.py::test_behavior_with_value[waitfor_async_attr1] 20.08
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:63 Add 100 nested entries under replicated suffix on master1 INFO  tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:71 Delete created entries
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:170 Set Replication Debugging loglevel for the errorlog INFO  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 INFO  tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:201 Take the most common timestamp and assert it has appeared in the range from 0 to 2 times DEBUG  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.07
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:63 Add 100 nested entries under replicated suffix on master1 INFO  tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:71 Delete created entries
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:170 Set Replication Debugging loglevel for the errorlog INFO  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 INFO  tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:201 Take the most common timestamp and assert it has appeared in the range from 4 to 11 times DEBUG  tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:204 4 <= 6 <= 11
Passed suites/replication/wait_for_async_feature_test.py::test_behavior_with_value[waitfor_async_attr3] 20.11
-------------------------------Captured log setup-------------------------------
INFO  tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:63 Add 100 nested entries under replicated suffix on master1 INFO  tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:71 Delete created entries
-------------------------------Captured log call--------------------------------
INFO  tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:170 Set Replication Debugging loglevel for the errorlog INFO  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 INFO  tests.suites.replication.wait_for_async_feature_test:wait_for_async_feature_test.py:201 Take the most common timestamp and assert it has appeared in the range from 4 to 11 times DEBUG  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 0.04
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.resource_limits.fdlimits_test:fdlimits_test.py:69 Test PASSED
Passed suites/rewriters/adfilter_test.py::test_adfilter_objectCategory 5.27
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/rewriters/basic_test.py::test_rewriters_container 0.00
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/rewriters/basic_test.py::test_foo_filter_rewriter 4.51
No log output captured.
Passed suites/roles/basic_test.py::test_filterrole 0.27
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/roles/basic_test.py::test_managedrole 0.17
No log output captured.
Passed suites/roles/basic_test.py::test_nestedrole 0.23
No log output captured.
Passed suites/sasl/allowed_mechs_test.py::test_basic_feature 36.82
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
------------------------------Captured stdout call------------------------------
['EXTERNAL', 'GSS-SPNEGO', 'GSSAPI', 'DIGEST-MD5', 'CRAM-MD5', 'LOGIN', 'PLAIN', 'ANONYMOUS']
-------------------------------Captured log call--------------------------------
INFO  lib389:allowed_mechs_test.py:75 Test we have some of the default mechanisms INFO  lib389:allowed_mechs_test.py:83 Edit mechanisms to allow just PLAIN INFO  lib389:allowed_mechs_test.py:91 Restart server and make sure we still have correct allowed mechs INFO  lib389:allowed_mechs_test.py:100 Edit mechanisms to allow just PLAIN and EXTERNAL INFO  lib389:allowed_mechs_test.py:108 Edit mechanisms to allow just PLAIN and GSSAPI INFO  lib389:allowed_mechs_test.py:126 Edit mechanisms to allow just PLAIN, GSSAPI, and ANONYMOUS INFO  lib389:allowed_mechs_test.py:146 Edit mechanisms to allow just PLAIN and ANONYMOUS INFO  lib389:allowed_mechs_test.py:165 Reset allowed mechaisms INFO  lib389:allowed_mechs_test.py:169 Check that we have the original set of mechanisms INFO  lib389:allowed_mechs_test.py:174 Check that we have the original set of mechanisms after a restart
Passed suites/sasl/allowed_mechs_test.py::test_config_set_few_mechs 0.01
-------------------------------Captured log call--------------------------------
INFO  lib389:allowed_mechs_test.py:198 Set nsslapd-allowed-sasl-mechanisms to 'PLAIN GSSAPI' INFO  lib389:allowed_mechs_test.py:201 Verify nsslapd-allowed-sasl-mechanisms has the values
Passed suites/sasl/plain_test.py::test_basic_feature 13.50
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/sasl/regression_test.py::test_openldap_no_nss_crypto 35.90
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 03660311-2972-431a-ab16-f7e147cb28a6 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 23b9a084-afef-429e-885f-79543731e04e / got description=03660311-2972-431a-ab16-f7e147cb28a6) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
-------------------------------Captured log call--------------------------------
INFO  tests.suites.sasl.regression_test:regression_test.py:134 Ticket 47536 - Allow usage of OpenLDAP libraries that don't use NSS for crypto INFO  lib389.replica:replica.py:2515 Retry: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 is NOT working (expect 46fcdb93-d2e9-4106-8235-fe0e01d5aafa / got description=23b9a084-afef-429e-885f-79543731e04e) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 is working INFO  tests.suites.sasl.regression_test:regression_test.py:36 ######################### Adding 5 entries to master1 ###################### INFO  tests.suites.sasl.regression_test:regression_test.py:36 ######################### Adding 5 entries to master2 ###################### INFO  lib389.replica:replica.py:2515 Retry: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 is NOT working (expect 0e8cfc32-7135-4392-b6f0-264d29b7a651 / got description=46fcdb93-d2e9-4106-8235-fe0e01d5aafa) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 is NOT working (expect 96cf8088-e0c8-4574-87ec-55b86dda8c4c / got description=0e8cfc32-7135-4392-b6f0-264d29b7a651) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 is working INFO  tests.suites.sasl.regression_test:regression_test.py:147 ##### Searching for entries on master1... INFO  tests.suites.sasl.regression_test:regression_test.py:151 ##### Searching for entries on master2... INFO  tests.suites.sasl.regression_test:regression_test.py:93 ######################### Relocate PEM files on master1 ###################### INFO  tests.suites.sasl.regression_test:regression_test.py:101 ##### restart master1 INFO  tests.suites.sasl.regression_test:regression_test.py:48 ######################### Check PEM files (/dev/shm/MyCA, /dev/shm/MyServerCert1, /dev/shm/MyServerKey1) in /dev/shm ###################### INFO  tests.suites.sasl.regression_test:regression_test.py:54 /dev/shm/MyCA.pem is successfully generated. INFO  tests.suites.sasl.regression_test:regression_test.py:67 /dev/shm/MyServerCert1.pem is successfully generated. INFO  tests.suites.sasl.regression_test:regression_test.py:80 /dev/shm/MyServerKey1.pem is successfully generated. INFO  tests.suites.sasl.regression_test:regression_test.py:36 ######################### Adding 5 entries to master1 ###################### INFO  tests.suites.sasl.regression_test:regression_test.py:36 ######################### Adding 5 entries to master2 ###################### INFO  lib389.replica:replica.py:2515 Retry: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 is NOT working (expect 7c4010d7-7fa5-4789-9863-fea569fc3b0b / got description=96cf8088-e0c8-4574-87ec-55b86dda8c4c) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 is NOT working (expect 585b0d48-c9a4-4438-bb56-3a6a03c10856 / got description=7c4010d7-7fa5-4789-9863-fea569fc3b0b) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 is NOT working (expect 585b0d48-c9a4-4438-bb56-3a6a03c10856 / got description=7c4010d7-7fa5-4789-9863-fea569fc3b0b) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702 to ldaps://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701 is working INFO  tests.suites.sasl.regression_test:regression_test.py:163 ##### Searching for entries on master1... INFO  tests.suites.sasl.regression_test:regression_test.py:167 ##### Searching for entries on master2... INFO  lib389:tasks.py:567 Export task export_10242020_215706 for file /var/lib/dirsrv/slapd-master1/ldif/master1.ldif completed successfully INFO  tests.suites.sasl.regression_test:regression_test.py:174 Ticket 47536 - PASSED
Passed suites/schema/eduperson_test.py::test_account_locking 0.32
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.schema.eduperson_test:eduperson_test.py:88 Test PASSED
Passed suites/schema/schema_reload_test.py::test_schema_reload_with_searches 0.29
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.schema.schema_reload_test:schema_reload_test.py:49 Test the searches still work as expected during schema reload tasks
Passed suites/schema/schema_reload_test.py::test_schema_operation 4.59
-------------------------------Captured log call--------------------------------
INFO  tests.suites.schema.schema_reload_test:schema_reload_test.py:94 case 1: Test the cases in the original schema are preserved. INFO  tests.suites.schema.schema_reload_test:schema_reload_test.py:122 Case 2: Duplicated schema except cases are not loaded. INFO  tests.suites.schema.schema_reload_test:schema_reload_test.py:152 case 2: MOZILLAATTRIBUTE is not in the objectclasses list -- PASS INFO  tests.suites.schema.schema_reload_test:schema_reload_test.py:155 Case 2-1: Use the custom schema with mozillaattribute
Passed suites/schema/schema_reload_test.py::test_valid_schema 2.13
-------------------------------Captured log call--------------------------------
INFO  tests.suites.schema.schema_reload_test:schema_reload_test.py:184 Test schema-reload task with valid schema INFO  tests.suites.schema.schema_reload_test:schema_reload_test.py:187 Create valid schema file (99user.ldif)... INFO  tests.suites.schema.schema_reload_test:schema_reload_test.py:203 Run the schema-reload task... INFO  tests.suites.schema.schema_reload_test:schema_reload_test.py:210 Check cn=schema to verify the valid schema was added
Passed suites/schema/schema_reload_test.py::test_invalid_schema 2.13
-------------------------------Captured log call--------------------------------
INFO  tests.suites.schema.schema_reload_test:schema_reload_test.py:234 Test schema-reload task with invalid schema INFO  tests.suites.schema.schema_reload_test:schema_reload_test.py:237 Create valid schema file (98user.ldif)... INFO  tests.suites.schema.schema_reload_test:schema_reload_test.py:252 Create invalid schema file (99user.ldif)... INFO  tests.suites.schema.schema_reload_test:schema_reload_test.py:269 Run the schema-reload task, it should fail... INFO  tests.suites.schema.schema_reload_test:schema_reload_test.py:276 Check cn=schema to verify the invalid schema was not added INFO  tests.suites.schema.schema_reload_test:schema_reload_test.py:283 The invalid schema is not present on the server
Passed suites/schema/schema_replication_test.py::test_schema_replication_one 9.36
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39201, 'ldap-secureport': 63901, 'server-id': 'consumer1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:175 Joining consumer consumer1 from master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 94e11c15-f4fd-45d1-ae72-7f59875a1eb7 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working INFO  lib389.replica:replica.py:2285 SUCCESS: joined consumer from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 INFO  lib389.topologies:topologies.py:180 Ensuring consumer consumer1 from master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 already exists DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:182 test_schema_replication_init topology_m1c1 <lib389.topologies.TopologyMain object at 0x7f65e521fa30> (master <lib389.DirSrv object at 0x7f65e53ce2b0>, consumer <lib389.DirSrv object at 0x7f65e53cefd0>
-------------------------------Captured log call--------------------------------
INFO  lib389:schema_replication_test.py:41 ############################################### INFO  lib389:schema_replication_test.py:42 ####### INFO  lib389:schema_replication_test.py:43 ####### Extra OC Schema is pushed - no error INFO  lib389:schema_replication_test.py:44 ####### INFO  lib389:schema_replication_test.py:45 ################################################### DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:222 test_schema_replication_one topology_m1c1 <lib389.topologies.TopologyMain object at 0x7f65e521fa30> (master <lib389.DirSrv object at 0x7f65e53ce2b0>, consumer <lib389.DirSrv object at 0x7f65e53cefd0> DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive 0 (expected 1) INFO  lib389:agreement.py:1194 Pausing replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'1' (expected 2) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:233 test_schema_replication_one master_schema_csn=b'5f94db9f000000000000' DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:234 ctest_schema_replication_one onsumer_schema_csn=b'5f94db9f000000000000' DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:55 _pattern_errorlog: start at offset 0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [38] 389-Directory/1.4.4.4 B2020.298.2312 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [123] ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 (/etc/dirsrv/slapd-master1) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [124] DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [241] [24/Oct/2020:21:57:36.482058290 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [355] [24/Oct/2020:21:57:36.491724334 -0400] - INFO - bdb_config_upgrade_dse_info - create config entry from old config DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [532] [24/Oct/2020:21:57:36.501259758 -0400] - INFO - bdb_instance_start - Import is running with nsslapd-db-private-import-mem on; No other process is allowed to access the database DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [677] [24/Oct/2020:21:57:36.505632070 -0400] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7531741184, process usage 22990848 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [795] [24/Oct/2020:21:57:36.508406318 -0400] - INFO - check_and_set_import_cache - Import allocates 2942086KB import cache. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [902] [24/Oct/2020:21:57:36.694981464 -0400] - INFO - bdb_import_main - import userRoot: Beginning import job... DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [1030] [24/Oct/2020:21:57:36.698408224 -0400] - INFO - bdb_import_main - import userRoot: Index buffering enabled with bucket size 100 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [1152] [24/Oct/2020:21:57:36.899342836 -0400] - INFO - import_producer - import userRoot: Processing file "/tmp/ldifDxhuZr.ldif" DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [1293] [24/Oct/2020:21:57:36.908104416 -0400] - INFO - import_producer - import userRoot: Finished scanning file "/tmp/ldifDxhuZr.ldif" (9 entries) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [1416] [24/Oct/2020:21:57:37.404609196 -0400] - INFO - import_monitor_threads - import userRoot: Workers finished; cleaning up... DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [1526] [24/Oct/2020:21:57:37.612851048 -0400] - INFO - import_monitor_threads - import userRoot: Workers cleaned up. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [1640] [24/Oct/2020:21:57:37.617324551 -0400] - INFO - bdb_import_main - import userRoot: Cleaning up producer thread... DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [1762] [24/Oct/2020:21:57:37.621444910 -0400] - INFO - bdb_import_main - import userRoot: Indexing complete. Post-processing... DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [1919] [24/Oct/2020:21:57:37.624382967 -0400] - INFO - bdb_import_main - import userRoot: Generating numsubordinates (this may take several minutes to complete)... DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [2039] [24/Oct/2020:21:57:37.632010827 -0400] - INFO - bdb_import_main - import userRoot: Generating numSubordinates complete. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [2163] [24/Oct/2020:21:57:37.635147014 -0400] - INFO - bdb_get_nonleaf_ids - import userRoot: Gathering ancestorid non-leaf IDs... DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [2294] [24/Oct/2020:21:57:37.637983045 -0400] - INFO - bdb_get_nonleaf_ids - import userRoot: Finished gathering ancestorid non-leaf IDs. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [2426] [24/Oct/2020:21:57:37.640835733 -0400] - INFO - ldbm_get_nonleaf_ids - import userRoot: Starting sort of ancestorid non-leaf IDs... DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [2556] [24/Oct/2020:21:57:37.643900981 -0400] - INFO - ldbm_get_nonleaf_ids - import userRoot: Finished sort of ancestorid non-leaf IDs. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [2698] [24/Oct/2020:21:57:37.650653025 -0400] - INFO - bdb_ancestorid_new_idl_create_index - import userRoot: Creating ancestorid index (new idl)... DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [2837] [24/Oct/2020:21:57:37.654211149 -0400] - INFO - bdb_ancestorid_new_idl_create_index - import userRoot: Created ancestorid index (new idl). DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [2939] [24/Oct/2020:21:57:37.657406042 -0400] - INFO - bdb_import_main - import userRoot: Flushing caches... DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [3039] [24/Oct/2020:21:57:37.660198322 -0400] - INFO - bdb_import_main - import userRoot: Closing files... DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [3193] [24/Oct/2020:21:57:37.731644567 -0400] - INFO - bdb_import_main - import userRoot: Import complete. Processed 9 entries in 1 seconds. (9.00 entries/sec) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [3290] [24/Oct/2020:21:57:37.735696047 -0400] - INFO - bdb_pre_close - All database threads now stopped DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [3394] [24/Oct/2020:21:57:37.940667504 -0400] - INFO - main - 389-Directory/1.4.4.4 B2020.298.2312 starting up DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [3502] [24/Oct/2020:21:57:37.945165899 -0400] - INFO - main - Setting the maximum file descriptor limit to: 524288 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [3610] [24/Oct/2020:21:57:38.727033631 -0400] - INFO - PBKDF2_SHA256 - Based on CPU performance, chose 2048 rounds DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [3727] [24/Oct/2020:21:57:38.735914630 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [3829] [24/Oct/2020:21:57:38.742700815 -0400] - NOTICE - bdb_start_autotune - found 7980868k physical memory DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [3925] [24/Oct/2020:21:57:38.745619462 -0400] - NOTICE - bdb_start_autotune - found 7352224k available DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [4032] [24/Oct/2020:21:57:38.748889382 -0400] - NOTICE - bdb_start_autotune - cache autosizing: db cache: 498804k DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [4162] [24/Oct/2020:21:57:38.752039540 -0400] - NOTICE - bdb_start_autotune - cache autosizing: userRoot entry cache (1 total): 1376256k DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [4288] [24/Oct/2020:21:57:38.756064805 -0400] - NOTICE - bdb_start_autotune - cache autosizing: userRoot dn cache (1 total): 196608k DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [4392] [24/Oct/2020:21:57:38.759461637 -0400] - NOTICE - bdb_start_autotune - total cache size: 1834683801 B; DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [4500] [24/Oct/2020:21:57:38.766332612 -0400] - INFO - bdb_start - Resizing db cache size: 3012696473 -> 408620441 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [4636] [24/Oct/2020:21:57:39.023412933 -0400] - INFO - slapd_daemon - slapd started. Listening on All Interfaces port 39001 for LDAP requests DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [4824] [24/Oct/2020:21:57:43.552673711 -0400] - NOTICE - NSMMReplicationPlugin - changelog program - _cl5ConstructRUV - Rebuilding the replication changelog RUV, this may take several minutes... DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [5004] [24/Oct/2020:21:57:43.556460719 -0400] - NOTICE - NSMMReplicationPlugin - changelog program - _cl5ConstructRUV - Rebuilding replication changelog RUV complete. Result 0 (Success) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [5192] [24/Oct/2020:21:57:43.571276993 -0400] - NOTICE - NSMMReplicationPlugin - changelog program - _cl5ConstructRUV - Rebuilding the replication changelog RUV, this may take several minutes... DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [5372] [24/Oct/2020:21:57:43.574426612 -0400] - NOTICE - NSMMReplicationPlugin - changelog program - _cl5ConstructRUV - Rebuilding replication changelog RUV complete. Result 0 (Success) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [5662] [24/Oct/2020:21:57:43.889818149 -0400] - WARN - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=temp_201" (ci-vm-10-0-138-103:39201): The remote replica has a different database generation ID than the local database. You may have to reinitialize the remote replica, or the local replica. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [5833] [24/Oct/2020:21:57:44.297198431 -0400] - INFO - NSMMReplicationPlugin - repl5_tot_run - Beginning total update of replica "agmt="cn=temp_201" (ci-vm-10-0-138-103:39201)". DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [6017] [24/Oct/2020:21:57:44.308506305 -0400] - NOTICE - NSMMReplicationPlugin - replica_subentry_check - Need to create replication keep alive entry <cn=repl keep alive 1,dc=example,dc=com> DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [6162] [24/Oct/2020:21:57:44.312397568 -0400] - INFO - NSMMReplicationPlugin - replica_subentry_create - add dn: cn=repl keep alive 1,dc=example,dc=com DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [6179] objectclass: top DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [6205] objectclass: ldapsubentry DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [6235] objectclass: extensibleObject DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [6257] cn: repl keep alive 1 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [6444] [24/Oct/2020:21:57:46.950752783 -0400] - INFO - NSMMReplicationPlugin - repl5_tot_run - Finished total update of replica "agmt="cn=temp_201" (ci-vm-10-0-138-103:39201)". Sent 12 entries. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [6444] DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:67 _pattern_errorlog: end at offset 6444
Passed suites/schema/schema_replication_test.py::test_schema_replication_two 11.50
-------------------------------Captured log call--------------------------------
INFO  lib389:schema_replication_test.py:41 ############################################### INFO  lib389:schema_replication_test.py:42 ####### INFO  lib389:schema_replication_test.py:43 ####### Extra OC Schema is pushed - (ticket 47721 allows to learn missing def) INFO  lib389:schema_replication_test.py:44 ####### INFO  lib389:schema_replication_test.py:45 ################################################### DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'2' (expected 3) INFO  lib389:agreement.py:1194 Pausing replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'3' (expected 4) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:289 test_schema_replication_two master_schema_csn=b'5f94dbab000000000000' DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:290 test_schema_replication_two consumer_schema_csn=b'5f94dbab000000000000' DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:55 _pattern_errorlog: start at offset 6445 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [6658] 24/Oct/2020:21:58:03.441276306 -0400] - ERR - NSMMReplicationPlugin - update_consumer_schema - [S] Schema agmt="cn=201" (ci-vm-10-0-138-103:39201) must not be overwritten (set replication log for additional info) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:67 _pattern_errorlog: end at offset 6658
Passed suites/schema/schema_replication_test.py::test_schema_replication_three 9.36
-------------------------------Captured log call--------------------------------
INFO  lib389:schema_replication_test.py:41 ############################################### INFO  lib389:schema_replication_test.py:42 ####### INFO  lib389:schema_replication_test.py:43 ####### Extra OC Schema is pushed - no error INFO  lib389:schema_replication_test.py:44 ####### INFO  lib389:schema_replication_test.py:45 ################################################### DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'4' (expected 5) INFO  lib389:agreement.py:1194 Pausing replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'5' (expected 6) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:340 test_schema_replication_three master_schema_csn=b'5f94dbb4000000000000' DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:341 test_schema_replication_three consumer_schema_csn=b'5f94dbb4000000000000' DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:55 _pattern_errorlog: start at offset 6659 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [6659] DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:67 _pattern_errorlog: end at offset 6659
Passed suites/schema/schema_replication_test.py::test_schema_replication_four 9.44
-------------------------------Captured log call--------------------------------
INFO  lib389:schema_replication_test.py:41 ############################################### INFO  lib389:schema_replication_test.py:42 ####### INFO  lib389:schema_replication_test.py:43 ####### Same OC - extra MUST: Schema is pushed - no error INFO  lib389:schema_replication_test.py:44 ####### INFO  lib389:schema_replication_test.py:45 ################################################### DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'6' (expected 7) INFO  lib389:agreement.py:1194 Pausing replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'7' (expected 8) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:389 test_schema_replication_four master_schema_csn=b'5f94dbbe000000000000' DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:390 ctest_schema_replication_four onsumer_schema_csn=b'5f94dbbe000000000000' DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:55 _pattern_errorlog: start at offset 6660 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [6660] DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:67 _pattern_errorlog: end at offset 6660
Passed suites/schema/schema_replication_test.py::test_schema_replication_five 11.73
-------------------------------Captured log call--------------------------------
INFO  lib389:schema_replication_test.py:41 ############################################### INFO  lib389:schema_replication_test.py:42 ####### INFO  lib389:schema_replication_test.py:43 ####### Same OC - extra MUST: Schema is pushed - (fix for 47721) INFO  lib389:schema_replication_test.py:44 ####### INFO  lib389:schema_replication_test.py:45 ################################################### DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'8' (expected 9) INFO  lib389:agreement.py:1194 Pausing replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'9' (expected 10) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:452 test_schema_replication_five master_schema_csn=b'5f94dbca000000000000' DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:453 ctest_schema_replication_five onsumer_schema_csn=b'5f94dbca000000000000' DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:55 _pattern_errorlog: start at offset 6661 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [6766] /Oct/2020:21:58:33.945254836 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [6888] [24/Oct/2020:21:58:33.959669637 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f94dbc60002:1603591110:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [7009] [24/Oct/2020:21:58:33.963847027 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f94dbc90000:1603591113:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [7172] [24/Oct/2020:21:58:33.967062535 -0400] - DEBUG - NSMMReplicationPlugin - ruv_add_csn_inprogress - Successfully inserted csn 5f94dbc9000000010000 into pending list DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [7352] [24/Oct/2020:21:58:33.970911953 -0400] - DEBUG - NSMMReplicationPlugin - purge_entry_state_information - From entry cn=test_entry,dc=example,dc=com up to CSN 5f8ba146000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [7597] [24/Oct/2020:21:58:33.975174196 -0400] - DEBUG - NSMMReplicationPlugin - write_changelog_and_ruv - Writing change for cn=test_entry,dc=example,dc=com (uniqid: 75df2b8a-166511eb-bc32ee95-6b06a0af, optype: 8) to changelog csn 5f94dbc9000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [7772] [24/Oct/2020:21:58:33.979124691 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - cl5WriteOperationTxn - Successfully written entry with csn (5f94dbc9000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [7910] [24/Oct/2020:21:58:33.983674891 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: committing all csns for csn 5f94dbc9000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [8040] [24/Oct/2020:21:58:33.988765549 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: processing data csn 5f94dbc9000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [8178] [24/Oct/2020:21:58:33.993739963 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Successfully committed csn 5f94dbc9000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [8306] [24/Oct/2020:21:58:33.997112870 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Rolled up to csn 5f94dbc9000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [8421] [24/Oct/2020:21:58:34.000892573 -0400] - DEBUG - replication - multimaster_mmr_postop - error 0 for operation 561. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [8596] [24/Oct/2020:21:58:34.005313299 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: wait_for_changes -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [8779] [24/Oct/2020:21:58:34.008571296 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: wait_for_changes -> ready_to_acquire_replica DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [8951] [24/Oct/2020:21:58:34.011036540 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Canceling linger on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [9073] [24/Oct/2020:21:58:34.013525956 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f94dbc90001:1603591113:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [9194] [24/Oct/2020:21:58:34.016346216 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f94dbca0000:1603591114:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [9362] [24/Oct/2020:21:58:34.020131464 -0400] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-138-103:39201): Replica was successfully acquired. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [9544] [24/Oct/2020:21:58:34.023052564 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: ready_to_acquire_replica -> sending_updates DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [9728] [24/Oct/2020:21:58:34.026686317 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5f94dbc9000000000000 / remotecsn:5f94dbbe000000000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [9892] [24/Oct/2020:21:58:34.157574604 -0400] - DEBUG - schema_oc_compare_strict - Attribute telexNumber is not required in 'consumerNewOCA' of the remote consumer schema DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [10046] [24/Oct/2020:21:58:34.160499372 -0400] - DEBUG - schema_oc_superset_check - Remote consumerNewOCA schema objectclasses is a superset of the received one. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [10210] [24/Oct/2020:21:58:34.164695309 -0400] - DEBUG - schema_oc_compare_strict - Attribute telexNumber is not required in 'consumerNewOCA' of the remote consumer schema DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [10360] [24/Oct/2020:21:58:34.167423968 -0400] - DEBUG - schema_list_oc2learn - Add that unknown/extended objectclass consumerNewOCA (1.2.3.4.5.6.7.8.9.10.1) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [10646] [24/Oct/2020:21:58:34.173242699 -0400] - DEBUG - schema_oc_to_string - Replace (old[251]=( 1.2.3.4.5.6.7.8.9.10.1 NAME 'consumerNewOCA' DESC 'To test ticket 47490' SUP 'person' AUXILIARY MUST ( postalAddress $ preferredLocale ) MAY ( postalCode $ street ) X-ORIGIN 'blahblahblah' )) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [10959] [24/Oct/2020:21:58:34.176531447 -0400] - DEBUG - supplier_get_new_definitions - supplier takes objectclass: ( 1.2.3.4.5.6.7.8.9.10.1 NAME 'consumerNewOCA' DESC 'To test ticket 47490' SUP person AUXILIARY MUST ( postalAddress $ preferredLocale $ telexNumber ) MAY ( postalCode $ street ) X-ORIGIN 'user defined' ) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [11261] [24/Oct/2020:21:58:34.192696540 -0400] - DEBUG - modify_schema_prepare_mods - MOD[1] del (objectclasses): ( 1.2.3.4.5.6.7.8.9.10.1 NAME 'consumerNewOCA' DESC 'To test ticket 47490' SUP 'person' AUXILIARY MUST ( postalAddress $ preferredLocale ) MAY ( postalCode $ street ) X-ORIGIN 'blahblahblah' ) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [11572] [24/Oct/2020:21:58:34.195785107 -0400] - DEBUG - modify_schema_prepare_mods - MOD[0] add (objectclasses): ( 1.2.3.4.5.6.7.8.9.10.1 NAME 'consumerNewOCA' DESC 'To test ticket 47490' SUP person AUXILIARY MUST ( postalAddress $ preferredLocale $ telexNumber ) MAY ( postalCode $ street ) X-ORIGIN 'user defined' ) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [11680] [24/Oct/2020:21:58:34.198855990 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [11803] [24/Oct/2020:21:58:34.203066440 -0400] - DEBUG - modify_schema_internal_mod - Successfully learn objectclasses definitions DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [12017] [24/Oct/2020:21:58:34.207144609 -0400] - ERR - NSMMReplicationPlugin - update_consumer_schema - [S] Schema agmt="cn=201" (ci-vm-10-0-138-103:39201) must not be overwritten (set replication log for additional info) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:67 _pattern_errorlog: end at offset 12017
Passed suites/schema/schema_replication_test.py::test_schema_replication_six 9.59
-------------------------------Captured log call--------------------------------
INFO  lib389:schema_replication_test.py:41 ############################################### INFO  lib389:schema_replication_test.py:42 ####### INFO  lib389:schema_replication_test.py:43 ####### Same OC - extra MUST: Schema is pushed - no error INFO  lib389:schema_replication_test.py:44 ####### INFO  lib389:schema_replication_test.py:45 ################################################### DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'10' (expected 11) INFO  lib389:agreement.py:1194 Pausing replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'11' (expected 12) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:508 test_schema_replication_six master_schema_csn=b'5f94dbd3000000000000' DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:509 ctest_schema_replication_six onsumer_schema_csn=b'5f94dbd3000000000000' DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:55 _pattern_errorlog: start at offset 12018 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [12154] 24/Oct/2020:21:58:34.209520869 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] schema definitions may have been learned DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [12288] [24/Oct/2020:21:58:34.430261875 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5f94dbc7000000000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [12473] [24/Oct/2020:21:58:34.433370933 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - Schema checking successful: ok to push the schema (agmt="cn=201" (ci-vm-10-0-138-103:39201)) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [12588] [24/Oct/2020:21:58:34.761908188 -0400] - DEBUG - csngen_adjust_time - gen state before 5f94dbca0001:1603591114:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [12769] [24/Oct/2020:21:58:34.767073138 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-138-103:39201)): Consumer RUV: DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [12925] [24/Oct/2020:21:58:34.769906107 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [13166] [24/Oct/2020:21:58:34.772543845 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbc6000000010000 00000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [13347] [24/Oct/2020:21:58:34.774850355 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-138-103:39201)): Supplier RUV: DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [13503] [24/Oct/2020:21:58:34.777469107 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [13744] [24/Oct/2020:21:58:34.780012638 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbc9000000010000 5f94dbca DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [13906] [24/Oct/2020:21:58:34.782890207 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_get_buffer - found thread private buffer cache 0x7fad1ce98500 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [14133] [24/Oct/2020:21:58:34.785471607 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_get_buffer - _pool is 0x7fad4aa6d360 _pool->pl_busy_lists is 0x7fad1ceec600 _pool->pl_busy_lists->bl_buffers is 0x7fad1ce98500 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [14429] [24/Oct/2020:21:58:34.787883773 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-138-103:39201) - (cscb 0 - state 0) - csnPrevMax () csnMax (5f94dbc9000000010000) csnBuf (5f94dbc6000000010000) csnConsumerMax (5f94dbc6000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [14542] [24/Oct/2020:21:58:34.791036740 -0400] - DEBUG - clcache_initial_anchorcsn - anchor is now: 5f94dbc6000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [14733] [24/Oct/2020:21:58:34.793958351 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - agmt="cn=201" (ci-vm-10-0-138-103:39201): CSN 5f94dbc6000000010000 found, position set for replay DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [14889] [24/Oct/2020:21:58:34.796773694 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_get_next_change - load=1 rec=1 csn=5f94dbc9000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [15001] [24/Oct/2020:21:58:34.799724315 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Starting DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [15221] [24/Oct/2020:21:58:34.802832298 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-138-103:39201): Sending modify operation (dn="cn=test_entry,dc=example,dc=com" csn=5f94dbc9000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [15353] [24/Oct/2020:21:58:34.805500636 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [15551] [24/Oct/2020:21:58:34.809048012 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-138-103:39201): Consumer successfully sent operation with csn 5f94dbc9000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [15866] [24/Oct/2020:21:58:34.813033347 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_adjust_anchorcsn - agmt="cn=201" (ci-vm-10-0-138-103:39201) - (cscb 0 - state 1) - csnPrevMax (5f94dbc9000000010000) csnMax (5f94dbc9000000010000) csnBuf (5f94dbc9000000010000) csnConsumerMax (5f94dbc9000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [15990] [24/Oct/2020:21:58:34.815827132 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_load_buffer - rc=-30988 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [16174] [24/Oct/2020:21:58:34.818648965 -0400] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-138-103:39201): No more updates to send (cl5GetNextOperationToReplay) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [16286] [24/Oct/2020:21:58:34.821369063 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 0 19 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [16419] [24/Oct/2020:21:58:34.826470354 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 19 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [16549] [24/Oct/2020:21:58:34.829639761 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Result 3, 0, 0, 19, (null) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [16682] [24/Oct/2020:21:58:34.832217033 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 19 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [16815] [24/Oct/2020:21:58:34.835652600 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 19 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [16948] [24/Oct/2020:21:58:34.840602294 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 19 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [17081] [24/Oct/2020:21:58:34.847712158 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 19 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [17214] [24/Oct/2020:21:58:34.858786115 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 19 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [17347] [24/Oct/2020:21:58:34.878120199 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 19 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [17480] [24/Oct/2020:21:58:34.912966370 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 19 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [17593] [24/Oct/2020:21:58:34.926627088 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 19 19 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [17702] [24/Oct/2020:21:58:34.982822989 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain exiting DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [17974] [24/Oct/2020:21:58:34.985940426 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103: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 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [18138] [24/Oct/2020:21:58:34.991955868 -0400] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-138-103:39201): Successfully released consumer DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [18308] [24/Oct/2020:21:58:34.995032077 -0400] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-138-103:39201) - Beginning linger on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [18482] [24/Oct/2020:21:58:34.997444274 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: sending_updates -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [18590] [24/Oct/2020:21:58:35.011336439 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [18761] [24/Oct/2020:21:58:35.017857262 -0400] - DEBUG - NSMMReplicationPlugin - agmt_set_enabled_from_entry: agreement is now disabled (agmt="cn=201" (ci-vm-10-0-138-103:39201)) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [18936] [24/Oct/2020:21:58:35.021300269 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: wait_for_changes -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [19111] [24/Oct/2020:21:58:35.032529783 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: wait_for_changes -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [19283] [24/Oct/2020:21:58:35.038798061 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Canceling linger on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [19458] [24/Oct/2020:21:58:35.041705607 -0400] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Disconnected from the consumer DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [19623] [24/Oct/2020:21:58:35.121445063 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_stop - agmt="cn=201" (ci-vm-10-0-138-103:39201): Protocol stopped after 0 seconds DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [19751] [24/Oct/2020:21:58:35.124422390 -0400] - DEBUG - NSMMReplicationPlugin - Database RUV: {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [19964] [24/Oct/2020:21:58:35.127189381 -0400] - DEBUG - NSMMReplicationPlugin - Database RUV: {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbc9000000010000 5f94dbca DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [20139] [24/Oct/2020:21:58:35.129595904 -0400] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Disconnected from the consumer DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [20247] [24/Oct/2020:21:58:35.132200083 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [20355] [24/Oct/2020:21:58:40.149901970 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [20525] [24/Oct/2020:21:58:40.188860959 -0400] - DEBUG - NSMMReplicationPlugin - agmt_set_enabled_from_entry: agreement is now enabled (agmt="cn=201" (ci-vm-10-0-138-103:39201)) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [20700] [24/Oct/2020:21:58:40.192684131 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-138-103:39201) - No linger to cancel on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [20875] [24/Oct/2020:21:58:40.196353742 -0400] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Disconnected from the consumer DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [21047] [24/Oct/2020:21:58:40.199524420 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: start -> ready_to_acquire_replica DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [21216] [24/Oct/2020:21:58:40.206292390 -0400] - DEBUG - NSMMReplicationPlugin - conn_connect - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Trying non-secure slapi_ldap_init_ext DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [21744] [24/Oct/2020:21:58:40.212681084 -0400] - DEBUG - NSMMReplicationPlugin - conn_connect - agmt="cn=201" (ci-vm-10-0-138-103:39201) - binddn = cn=ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701,ou=Services,dc=example,dc=com, passwd = {AES-TUhNR0NTcUdTSWIzRFFFRkRUQm1NRVVHQ1NxR1NJYjNEUUVGRERBNEJDUmtaVFV5WlRsbVl5MWtORGhrTTJJdw0KTlMxaFl6VTNNamcwT1Mxak1XVm1aVEEyTlFBQ0FRSUNBU0F3Q2dZSUtvWklodmNOQWdjd0hRWUpZSVpJQVdVRA0KQkFFcUJCQVp2SVAzRVVyb0R2VnBuR0x3TUJnOA==}ZFjo42R89StYxbxAu2558ZoopgwYgglQG66pfDUxhYjBRBhWitnhDjA78Q5tqlvB DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [21789] SwnTbk6t4UmyUW+1pul0b5J+krgjhKCjrlLfzspCuo4= DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [21964] [24/Oct/2020:21:58:40.217116841 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-138-103:39201) - No linger to cancel on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [22086] [24/Oct/2020:21:58:40.222487319 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f94dbca0001:1603591114:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [22207] [24/Oct/2020:21:58:40.225105734 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f94dbd00000:1603591120:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [22375] [24/Oct/2020:21:58:40.229196649 -0400] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-138-103:39201): Replica was successfully acquired. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [22557] [24/Oct/2020:21:58:40.237207609 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: ready_to_acquire_replica -> sending_updates DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [22741] [24/Oct/2020:21:58:40.240881322 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5f94dbca000000000000 / remotecsn:5f94dbc7000000000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [22875] [24/Oct/2020:21:58:40.451872396 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5f94dbc9000000000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [23060] [24/Oct/2020:21:58:40.456077638 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - Schema checking successful: ok to push the schema (agmt="cn=201" (ci-vm-10-0-138-103:39201)) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [23175] [24/Oct/2020:21:58:40.654248113 -0400] - DEBUG - csngen_adjust_time - gen state before 5f94dbd00001:1603591120:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [23356] [24/Oct/2020:21:58:40.658344964 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-138-103:39201)): Consumer RUV: DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [23512] [24/Oct/2020:21:58:40.664859514 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [23753] [24/Oct/2020:21:58:40.668092427 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbc9000000010000 00000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [23934] [24/Oct/2020:21:58:40.670840457 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-138-103:39201)): Supplier RUV: DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [24090] [24/Oct/2020:21:58:40.673594185 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [24331] [24/Oct/2020:21:58:40.676988883 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbc9000000010000 5f94dbca DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [24627] [24/Oct/2020:21:58:40.680181503 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-138-103:39201) - (cscb 0 - state 1) - csnPrevMax () csnMax (5f94dbc9000000010000) csnBuf (00000000000000000000) csnConsumerMax (5f94dbc9000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [24751] [24/Oct/2020:21:58:40.683100015 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_load_buffer - rc=-30988 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [25023] [24/Oct/2020:21:58:40.695721653 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103: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 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [25172] [24/Oct/2020:21:58:40.702683047 -0400] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-138-103:39201): No changes to send DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [25336] [24/Oct/2020:21:58:40.710106967 -0400] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-138-103:39201): Successfully released consumer DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [25506] [24/Oct/2020:21:58:40.714695935 -0400] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-138-103:39201) - Beginning linger on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [25680] [24/Oct/2020:21:58:40.718554329 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: sending_updates -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [25802] [24/Oct/2020:21:58:42.201021213 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f94dbd00001:1603591120:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [25923] [24/Oct/2020:21:58:42.205357432 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f94dbd20000:1603591122:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [26086] [24/Oct/2020:21:58:42.209506701 -0400] - DEBUG - NSMMReplicationPlugin - ruv_add_csn_inprogress - Successfully inserted csn 5f94dbd2000000010000 into pending list DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [26266] [24/Oct/2020:21:58:42.213809664 -0400] - DEBUG - NSMMReplicationPlugin - purge_entry_state_information - From entry cn=test_entry,dc=example,dc=com up to CSN 5f8ba149000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [26511] [24/Oct/2020:21:58:42.218255389 -0400] - DEBUG - NSMMReplicationPlugin - write_changelog_and_ruv - Writing change for cn=test_entry,dc=example,dc=com (uniqid: 75df2b8a-166511eb-bc32ee95-6b06a0af, optype: 8) to changelog csn 5f94dbd2000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [26686] [24/Oct/2020:21:58:42.222091787 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - cl5WriteOperationTxn - Successfully written entry with csn (5f94dbd2000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [26824] [24/Oct/2020:21:58:42.225941553 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: committing all csns for csn 5f94dbd2000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [26954] [24/Oct/2020:21:58:42.229416850 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: processing data csn 5f94dbd2000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [27092] [24/Oct/2020:21:58:42.233465428 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Successfully committed csn 5f94dbd2000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [27220] [24/Oct/2020:21:58:42.237056185 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Rolled up to csn 5f94dbd2000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [27335] [24/Oct/2020:21:58:42.241190531 -0400] - DEBUG - replication - multimaster_mmr_postop - error 0 for operation 561. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [27510] [24/Oct/2020:21:58:42.249215722 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: wait_for_changes -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [27693] [24/Oct/2020:21:58:42.254488360 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: wait_for_changes -> ready_to_acquire_replica DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [27865] [24/Oct/2020:21:58:42.259248483 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Canceling linger on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [28033] [24/Oct/2020:21:58:42.264165783 -0400] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-138-103:39201): Replica was successfully acquired. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [28215] [24/Oct/2020:21:58:42.268286327 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: ready_to_acquire_replica -> sending_updates DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [28399] [24/Oct/2020:21:58:42.271500765 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5f94dbca000000000000 / remotecsn:5f94dbc9000000000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [28533] [24/Oct/2020:21:58:42.507883033 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5f94dbca000000000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [28648] [24/Oct/2020:21:58:42.513025131 -0400] - DEBUG - csngen_adjust_time - gen state before 5f94dbd20002:1603591122:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [28829] [24/Oct/2020:21:58:42.517657482 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-138-103:39201)): Consumer RUV: DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [28985] [24/Oct/2020:21:58:42.521768485 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [29226] [24/Oct/2020:21:58:42.525781848 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbc9000000010000 00000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [29407] [24/Oct/2020:21:58:42.529745340 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-138-103:39201)): Supplier RUV: DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [29563] [24/Oct/2020:21:58:42.534068479 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [29804] [24/Oct/2020:21:58:42.538280243 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbd2000000010000 5f94dbd2 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [29966] [24/Oct/2020:21:58:42.544359569 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_get_buffer - found thread private buffer cache 0x7fad1cf33800 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [30193] [24/Oct/2020:21:58:42.548410615 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_get_buffer - _pool is 0x7fad4aa6d360 _pool->pl_busy_lists is 0x7fad1ceec600 _pool->pl_busy_lists->bl_buffers is 0x7fad1cf33800 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [30489] [24/Oct/2020:21:58:42.553772752 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-138-103:39201) - (cscb 0 - state 0) - csnPrevMax () csnMax (5f94dbd2000000010000) csnBuf (00000000000000000000) csnConsumerMax (5f94dbc9000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [30602] [24/Oct/2020:21:58:42.561235448 -0400] - DEBUG - clcache_initial_anchorcsn - anchor is now: 5f94dbc9000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [30793] [24/Oct/2020:21:58:42.565103403 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - agmt="cn=201" (ci-vm-10-0-138-103:39201): CSN 5f94dbc9000000010000 found, position set for replay DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [30949] [24/Oct/2020:21:58:42.569489460 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_get_next_change - load=1 rec=1 csn=5f94dbd2000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [31061] [24/Oct/2020:21:58:42.573897431 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Starting DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [31193] [24/Oct/2020:21:58:42.577993931 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [31413] [24/Oct/2020:21:58:42.581938456 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-138-103:39201): Sending modify operation (dn="cn=test_entry,dc=example,dc=com" csn=5f94dbd2000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [31545] [24/Oct/2020:21:58:42.586024798 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [31743] [24/Oct/2020:21:58:42.589626204 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-138-103:39201): Consumer successfully sent operation with csn 5f94dbd2000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [31875] [24/Oct/2020:21:58:42.598046271 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [32190] [24/Oct/2020:21:58:42.602097139 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_adjust_anchorcsn - agmt="cn=201" (ci-vm-10-0-138-103:39201) - (cscb 0 - state 1) - csnPrevMax (5f94dbd2000000010000) csnMax (5f94dbd2000000010000) csnBuf (5f94dbd2000000010000) csnConsumerMax (5f94dbd2000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [32314] [24/Oct/2020:21:58:42.606059310 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_load_buffer - rc=-30988 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [32498] [24/Oct/2020:21:58:42.609552080 -0400] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-138-103:39201): No more updates to send (cl5GetNextOperationToReplay) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [32610] [24/Oct/2020:21:58:42.613281564 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 0 14 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [32743] [24/Oct/2020:21:58:42.616774170 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 14 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [32873] [24/Oct/2020:21:58:42.619975397 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Result 3, 0, 0, 14, (null) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [33006] [24/Oct/2020:21:58:42.626056943 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 14 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [33139] [24/Oct/2020:21:58:42.636201915 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 14 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [33272] [24/Oct/2020:21:58:42.642217676 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 14 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [33405] [24/Oct/2020:21:58:42.650766813 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 14 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [33538] [24/Oct/2020:21:58:42.663066639 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 14 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [33671] [24/Oct/2020:21:58:42.683779709 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 14 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [33784] [24/Oct/2020:21:58:42.716923919 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 14 14 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [33893] [24/Oct/2020:21:58:42.721773121 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain exiting DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [34165] [24/Oct/2020:21:58:42.726614996 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103: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 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [34329] [24/Oct/2020:21:58:42.735690425 -0400] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-138-103:39201): Successfully released consumer DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [34499] [24/Oct/2020:21:58:42.740301932 -0400] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-138-103:39201) - Beginning linger on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [34673] [24/Oct/2020:21:58:42.745048093 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: sending_updates -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [34781] [24/Oct/2020:21:58:43.541061443 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [34889] [24/Oct/2020:21:58:43.608602217 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [35011] [24/Oct/2020:21:58:43.622175413 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f94dbd20002:1603591122:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [35132] [24/Oct/2020:21:58:43.626886841 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f94dbd30000:1603591123:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [35295] [24/Oct/2020:21:58:43.630857358 -0400] - DEBUG - NSMMReplicationPlugin - ruv_add_csn_inprogress - Successfully inserted csn 5f94dbd3000000010000 into pending list DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [35475] [24/Oct/2020:21:58:43.634904430 -0400] - DEBUG - NSMMReplicationPlugin - purge_entry_state_information - From entry cn=test_entry,dc=example,dc=com up to CSN 5f8ba152000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [35720] [24/Oct/2020:21:58:43.639268463 -0400] - DEBUG - NSMMReplicationPlugin - write_changelog_and_ruv - Writing change for cn=test_entry,dc=example,dc=com (uniqid: 75df2b8a-166511eb-bc32ee95-6b06a0af, optype: 8) to changelog csn 5f94dbd3000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [35895] [24/Oct/2020:21:58:43.644375057 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - cl5WriteOperationTxn - Successfully written entry with csn (5f94dbd3000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [36033] [24/Oct/2020:21:58:43.648968012 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: committing all csns for csn 5f94dbd3000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [36163] [24/Oct/2020:21:58:43.652824027 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: processing data csn 5f94dbd3000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [36301] [24/Oct/2020:21:58:43.659910846 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Successfully committed csn 5f94dbd3000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [36429] [24/Oct/2020:21:58:43.664038081 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Rolled up to csn 5f94dbd3000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [36544] [24/Oct/2020:21:58:43.668314890 -0400] - DEBUG - replication - multimaster_mmr_postop - error 0 for operation 561. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [36719] [24/Oct/2020:21:58:43.674650077 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: wait_for_changes -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [36902] [24/Oct/2020:21:58:43.678701740 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: wait_for_changes -> ready_to_acquire_replica DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [37074] [24/Oct/2020:21:58:43.682993419 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Canceling linger on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [37242] [24/Oct/2020:21:58:43.688155505 -0400] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-138-103:39201): Replica was successfully acquired. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [37424] [24/Oct/2020:21:58:43.691958307 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: ready_to_acquire_replica -> sending_updates DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [37608] [24/Oct/2020:21:58:43.695469454 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5f94dbd3000000000000 / remotecsn:5f94dbca000000000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [37742] [24/Oct/2020:21:58:43.925770340 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5f94dbca000000000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [37927] [24/Oct/2020:21:58:43.932325869 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - Schema checking successful: ok to push the schema (agmt="cn=201" (ci-vm-10-0-138-103:39201)) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [38042] [24/Oct/2020:21:58:44.128235549 -0400] - DEBUG - csngen_adjust_time - gen state before 5f94dbd30002:1603591123:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [38164] [24/Oct/2020:21:58:44.134382349 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f94dbd30002:1603591123:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [38285] [24/Oct/2020:21:58:44.138563148 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f94dbd40000:1603591124:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [38466] [24/Oct/2020:21:58:44.144386894 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-138-103:39201)): Consumer RUV: DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [38622] [24/Oct/2020:21:58:44.148131857 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [38863] [24/Oct/2020:21:58:44.152203297 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbd2000000010000 00000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [39044] [24/Oct/2020:21:58:44.156388370 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-138-103:39201)): Supplier RUV: DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [39200] [24/Oct/2020:21:58:44.159836117 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [39441] [24/Oct/2020:21:58:44.163358778 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbd3000000010000 5f94dbd3 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [39603] [24/Oct/2020:21:58:44.166504514 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_get_buffer - found thread private buffer cache 0x7fad1cf33800 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [39830] [24/Oct/2020:21:58:44.169778480 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_get_buffer - _pool is 0x7fad4aa6d360 _pool->pl_busy_lists is 0x7fad1ceec600 _pool->pl_busy_lists->bl_buffers is 0x7fad1cf33800 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [40126] [24/Oct/2020:21:58:44.174011480 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-138-103:39201) - (cscb 0 - state 0) - csnPrevMax () csnMax (5f94dbd3000000010000) csnBuf (5f94dbd2000000010000) csnConsumerMax (5f94dbd2000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [40239] [24/Oct/2020:21:58:44.177588707 -0400] - DEBUG - clcache_initial_anchorcsn - anchor is now: 5f94dbd2000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [40430] [24/Oct/2020:21:58:44.181626992 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - agmt="cn=201" (ci-vm-10-0-138-103:39201): CSN 5f94dbd2000000010000 found, position set for replay DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [40586] [24/Oct/2020:21:58:44.185647792 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_get_next_change - load=1 rec=1 csn=5f94dbd3000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [40698] [24/Oct/2020:21:58:44.189329472 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Starting DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [40918] [24/Oct/2020:21:58:44.192641596 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-138-103:39201): Sending modify operation (dn="cn=test_entry,dc=example,dc=com" csn=5f94dbd3000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [41050] [24/Oct/2020:21:58:44.195732948 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [41248] [24/Oct/2020:21:58:44.200897560 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-138-103:39201): Consumer successfully sent operation with csn 5f94dbd3000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [41381] [24/Oct/2020:21:58:44.204184917 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 21 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [41511] [24/Oct/2020:21:58:44.208029306 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Result 3, 0, 0, 21, (null) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [41826] [24/Oct/2020:21:58:44.212291602 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_adjust_anchorcsn - agmt="cn=201" (ci-vm-10-0-138-103:39201) - (cscb 0 - state 1) - csnPrevMax (5f94dbd3000000010000) csnMax (5f94dbd3000000010000) csnBuf (5f94dbd3000000010000) csnConsumerMax (5f94dbd3000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [41950] [24/Oct/2020:21:58:44.216059047 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_load_buffer - rc=-30988 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [42134] [24/Oct/2020:21:58:44.219990805 -0400] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-138-103:39201): No more updates to send (cl5GetNextOperationToReplay) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [42247] [24/Oct/2020:21:58:44.224940075 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 21 21 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [42380] [24/Oct/2020:21:58:44.228624347 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 21 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [42489] [24/Oct/2020:21:58:44.233746801 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain exiting DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [42761] [24/Oct/2020:21:58:44.238558964 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103: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 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [42925] [24/Oct/2020:21:58:44.246271511 -0400] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-138-103:39201): Successfully released consumer DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [43095] [24/Oct/2020:21:58:44.251445710 -0400] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-138-103:39201) - Beginning linger on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [43269] [24/Oct/2020:21:58:44.255567886 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: sending_updates -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [43377] [24/Oct/2020:21:58:44.679668927 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [43548] [24/Oct/2020:21:58:44.690931671 -0400] - DEBUG - NSMMReplicationPlugin - agmt_set_enabled_from_entry: agreement is now disabled (agmt="cn=201" (ci-vm-10-0-138-103:39201)) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [43723] [24/Oct/2020:21:58:44.695525384 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: wait_for_changes -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [43898] [24/Oct/2020:21:58:44.699226582 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: wait_for_changes -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [44070] [24/Oct/2020:21:58:44.703154730 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Canceling linger on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [44245] [24/Oct/2020:21:58:44.707707081 -0400] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Disconnected from the consumer DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [44410] [24/Oct/2020:21:58:44.795652869 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_stop - agmt="cn=201" (ci-vm-10-0-138-103:39201): Protocol stopped after 0 seconds DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [44538] [24/Oct/2020:21:58:44.801112497 -0400] - DEBUG - NSMMReplicationPlugin - Database RUV: {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [44751] [24/Oct/2020:21:58:44.807052235 -0400] - DEBUG - NSMMReplicationPlugin - Database RUV: {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbd3000000010000 5f94dbd3 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [44926] [24/Oct/2020:21:58:44.812357438 -0400] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Disconnected from the consumer DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [45034] [24/Oct/2020:21:58:44.816921210 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [45142] [24/Oct/2020:21:58:45.255664554 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [45257] [24/Oct/2020:21:58:45.263866326 -0400] - DEBUG - replication - multimaster_mmr_postop - error 0 for operation 561. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [45365] [24/Oct/2020:21:58:49.836421964 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [45535] [24/Oct/2020:21:58:49.840423856 -0400] - DEBUG - NSMMReplicationPlugin - agmt_set_enabled_from_entry: agreement is now enabled (agmt="cn=201" (ci-vm-10-0-138-103:39201)) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [45710] [24/Oct/2020:21:58:49.843691098 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-138-103:39201) - No linger to cancel on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [45885] [24/Oct/2020:21:58:49.847044318 -0400] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Disconnected from the consumer DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [46057] [24/Oct/2020:21:58:49.850181361 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: start -> ready_to_acquire_replica DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [46226] [24/Oct/2020:21:58:49.855562160 -0400] - DEBUG - NSMMReplicationPlugin - conn_connect - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Trying non-secure slapi_ldap_init_ext DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [46754] [24/Oct/2020:21:58:49.858471946 -0400] - DEBUG - NSMMReplicationPlugin - conn_connect - agmt="cn=201" (ci-vm-10-0-138-103:39201) - binddn = cn=ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701,ou=Services,dc=example,dc=com, passwd = {AES-TUhNR0NTcUdTSWIzRFFFRkRUQm1NRVVHQ1NxR1NJYjNEUUVGRERBNEJDUmtaVFV5WlRsbVl5MWtORGhrTTJJdw0KTlMxaFl6VTNNamcwT1Mxak1XVm1aVEEyTlFBQ0FRSUNBU0F3Q2dZSUtvWklodmNOQWdjd0hRWUpZSVpJQVdVRA0KQkFFcUJCQVp2SVAzRVVyb0R2VnBuR0x3TUJnOA==}ZFjo42R89StYxbxAu2558ZoopgwYgglQG66pfDUxhYjBRBhWitnhDjA78Q5tqlvB DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [46799] SwnTbk6t4UmyUW+1pul0b5J+krgjhKCjrlLfzspCuo4= DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [46974] [24/Oct/2020:21:58:49.863536640 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-138-103:39201) - No linger to cancel on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [47096] [24/Oct/2020:21:58:49.868278067 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f94dbd40000:1603591124:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [47217] [24/Oct/2020:21:58:49.871413127 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f94dbd90000:1603591129:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [47385] [24/Oct/2020:21:58:49.875226104 -0400] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-138-103:39201): Replica was successfully acquired. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [47567] [24/Oct/2020:21:58:49.878064455 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: ready_to_acquire_replica -> sending_updates DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [47751] [24/Oct/2020:21:58:49.880909667 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5f94dbd3000000000000 / remotecsn:5f94dbca000000000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [47885] [24/Oct/2020:21:58:50.089246637 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5f94dbd3000000000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [48000] [24/Oct/2020:21:58:50.093378839 -0400] - DEBUG - csngen_adjust_time - gen state before 5f94dbd90001:1603591129:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [48122] [24/Oct/2020:21:58:50.096808559 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f94dbd90001:1603591129:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [48243] [24/Oct/2020:21:58:50.100453942 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f94dbda0000:1603591130:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [48424] [24/Oct/2020:21:58:50.106003536 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-138-103:39201)): Consumer RUV: DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [48580] [24/Oct/2020:21:58:50.110558299 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [48821] [24/Oct/2020:21:58:50.114297038 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbd3000000010000 00000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [49002] [24/Oct/2020:21:58:50.117739480 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-138-103:39201)): Supplier RUV: DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [49158] [24/Oct/2020:21:58:50.121379156 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [49399] [24/Oct/2020:21:58:50.125018781 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbd3000000010000 5f94dbd3 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [49695] [24/Oct/2020:21:58:50.129011174 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-138-103:39201) - (cscb 0 - state 1) - csnPrevMax () csnMax (5f94dbd3000000010000) csnBuf (00000000000000000000) csnConsumerMax (5f94dbd3000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [49819] [24/Oct/2020:21:58:50.132836862 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_load_buffer - rc=-30988 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [50091] [24/Oct/2020:21:58:50.136329261 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103: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 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [50240] [24/Oct/2020:21:58:50.139663579 -0400] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-138-103:39201): No changes to send DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [50404] [24/Oct/2020:21:58:50.146213254 -0400] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-138-103:39201): Successfully released consumer DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [50574] [24/Oct/2020:21:58:50.150357395 -0400] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-138-103:39201) - Beginning linger on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [50748] [24/Oct/2020:21:58:50.156443150 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: sending_updates -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [50870] [24/Oct/2020:21:58:51.851898941 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f94dbda0000:1603591130:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [50991] [24/Oct/2020:21:58:51.882866854 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f94dbdb0000:1603591131:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [51154] [24/Oct/2020:21:58:51.887145513 -0400] - DEBUG - NSMMReplicationPlugin - ruv_add_csn_inprogress - Successfully inserted csn 5f94dbdb000000010000 into pending list DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [51334] [24/Oct/2020:21:58:51.891807593 -0400] - DEBUG - NSMMReplicationPlugin - purge_entry_state_information - From entry cn=test_entry,dc=example,dc=com up to CSN 5f8ba153000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [51579] [24/Oct/2020:21:58:51.895538437 -0400] - DEBUG - NSMMReplicationPlugin - write_changelog_and_ruv - Writing change for cn=test_entry,dc=example,dc=com (uniqid: 75df2b8a-166511eb-bc32ee95-6b06a0af, optype: 8) to changelog csn 5f94dbdb000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [51754] [24/Oct/2020:21:58:51.898822233 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - cl5WriteOperationTxn - Successfully written entry with csn (5f94dbdb000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [51892] [24/Oct/2020:21:58:51.901929422 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: committing all csns for csn 5f94dbdb000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [52022] [24/Oct/2020:21:58:51.905033988 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: processing data csn 5f94dbdb000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [52160] [24/Oct/2020:21:58:51.908161467 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Successfully committed csn 5f94dbdb000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [52288] [24/Oct/2020:21:58:51.911261395 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Rolled up to csn 5f94dbdb000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [52403] [24/Oct/2020:21:58:51.914345431 -0400] - DEBUG - replication - multimaster_mmr_postop - error 0 for operation 561. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [52578] [24/Oct/2020:21:58:51.922068961 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: wait_for_changes -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [52761] [24/Oct/2020:21:58:51.925742707 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: wait_for_changes -> ready_to_acquire_replica DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [52933] [24/Oct/2020:21:58:51.929716341 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Canceling linger on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [53101] [24/Oct/2020:21:58:51.934482814 -0400] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-138-103:39201): Replica was successfully acquired. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [53283] [24/Oct/2020:21:58:51.938087851 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: ready_to_acquire_replica -> sending_updates DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [53398] [24/Oct/2020:21:58:51.942845362 -0400] - DEBUG - csngen_adjust_time - gen state before 5f94dbdb0002:1603591131:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [53579] [24/Oct/2020:21:58:51.946532903 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-138-103:39201)): Consumer RUV: DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [53735] [24/Oct/2020:21:58:51.951401954 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [53976] [24/Oct/2020:21:58:51.955092989 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbd3000000010000 00000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [54157] [24/Oct/2020:21:58:51.958489232 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-138-103:39201)): Supplier RUV: DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [54313] [24/Oct/2020:21:58:51.962815012 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [54554] [24/Oct/2020:21:58:51.966958460 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbdb000000010000 5f94dbdb DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [54716] [24/Oct/2020:21:58:51.970474448 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_get_buffer - found thread private buffer cache 0x7fad1ce98700 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [54943] [24/Oct/2020:21:58:51.973955788 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_get_buffer - _pool is 0x7fad4aa6d360 _pool->pl_busy_lists is 0x7fad1ceec600 _pool->pl_busy_lists->bl_buffers is 0x7fad1ce98700 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [55239] [24/Oct/2020:21:58:51.977851685 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-138-103:39201) - (cscb 0 - state 0) - csnPrevMax () csnMax (5f94dbdb000000010000) csnBuf (00000000000000000000) csnConsumerMax (5f94dbd3000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [55352] [24/Oct/2020:21:58:51.982220996 -0400] - DEBUG - clcache_initial_anchorcsn - anchor is now: 5f94dbd3000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [55543] [24/Oct/2020:21:58:51.986734664 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - agmt="cn=201" (ci-vm-10-0-138-103:39201): CSN 5f94dbd3000000010000 found, position set for replay DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [55699] [24/Oct/2020:21:58:51.991113323 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_get_next_change - load=1 rec=1 csn=5f94dbdb000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [55811] [24/Oct/2020:21:58:51.994789623 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Starting DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [55943] [24/Oct/2020:21:58:51.998985738 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [56163] [24/Oct/2020:21:58:52.004622890 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-138-103:39201): Sending modify operation (dn="cn=test_entry,dc=example,dc=com" csn=5f94dbdb000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [56361] [24/Oct/2020:21:58:52.009359447 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-138-103:39201): Consumer successfully sent operation with csn 5f94dbdb000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [56676] [24/Oct/2020:21:58:52.015377075 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_adjust_anchorcsn - agmt="cn=201" (ci-vm-10-0-138-103:39201) - (cscb 0 - state 1) - csnPrevMax (5f94dbdb000000010000) csnMax (5f94dbdb000000010000) csnBuf (5f94dbdb000000010000) csnConsumerMax (5f94dbdb000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [56800] [24/Oct/2020:21:58:52.023077247 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_load_buffer - rc=-30988 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [56984] [24/Oct/2020:21:58:52.026686430 -0400] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-138-103:39201): No more updates to send (cl5GetNextOperationToReplay) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [57096] [24/Oct/2020:21:58:52.033830795 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 0 10 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [57228] [24/Oct/2020:21:58:52.039600158 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [57361] [24/Oct/2020:21:58:52.045270786 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [57491] [24/Oct/2020:21:58:52.048874114 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Result 3, 0, 0, 10, (null) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [57624] [24/Oct/2020:21:58:52.054700798 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [57757] [24/Oct/2020:21:58:52.071443371 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [57890] [24/Oct/2020:21:58:52.077218020 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [58023] [24/Oct/2020:21:58:52.084737305 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [58156] [24/Oct/2020:21:58:52.096564448 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [58289] [24/Oct/2020:21:58:52.116128335 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [58402] [24/Oct/2020:21:58:52.139726552 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 10 10 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [58511] [24/Oct/2020:21:58:52.153995236 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain exiting DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [58783] [24/Oct/2020:21:58:52.158030953 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103: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 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [58947] [24/Oct/2020:21:58:52.165134577 -0400] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-138-103:39201): Successfully released consumer DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [59117] [24/Oct/2020:21:58:52.169136271 -0400] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-138-103:39201) - Beginning linger on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [59291] [24/Oct/2020:21:58:52.172401911 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: sending_updates -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [59291] DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:67 _pattern_errorlog: end at offset 59291
Passed suites/schema/schema_replication_test.py::test_schema_replication_seven 9.65
-------------------------------Captured log call--------------------------------
INFO  lib389:schema_replication_test.py:41 ############################################### INFO  lib389:schema_replication_test.py:42 ####### INFO  lib389:schema_replication_test.py:43 ####### Same OC - extra MAY: Schema is pushed - no error INFO  lib389:schema_replication_test.py:44 ####### INFO  lib389:schema_replication_test.py:45 ################################################### DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'12' (expected 13) INFO  lib389:agreement.py:1194 Pausing replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'13' (expected 14) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:562 test_schema_replication_seven master_schema_csn=b'5f94dbdd000000000000' DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:563 ctest_schema_replication_seven consumer_schema_csn=b'5f94dbdd000000000000' DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:55 _pattern_errorlog: start at offset 59292 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [59399] 24/Oct/2020:21:58:53.236029363 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [59507] [24/Oct/2020:21:58:53.303537532 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [59629] [24/Oct/2020:21:58:53.317748588 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f94dbdb0002:1603591131:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [59750] [24/Oct/2020:21:58:53.321950565 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f94dbdd0000:1603591133:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [59913] [24/Oct/2020:21:58:53.326057774 -0400] - DEBUG - NSMMReplicationPlugin - ruv_add_csn_inprogress - Successfully inserted csn 5f94dbdd000000010000 into pending list DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [60093] [24/Oct/2020:21:58:53.330698675 -0400] - DEBUG - NSMMReplicationPlugin - purge_entry_state_information - From entry cn=test_entry,dc=example,dc=com up to CSN 5f8ba15b000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [60338] [24/Oct/2020:21:58:53.335607121 -0400] - DEBUG - NSMMReplicationPlugin - write_changelog_and_ruv - Writing change for cn=test_entry,dc=example,dc=com (uniqid: 75df2b8a-166511eb-bc32ee95-6b06a0af, optype: 8) to changelog csn 5f94dbdd000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [60513] [24/Oct/2020:21:58:53.339505538 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - cl5WriteOperationTxn - Successfully written entry with csn (5f94dbdd000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [60651] [24/Oct/2020:21:58:53.342678643 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: committing all csns for csn 5f94dbdd000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [60781] [24/Oct/2020:21:58:53.345754020 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: processing data csn 5f94dbdd000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [60919] [24/Oct/2020:21:58:53.349196823 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Successfully committed csn 5f94dbdd000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [61047] [24/Oct/2020:21:58:53.352909952 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Rolled up to csn 5f94dbdd000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [61162] [24/Oct/2020:21:58:53.356158384 -0400] - DEBUG - replication - multimaster_mmr_postop - error 0 for operation 561. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [61337] [24/Oct/2020:21:58:53.361570420 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: wait_for_changes -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [61520] [24/Oct/2020:21:58:53.367502713 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: wait_for_changes -> ready_to_acquire_replica DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [61692] [24/Oct/2020:21:58:53.371610805 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Canceling linger on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [61860] [24/Oct/2020:21:58:53.376994909 -0400] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-138-103:39201): Replica was successfully acquired. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [62042] [24/Oct/2020:21:58:53.383496008 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: ready_to_acquire_replica -> sending_updates DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [62226] [24/Oct/2020:21:58:53.387078127 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5f94dbdd000000000000 / remotecsn:5f94dbd3000000000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [62389] [24/Oct/2020:21:58:53.513485335 -0400] - DEBUG - schema_oc_compare_strict - Attribute postOfficeBox is not allowed in 'masterNewOCA' of the remote consumer schema DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [62523] [24/Oct/2020:21:58:53.611139411 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5f94dbd3000000000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [62708] [24/Oct/2020:21:58:53.614909043 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - Schema checking successful: ok to push the schema (agmt="cn=201" (ci-vm-10-0-138-103:39201)) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [62823] [24/Oct/2020:21:58:53.809856713 -0400] - DEBUG - csngen_adjust_time - gen state before 5f94dbdd0002:1603591133:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [63004] [24/Oct/2020:21:58:53.814152098 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-138-103:39201)): Consumer RUV: DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [63160] [24/Oct/2020:21:58:53.818040787 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [63401] [24/Oct/2020:21:58:53.822029002 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbdb000000010000 00000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [63582] [24/Oct/2020:21:58:53.825562165 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-138-103:39201)): Supplier RUV: DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [63738] [24/Oct/2020:21:58:53.829488399 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [63979] [24/Oct/2020:21:58:53.833165088 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbdd000000010000 5f94dbdd DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [64141] [24/Oct/2020:21:58:53.839518455 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_get_buffer - found thread private buffer cache 0x7fad1ce98700 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [64368] [24/Oct/2020:21:58:53.843265675 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_get_buffer - _pool is 0x7fad4aa6d360 _pool->pl_busy_lists is 0x7fad1ceec600 _pool->pl_busy_lists->bl_buffers is 0x7fad1ce98700 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [64664] [24/Oct/2020:21:58:53.847210157 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-138-103:39201) - (cscb 0 - state 0) - csnPrevMax () csnMax (5f94dbdd000000010000) csnBuf (5f94dbdb000000010000) csnConsumerMax (5f94dbdb000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [64777] [24/Oct/2020:21:58:53.851522245 -0400] - DEBUG - clcache_initial_anchorcsn - anchor is now: 5f94dbdb000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [64968] [24/Oct/2020:21:58:53.855498534 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - agmt="cn=201" (ci-vm-10-0-138-103:39201): CSN 5f94dbdb000000010000 found, position set for replay DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [65124] [24/Oct/2020:21:58:53.858905613 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_get_next_change - load=1 rec=1 csn=5f94dbdd000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [65236] [24/Oct/2020:21:58:53.862683131 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Starting DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [65456] [24/Oct/2020:21:58:53.866472973 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-138-103:39201): Sending modify operation (dn="cn=test_entry,dc=example,dc=com" csn=5f94dbdd000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [65588] [24/Oct/2020:21:58:53.870948450 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [65786] [24/Oct/2020:21:58:53.878207895 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-138-103:39201): Consumer successfully sent operation with csn 5f94dbdd000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [65919] [24/Oct/2020:21:58:53.883130732 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 17 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [66049] [24/Oct/2020:21:58:53.886380849 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Result 3, 0, 0, 17, (null) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [66182] [24/Oct/2020:21:58:53.889080045 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 17 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [66497] [24/Oct/2020:21:58:53.894750154 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_adjust_anchorcsn - agmt="cn=201" (ci-vm-10-0-138-103:39201) - (cscb 0 - state 1) - csnPrevMax (5f94dbdd000000010000) csnMax (5f94dbdd000000010000) csnBuf (5f94dbdd000000010000) csnConsumerMax (5f94dbdd000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [66621] [24/Oct/2020:21:58:53.897630606 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_load_buffer - rc=-30988 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [66805] [24/Oct/2020:21:58:53.900550050 -0400] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-138-103:39201): No more updates to send (cl5GetNextOperationToReplay) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [66918] [24/Oct/2020:21:58:53.904840721 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 17 17 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [67051] [24/Oct/2020:21:58:53.907657391 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 17 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [67160] [24/Oct/2020:21:58:53.912666614 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain exiting DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [67432] [24/Oct/2020:21:58:53.915904251 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103: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 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [67596] [24/Oct/2020:21:58:53.922227732 -0400] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-138-103:39201): Successfully released consumer DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [67766] [24/Oct/2020:21:58:53.925381336 -0400] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-138-103:39201) - Beginning linger on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [67940] [24/Oct/2020:21:58:53.928180523 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: sending_updates -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [68048] [24/Oct/2020:21:58:54.366936465 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [68219] [24/Oct/2020:21:58:54.386308090 -0400] - DEBUG - NSMMReplicationPlugin - agmt_set_enabled_from_entry: agreement is now disabled (agmt="cn=201" (ci-vm-10-0-138-103:39201)) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [68394] [24/Oct/2020:21:58:54.389994908 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: wait_for_changes -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [68569] [24/Oct/2020:21:58:54.392155329 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: wait_for_changes -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [68741] [24/Oct/2020:21:58:54.397032125 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Canceling linger on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [68916] [24/Oct/2020:21:58:54.399408238 -0400] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Disconnected from the consumer DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [69081] [24/Oct/2020:21:58:54.490170226 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_stop - agmt="cn=201" (ci-vm-10-0-138-103:39201): Protocol stopped after 0 seconds DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [69209] [24/Oct/2020:21:58:54.494649169 -0400] - DEBUG - NSMMReplicationPlugin - Database RUV: {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [69422] [24/Oct/2020:21:58:54.497684102 -0400] - DEBUG - NSMMReplicationPlugin - Database RUV: {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbdd000000010000 5f94dbdd DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [69597] [24/Oct/2020:21:58:54.500803568 -0400] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Disconnected from the consumer DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [69705] [24/Oct/2020:21:58:54.504800031 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [69813] [24/Oct/2020:21:58:59.521797093 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [69983] [24/Oct/2020:21:58:59.525899017 -0400] - DEBUG - NSMMReplicationPlugin - agmt_set_enabled_from_entry: agreement is now enabled (agmt="cn=201" (ci-vm-10-0-138-103:39201)) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [70158] [24/Oct/2020:21:58:59.530151222 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-138-103:39201) - No linger to cancel on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [70333] [24/Oct/2020:21:58:59.532920274 -0400] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Disconnected from the consumer DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [70505] [24/Oct/2020:21:58:59.537174882 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: start -> ready_to_acquire_replica DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [70674] [24/Oct/2020:21:58:59.539958825 -0400] - DEBUG - NSMMReplicationPlugin - conn_connect - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Trying non-secure slapi_ldap_init_ext DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [71202] [24/Oct/2020:21:58:59.545442696 -0400] - DEBUG - NSMMReplicationPlugin - conn_connect - agmt="cn=201" (ci-vm-10-0-138-103:39201) - binddn = cn=ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701,ou=Services,dc=example,dc=com, passwd = {AES-TUhNR0NTcUdTSWIzRFFFRkRUQm1NRVVHQ1NxR1NJYjNEUUVGRERBNEJDUmtaVFV5WlRsbVl5MWtORGhrTTJJdw0KTlMxaFl6VTNNamcwT1Mxak1XVm1aVEEyTlFBQ0FRSUNBU0F3Q2dZSUtvWklodmNOQWdjd0hRWUpZSVpJQVdVRA0KQkFFcUJCQVp2SVAzRVVyb0R2VnBuR0x3TUJnOA==}ZFjo42R89StYxbxAu2558ZoopgwYgglQG66pfDUxhYjBRBhWitnhDjA78Q5tqlvB DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [71247] SwnTbk6t4UmyUW+1pul0b5J+krgjhKCjrlLfzspCuo4= DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [71422] [24/Oct/2020:21:58:59.549290986 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-138-103:39201) - No linger to cancel on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [71544] [24/Oct/2020:21:58:59.553807838 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f94dbdd0002:1603591133:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [71665] [24/Oct/2020:21:58:59.556600437 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f94dbe30000:1603591139:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [71833] [24/Oct/2020:21:58:59.560386819 -0400] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-138-103:39201): Replica was successfully acquired. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [72015] [24/Oct/2020:21:58:59.562806687 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: ready_to_acquire_replica -> sending_updates DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [72199] [24/Oct/2020:21:58:59.565345141 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5f94dbdd000000000000 / remotecsn:5f94dbd3000000000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [72333] [24/Oct/2020:21:58:59.798565484 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5f94dbdd000000000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [72448] [24/Oct/2020:21:58:59.801555584 -0400] - DEBUG - csngen_adjust_time - gen state before 5f94dbe30001:1603591139:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [72629] [24/Oct/2020:21:58:59.804276574 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-138-103:39201)): Consumer RUV: DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [72785] [24/Oct/2020:21:58:59.807952241 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [73026] [24/Oct/2020:21:58:59.810526035 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbdd000000010000 00000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [73207] [24/Oct/2020:21:58:59.812755967 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-138-103:39201)): Supplier RUV: DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [73363] [24/Oct/2020:21:58:59.815228091 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [73604] [24/Oct/2020:21:58:59.818322900 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbdd000000010000 5f94dbdd DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [73900] [24/Oct/2020:21:58:59.820602934 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-138-103:39201) - (cscb 0 - state 1) - csnPrevMax () csnMax (5f94dbdd000000010000) csnBuf (00000000000000000000) csnConsumerMax (5f94dbdd000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [74024] [24/Oct/2020:21:58:59.823038906 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_load_buffer - rc=-30988 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [74296] [24/Oct/2020:21:58:59.825347320 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103: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 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [74445] [24/Oct/2020:21:58:59.828013614 -0400] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-138-103:39201): No changes to send DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [74609] [24/Oct/2020:21:58:59.834113543 -0400] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-138-103:39201): Successfully released consumer DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [74779] [24/Oct/2020:21:58:59.837558916 -0400] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-138-103:39201) - Beginning linger on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [74953] [24/Oct/2020:21:58:59.840592573 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: sending_updates -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [75075] [24/Oct/2020:21:59:01.540958852 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f94dbe30001:1603591139:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [75196] [24/Oct/2020:21:59:01.574847638 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f94dbe50000:1603591141:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [75359] [24/Oct/2020:21:59:01.577672986 -0400] - DEBUG - NSMMReplicationPlugin - ruv_add_csn_inprogress - Successfully inserted csn 5f94dbe5000000010000 into pending list DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [75539] [24/Oct/2020:21:59:01.580998208 -0400] - DEBUG - NSMMReplicationPlugin - purge_entry_state_information - From entry cn=test_entry,dc=example,dc=com up to CSN 5f8ba15d000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [75784] [24/Oct/2020:21:59:01.583828117 -0400] - DEBUG - NSMMReplicationPlugin - write_changelog_and_ruv - Writing change for cn=test_entry,dc=example,dc=com (uniqid: 75df2b8a-166511eb-bc32ee95-6b06a0af, optype: 8) to changelog csn 5f94dbe5000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [75959] [24/Oct/2020:21:59:01.586493749 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - cl5WriteOperationTxn - Successfully written entry with csn (5f94dbe5000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [76097] [24/Oct/2020:21:59:01.588885814 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: committing all csns for csn 5f94dbe5000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [76227] [24/Oct/2020:21:59:01.591546982 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: processing data csn 5f94dbe5000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [76365] [24/Oct/2020:21:59:01.593837486 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Successfully committed csn 5f94dbe5000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [76493] [24/Oct/2020:21:59:01.596515085 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Rolled up to csn 5f94dbe5000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [76608] [24/Oct/2020:21:59:01.599970986 -0400] - DEBUG - replication - multimaster_mmr_postop - error 0 for operation 561. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [76783] [24/Oct/2020:21:59:01.609109952 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: wait_for_changes -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [76966] [24/Oct/2020:21:59:01.613710430 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: wait_for_changes -> ready_to_acquire_replica DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [77138] [24/Oct/2020:21:59:01.616430119 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Canceling linger on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [77306] [24/Oct/2020:21:59:01.620119054 -0400] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-138-103:39201): Replica was successfully acquired. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [77488] [24/Oct/2020:21:59:01.622666054 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: ready_to_acquire_replica -> sending_updates DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [77603] [24/Oct/2020:21:59:01.625189430 -0400] - DEBUG - csngen_adjust_time - gen state before 5f94dbe50002:1603591141:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [77784] [24/Oct/2020:21:59:01.628385056 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-138-103:39201)): Consumer RUV: DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [77940] [24/Oct/2020:21:59:01.630990149 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [78181] [24/Oct/2020:21:59:01.634709659 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbdd000000010000 00000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [78362] [24/Oct/2020:21:59:01.638382417 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-138-103:39201)): Supplier RUV: DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [78518] [24/Oct/2020:21:59:01.640989618 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [78759] [24/Oct/2020:21:59:01.643558236 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbe5000000010000 5f94dbe5 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [78921] [24/Oct/2020:21:59:01.646125352 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_get_buffer - found thread private buffer cache 0x7fad1ce98600 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [79148] [24/Oct/2020:21:59:01.649244295 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_get_buffer - _pool is 0x7fad4aa6d360 _pool->pl_busy_lists is 0x7fad1ceec600 _pool->pl_busy_lists->bl_buffers is 0x7fad1ce98600 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [79444] [24/Oct/2020:21:59:01.652883634 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-138-103:39201) - (cscb 0 - state 0) - csnPrevMax () csnMax (5f94dbe5000000010000) csnBuf (00000000000000000000) csnConsumerMax (5f94dbdd000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [79557] [24/Oct/2020:21:59:01.655331214 -0400] - DEBUG - clcache_initial_anchorcsn - anchor is now: 5f94dbdd000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [79748] [24/Oct/2020:21:59:01.658224374 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - agmt="cn=201" (ci-vm-10-0-138-103:39201): CSN 5f94dbdd000000010000 found, position set for replay DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [79904] [24/Oct/2020:21:59:01.661114970 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_get_next_change - load=1 rec=1 csn=5f94dbe5000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [80016] [24/Oct/2020:21:59:01.663823039 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Starting DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [80148] [24/Oct/2020:21:59:01.666633605 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [80368] [24/Oct/2020:21:59:01.669431397 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-138-103:39201): Sending modify operation (dn="cn=test_entry,dc=example,dc=com" csn=5f94dbe5000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [80500] [24/Oct/2020:21:59:01.672284564 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [80698] [24/Oct/2020:21:59:01.675304179 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-138-103:39201): Consumer successfully sent operation with csn 5f94dbe5000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [81013] [24/Oct/2020:21:59:01.680105736 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_adjust_anchorcsn - agmt="cn=201" (ci-vm-10-0-138-103:39201) - (cscb 0 - state 1) - csnPrevMax (5f94dbe5000000010000) csnMax (5f94dbe5000000010000) csnBuf (5f94dbe5000000010000) csnConsumerMax (5f94dbe5000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [81137] [24/Oct/2020:21:59:01.682617951 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_load_buffer - rc=-30988 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [81321] [24/Oct/2020:21:59:01.685650903 -0400] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-138-103:39201): No more updates to send (cl5GetNextOperationToReplay) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [81433] [24/Oct/2020:21:59:01.688306557 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 0 10 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [81565] [24/Oct/2020:21:59:01.690752711 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [81698] [24/Oct/2020:21:59:01.697530587 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [81828] [24/Oct/2020:21:59:01.700651276 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Result 3, 0, 0, 10, (null) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [81961] [24/Oct/2020:21:59:01.703592816 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [82094] [24/Oct/2020:21:59:01.707822767 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [82227] [24/Oct/2020:21:59:01.712366268 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [82360] [24/Oct/2020:21:59:01.719254348 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [82493] [24/Oct/2020:21:59:01.730093995 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [82626] [24/Oct/2020:21:59:01.749599948 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [82759] [24/Oct/2020:21:59:01.784841614 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [82872] [24/Oct/2020:21:59:01.790878381 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 10 10 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [82981] [24/Oct/2020:21:59:01.852300043 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain exiting DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [83253] [24/Oct/2020:21:59:01.855569334 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103: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 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [83417] [24/Oct/2020:21:59:01.861544044 -0400] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-138-103:39201): Successfully released consumer DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [83587] [24/Oct/2020:21:59:01.864431680 -0400] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-138-103:39201) - Beginning linger on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [83761] [24/Oct/2020:21:59:01.866921870 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: sending_updates -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [83761] DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:67 _pattern_errorlog: end at offset 83761
Passed suites/schema/schema_replication_test.py::test_schema_replication_eight 11.85
-------------------------------Captured log call--------------------------------
INFO  lib389:schema_replication_test.py:41 ############################################### INFO  lib389:schema_replication_test.py:42 ####### INFO  lib389:schema_replication_test.py:43 ####### Same OC - extra MAY: Schema is pushed (fix for 47721) INFO  lib389:schema_replication_test.py:44 ####### INFO  lib389:schema_replication_test.py:45 ################################################### DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'14' (expected 15) INFO  lib389:agreement.py:1194 Pausing replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'15' (expected 16) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:625 test_schema_replication_eight master_schema_csn=b'5f94dbe9000000000000' DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:626 ctest_schema_replication_eight onsumer_schema_csn=b'5f94dbe9000000000000' DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:55 _pattern_errorlog: start at offset 83762 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [83869] 24/Oct/2020:21:59:05.198975717 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [83977] [24/Oct/2020:21:59:05.264650279 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [84099] [24/Oct/2020:21:59:05.277311111 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f94dbe50002:1603591141:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [84220] [24/Oct/2020:21:59:05.280984756 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f94dbe90000:1603591145:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [84383] [24/Oct/2020:21:59:05.284194139 -0400] - DEBUG - NSMMReplicationPlugin - ruv_add_csn_inprogress - Successfully inserted csn 5f94dbe9000000010000 into pending list DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [84563] [24/Oct/2020:21:59:05.287457905 -0400] - DEBUG - NSMMReplicationPlugin - purge_entry_state_information - From entry cn=test_entry,dc=example,dc=com up to CSN 5f8ba165000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [84808] [24/Oct/2020:21:59:05.290736223 -0400] - DEBUG - NSMMReplicationPlugin - write_changelog_and_ruv - Writing change for cn=test_entry,dc=example,dc=com (uniqid: 75df2b8a-166511eb-bc32ee95-6b06a0af, optype: 8) to changelog csn 5f94dbe9000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [84983] [24/Oct/2020:21:59:05.293675072 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - cl5WriteOperationTxn - Successfully written entry with csn (5f94dbe9000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [85121] [24/Oct/2020:21:59:05.296637865 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: committing all csns for csn 5f94dbe9000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [85251] [24/Oct/2020:21:59:05.299937201 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: processing data csn 5f94dbe9000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [85389] [24/Oct/2020:21:59:05.304083101 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Successfully committed csn 5f94dbe9000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [85517] [24/Oct/2020:21:59:05.306756622 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Rolled up to csn 5f94dbe9000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [85632] [24/Oct/2020:21:59:05.310294206 -0400] - DEBUG - replication - multimaster_mmr_postop - error 0 for operation 561. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [85807] [24/Oct/2020:21:59:05.315681233 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: wait_for_changes -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [85990] [24/Oct/2020:21:59:05.318368097 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: wait_for_changes -> ready_to_acquire_replica DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [86162] [24/Oct/2020:21:59:05.320843059 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Canceling linger on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [86330] [24/Oct/2020:21:59:05.324803566 -0400] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-138-103:39201): Replica was successfully acquired. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [86512] [24/Oct/2020:21:59:05.327328288 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: ready_to_acquire_replica -> sending_updates DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [86696] [24/Oct/2020:21:59:05.330468886 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5f94dbe9000000000000 / remotecsn:5f94dbdd000000000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [86859] [24/Oct/2020:21:59:05.468034317 -0400] - DEBUG - schema_oc_compare_strict - Attribute postOfficeBox is not allowed in 'masterNewOCC' of the remote consumer schema DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [87024] [24/Oct/2020:21:59:05.471444712 -0400] - DEBUG - schema_oc_compare_strict - Attribute postOfficeBox is not allowed in 'consumerNewOCA' of the remote consumer schema DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [87178] [24/Oct/2020:21:59:05.475232865 -0400] - DEBUG - schema_oc_superset_check - Remote consumerNewOCA schema objectclasses is a superset of the received one. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [87341] [24/Oct/2020:21:59:05.479335201 -0400] - DEBUG - schema_oc_compare_strict - Attribute postOfficeBox is not allowed in 'masterNewOCC' of the remote consumer schema DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [87506] [24/Oct/2020:21:59:05.481974555 -0400] - DEBUG - schema_oc_compare_strict - Attribute postOfficeBox is not allowed in 'consumerNewOCA' of the remote consumer schema DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [87656] [24/Oct/2020:21:59:05.484227132 -0400] - DEBUG - schema_list_oc2learn - Add that unknown/extended objectclass consumerNewOCA (1.2.3.4.5.6.7.8.9.10.1) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [87956] [24/Oct/2020:21:59:05.486603765 -0400] - DEBUG - schema_oc_to_string - Replace (old[265]=( 1.2.3.4.5.6.7.8.9.10.1 NAME 'consumerNewOCA' DESC 'To test ticket 47490' SUP 'person' AUXILIARY MUST ( postalAddress $ preferredLocale $ telexNumber ) MAY ( postalCode $ street ) X-ORIGIN 'blahblahblah' )) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [88285] [24/Oct/2020:21:59:05.489362021 -0400] - DEBUG - supplier_get_new_definitions - supplier takes objectclass: ( 1.2.3.4.5.6.7.8.9.10.1 NAME 'consumerNewOCA' DESC 'To test ticket 47490' SUP person AUXILIARY MUST ( postalAddress $ preferredLocale $ telexNumber ) MAY ( postalCode $ street $ postOfficeBox ) X-ORIGIN 'user defined' ) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [88601] [24/Oct/2020:21:59:05.503199563 -0400] - DEBUG - modify_schema_prepare_mods - MOD[1] del (objectclasses): ( 1.2.3.4.5.6.7.8.9.10.1 NAME 'consumerNewOCA' DESC 'To test ticket 47490' SUP 'person' AUXILIARY MUST ( postalAddress $ preferredLocale $ telexNumber ) MAY ( postalCode $ street ) X-ORIGIN 'blahblahblah' ) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [88928] [24/Oct/2020:21:59:05.506241259 -0400] - DEBUG - modify_schema_prepare_mods - MOD[0] add (objectclasses): ( 1.2.3.4.5.6.7.8.9.10.1 NAME 'consumerNewOCA' DESC 'To test ticket 47490' SUP person AUXILIARY MUST ( postalAddress $ preferredLocale $ telexNumber ) MAY ( postalCode $ street $ postOfficeBox ) X-ORIGIN 'user defined' ) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [89036] [24/Oct/2020:21:59:05.510392443 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [89159] [24/Oct/2020:21:59:05.514773044 -0400] - DEBUG - modify_schema_internal_mod - Successfully learn objectclasses definitions DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [89373] [24/Oct/2020:21:59:05.518073886 -0400] - ERR - NSMMReplicationPlugin - update_consumer_schema - [S] Schema agmt="cn=201" (ci-vm-10-0-138-103:39201) must not be overwritten (set replication log for additional info) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:67 _pattern_errorlog: end at offset 89373
Passed suites/schema/schema_replication_test.py::test_schema_replication_nine 9.76
-------------------------------Captured log call--------------------------------
INFO  lib389:schema_replication_test.py:41 ############################################### INFO  lib389:schema_replication_test.py:42 ####### INFO  lib389:schema_replication_test.py:43 ####### Same OC - extra MAY: Schema is pushed - no error INFO  lib389:schema_replication_test.py:44 ####### INFO  lib389:schema_replication_test.py:45 ################################################### DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'16' (expected 17) INFO  lib389:agreement.py:1194 Pausing replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:152 trigger_update: receive b'17' (expected 18) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:683 test_schema_replication_nine master_schema_csn=b'5f94dbf3000000000000' DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:684 ctest_schema_replication_nine onsumer_schema_csn=b'5f94dbf3000000000000' DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:55 _pattern_errorlog: start at offset 89374 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [89510] 24/Oct/2020:21:59:05.521019810 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] schema definitions may have been learned DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [89673] [24/Oct/2020:21:59:05.648371150 -0400] - DEBUG - schema_oc_compare_strict - Attribute postOfficeBox is not allowed in 'masterNewOCC' of the remote consumer schema DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [89807] [24/Oct/2020:21:59:05.735161163 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5f94dbe7000000000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [89992] [24/Oct/2020:21:59:05.738536468 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - Schema checking successful: ok to push the schema (agmt="cn=201" (ci-vm-10-0-138-103:39201)) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [90107] [24/Oct/2020:21:59:05.928531796 -0400] - DEBUG - csngen_adjust_time - gen state before 5f94dbe90002:1603591145:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [90288] [24/Oct/2020:21:59:05.934391892 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-138-103:39201)): Consumer RUV: DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [90444] [24/Oct/2020:21:59:05.937728917 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [90685] [24/Oct/2020:21:59:05.940294892 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbe5000000010000 00000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [90866] [24/Oct/2020:21:59:05.943020672 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-138-103:39201)): Supplier RUV: DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [91022] [24/Oct/2020:21:59:05.945484853 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [91263] [24/Oct/2020:21:59:05.947881306 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbe9000000010000 5f94dbe9 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [91425] [24/Oct/2020:21:59:05.950353233 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_get_buffer - found thread private buffer cache 0x7fad1ce98600 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [91652] [24/Oct/2020:21:59:05.952894222 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_get_buffer - _pool is 0x7fad4aa6d360 _pool->pl_busy_lists is 0x7fad1ceec600 _pool->pl_busy_lists->bl_buffers is 0x7fad1ce98600 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [91948] [24/Oct/2020:21:59:05.955329832 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-138-103:39201) - (cscb 0 - state 0) - csnPrevMax () csnMax (5f94dbe9000000010000) csnBuf (5f94dbe5000000010000) csnConsumerMax (5f94dbe5000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [92061] [24/Oct/2020:21:59:05.957948877 -0400] - DEBUG - clcache_initial_anchorcsn - anchor is now: 5f94dbe5000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [92252] [24/Oct/2020:21:59:05.960768122 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - agmt="cn=201" (ci-vm-10-0-138-103:39201): CSN 5f94dbe5000000010000 found, position set for replay DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [92408] [24/Oct/2020:21:59:05.963700319 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_get_next_change - load=1 rec=1 csn=5f94dbe9000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [92520] [24/Oct/2020:21:59:05.966328594 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Starting DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [92740] [24/Oct/2020:21:59:05.969042178 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-138-103:39201): Sending modify operation (dn="cn=test_entry,dc=example,dc=com" csn=5f94dbe9000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [92872] [24/Oct/2020:21:59:05.972238233 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [93070] [24/Oct/2020:21:59:05.976448645 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-138-103:39201): Consumer successfully sent operation with csn 5f94dbe9000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [93203] [24/Oct/2020:21:59:05.979114753 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 19 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [93333] [24/Oct/2020:21:59:05.981690085 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Result 3, 0, 0, 19, (null) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [93648] [24/Oct/2020:21:59:05.984916373 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_adjust_anchorcsn - agmt="cn=201" (ci-vm-10-0-138-103:39201) - (cscb 0 - state 1) - csnPrevMax (5f94dbe9000000010000) csnMax (5f94dbe9000000010000) csnBuf (5f94dbe9000000010000) csnConsumerMax (5f94dbe9000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [93772] [24/Oct/2020:21:59:05.987892707 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_load_buffer - rc=-30988 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [93956] [24/Oct/2020:21:59:05.990984351 -0400] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-138-103:39201): No more updates to send (cl5GetNextOperationToReplay) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [94069] [24/Oct/2020:21:59:05.993976158 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 19 19 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [94202] [24/Oct/2020:21:59:05.999072382 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 19 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [94311] [24/Oct/2020:21:59:06.003634096 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain exiting DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [94583] [24/Oct/2020:21:59:06.007121238 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103: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 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [94747] [24/Oct/2020:21:59:06.013993346 -0400] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-138-103:39201): Successfully released consumer DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [94917] [24/Oct/2020:21:59:06.017108566 -0400] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-138-103:39201) - Beginning linger on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [95091] [24/Oct/2020:21:59:06.021354770 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: sending_updates -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [95199] [24/Oct/2020:21:59:06.321287901 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [95370] [24/Oct/2020:21:59:06.409229522 -0400] - DEBUG - NSMMReplicationPlugin - agmt_set_enabled_from_entry: agreement is now disabled (agmt="cn=201" (ci-vm-10-0-138-103:39201)) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [95545] [24/Oct/2020:21:59:06.412520099 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: wait_for_changes -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [95720] [24/Oct/2020:21:59:06.415795823 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: wait_for_changes -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [95892] [24/Oct/2020:21:59:06.418612589 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Canceling linger on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [96067] [24/Oct/2020:21:59:06.421662082 -0400] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Disconnected from the consumer DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [96232] [24/Oct/2020:21:59:06.512491475 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_stop - agmt="cn=201" (ci-vm-10-0-138-103:39201): Protocol stopped after 0 seconds DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [96360] [24/Oct/2020:21:59:06.515622574 -0400] - DEBUG - NSMMReplicationPlugin - Database RUV: {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [96573] [24/Oct/2020:21:59:06.518621169 -0400] - DEBUG - NSMMReplicationPlugin - Database RUV: {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbe9000000010000 5f94dbe9 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [96748] [24/Oct/2020:21:59:06.521477067 -0400] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Disconnected from the consumer DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [96856] [24/Oct/2020:21:59:06.525339373 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [96964] [24/Oct/2020:21:59:11.542376558 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [97134] [24/Oct/2020:21:59:11.548000829 -0400] - DEBUG - NSMMReplicationPlugin - agmt_set_enabled_from_entry: agreement is now enabled (agmt="cn=201" (ci-vm-10-0-138-103:39201)) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [97309] [24/Oct/2020:21:59:11.553027291 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-138-103:39201) - No linger to cancel on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [97484] [24/Oct/2020:21:59:11.556247835 -0400] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Disconnected from the consumer DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [97656] [24/Oct/2020:21:59:11.559825500 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: start -> ready_to_acquire_replica DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [97825] [24/Oct/2020:21:59:11.563356298 -0400] - DEBUG - NSMMReplicationPlugin - conn_connect - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Trying non-secure slapi_ldap_init_ext DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [98353] [24/Oct/2020:21:59:11.566193405 -0400] - DEBUG - NSMMReplicationPlugin - conn_connect - agmt="cn=201" (ci-vm-10-0-138-103:39201) - binddn = cn=ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701,ou=Services,dc=example,dc=com, passwd = {AES-TUhNR0NTcUdTSWIzRFFFRkRUQm1NRVVHQ1NxR1NJYjNEUUVGRERBNEJDUmtaVFV5WlRsbVl5MWtORGhrTTJJdw0KTlMxaFl6VTNNamcwT1Mxak1XVm1aVEEyTlFBQ0FRSUNBU0F3Q2dZSUtvWklodmNOQWdjd0hRWUpZSVpJQVdVRA0KQkFFcUJCQVp2SVAzRVVyb0R2VnBuR0x3TUJnOA==}ZFjo42R89StYxbxAu2558ZoopgwYgglQG66pfDUxhYjBRBhWitnhDjA78Q5tqlvB DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [98398] SwnTbk6t4UmyUW+1pul0b5J+krgjhKCjrlLfzspCuo4= DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [98573] [24/Oct/2020:21:59:11.570758981 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-138-103:39201) - No linger to cancel on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [98695] [24/Oct/2020:21:59:11.822303477 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f94dbe90002:1603591145:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [98816] [24/Oct/2020:21:59:11.828508237 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f94dbef0000:1603591151:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [98984] [24/Oct/2020:21:59:11.833707359 -0400] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-138-103:39201): Replica was successfully acquired. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [99166] [24/Oct/2020:21:59:11.839877312 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: ready_to_acquire_replica -> sending_updates DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [99350] [24/Oct/2020:21:59:11.842570046 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5f94dbe9000000000000 / remotecsn:5f94dbe7000000000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [99484] [24/Oct/2020:21:59:12.067839045 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5f94dbe9000000000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [99599] [24/Oct/2020:21:59:12.076630577 -0400] - DEBUG - csngen_adjust_time - gen state before 5f94dbef0001:1603591151:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [99721] [24/Oct/2020:21:59:12.079538763 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f94dbef0001:1603591151:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [99842] [24/Oct/2020:21:59:12.082251832 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f94dbf00000:1603591152:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [100023] [24/Oct/2020:21:59:12.084748727 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-138-103:39201)): Consumer RUV: DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [100179] [24/Oct/2020:21:59:12.087397430 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [100420] [24/Oct/2020:21:59:12.091893666 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbe9000000010000 00000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [100601] [24/Oct/2020:21:59:12.095508211 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-138-103:39201)): Supplier RUV: DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [100757] [24/Oct/2020:21:59:12.101197826 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [100998] [24/Oct/2020:21:59:12.104814496 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbe9000000010000 5f94dbe9 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [101294] [24/Oct/2020:21:59:12.107898271 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-138-103:39201) - (cscb 0 - state 1) - csnPrevMax () csnMax (5f94dbe9000000010000) csnBuf (00000000000000000000) csnConsumerMax (5f94dbe9000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [101418] [24/Oct/2020:21:59:12.111076084 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_load_buffer - rc=-30988 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [101690] [24/Oct/2020:21:59:12.113981259 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103: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 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [101839] [24/Oct/2020:21:59:12.116785854 -0400] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-138-103:39201): No changes to send DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [102003] [24/Oct/2020:21:59:12.122864379 -0400] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-138-103:39201): Successfully released consumer DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [102173] [24/Oct/2020:21:59:12.127149520 -0400] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-138-103:39201) - Beginning linger on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [102347] [24/Oct/2020:21:59:12.130574042 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: sending_updates -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [102469] [24/Oct/2020:21:59:13.560819734 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f94dbf00000:1603591152:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [102590] [24/Oct/2020:21:59:13.569755481 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f94dbf10000:1603591153:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [102753] [24/Oct/2020:21:59:13.572565639 -0400] - DEBUG - NSMMReplicationPlugin - ruv_add_csn_inprogress - Successfully inserted csn 5f94dbf1000000010000 into pending list DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [102933] [24/Oct/2020:21:59:13.575278564 -0400] - DEBUG - NSMMReplicationPlugin - purge_entry_state_information - From entry cn=test_entry,dc=example,dc=com up to CSN 5f8ba169000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [103178] [24/Oct/2020:21:59:13.578186971 -0400] - DEBUG - NSMMReplicationPlugin - write_changelog_and_ruv - Writing change for cn=test_entry,dc=example,dc=com (uniqid: 75df2b8a-166511eb-bc32ee95-6b06a0af, optype: 8) to changelog csn 5f94dbf1000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [103353] [24/Oct/2020:21:59:13.580945935 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - cl5WriteOperationTxn - Successfully written entry with csn (5f94dbf1000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [103491] [24/Oct/2020:21:59:13.584123295 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: committing all csns for csn 5f94dbf1000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [103621] [24/Oct/2020:21:59:13.586965629 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: processing data csn 5f94dbf1000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [103759] [24/Oct/2020:21:59:13.590193420 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Successfully committed csn 5f94dbf1000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [103887] [24/Oct/2020:21:59:13.593208559 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Rolled up to csn 5f94dbf1000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [104002] [24/Oct/2020:21:59:13.599960059 -0400] - DEBUG - replication - multimaster_mmr_postop - error 0 for operation 561. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [104177] [24/Oct/2020:21:59:13.607065569 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: wait_for_changes -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [104360] [24/Oct/2020:21:59:13.626067721 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: wait_for_changes -> ready_to_acquire_replica DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [104532] [24/Oct/2020:21:59:13.629361032 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Canceling linger on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [104700] [24/Oct/2020:21:59:13.633647733 -0400] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-138-103:39201): Replica was successfully acquired. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [104882] [24/Oct/2020:21:59:13.636828090 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: ready_to_acquire_replica -> sending_updates DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [104997] [24/Oct/2020:21:59:13.639695901 -0400] - DEBUG - csngen_adjust_time - gen state before 5f94dbf10002:1603591153:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [105178] [24/Oct/2020:21:59:13.642856228 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-138-103:39201)): Consumer RUV: DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [105334] [24/Oct/2020:21:59:13.645972836 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [105575] [24/Oct/2020:21:59:13.648697411 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbe9000000010000 00000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [105756] [24/Oct/2020:21:59:13.652099312 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-138-103:39201)): Supplier RUV: DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [105912] [24/Oct/2020:21:59:13.655221739 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [106153] [24/Oct/2020:21:59:13.658388582 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbf1000000010000 5f94dbf1 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [106315] [24/Oct/2020:21:59:13.661332747 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_get_buffer - found thread private buffer cache 0x7fad1ce98800 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [106542] [24/Oct/2020:21:59:13.664380267 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_get_buffer - _pool is 0x7fad4aa6d360 _pool->pl_busy_lists is 0x7fad1ceec600 _pool->pl_busy_lists->bl_buffers is 0x7fad1ce98800 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [106838] [24/Oct/2020:21:59:13.667727174 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-138-103:39201) - (cscb 0 - state 0) - csnPrevMax () csnMax (5f94dbf1000000010000) csnBuf (00000000000000000000) csnConsumerMax (5f94dbe9000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [106951] [24/Oct/2020:21:59:13.670662484 -0400] - DEBUG - clcache_initial_anchorcsn - anchor is now: 5f94dbe9000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [107142] [24/Oct/2020:21:59:13.674006049 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - agmt="cn=201" (ci-vm-10-0-138-103:39201): CSN 5f94dbe9000000010000 found, position set for replay DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [107298] [24/Oct/2020:21:59:13.677060503 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_get_next_change - load=1 rec=1 csn=5f94dbf1000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [107410] [24/Oct/2020:21:59:13.680403307 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Starting DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [107630] [24/Oct/2020:21:59:13.683589531 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-138-103:39201): Sending modify operation (dn="cn=test_entry,dc=example,dc=com" csn=5f94dbf1000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [107762] [24/Oct/2020:21:59:13.686623546 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [107960] [24/Oct/2020:21:59:13.691107822 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-138-103:39201): Consumer successfully sent operation with csn 5f94dbf1000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [108275] [24/Oct/2020:21:59:13.697012971 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_adjust_anchorcsn - agmt="cn=201" (ci-vm-10-0-138-103:39201) - (cscb 0 - state 1) - csnPrevMax (5f94dbf1000000010000) csnMax (5f94dbf1000000010000) csnBuf (5f94dbf1000000010000) csnConsumerMax (5f94dbf1000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [108399] [24/Oct/2020:21:59:13.703038228 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_load_buffer - rc=-30988 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [108583] [24/Oct/2020:21:59:13.706149192 -0400] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-138-103:39201): No more updates to send (cl5GetNextOperationToReplay) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [108695] [24/Oct/2020:21:59:13.708943356 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 0 10 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [108827] [24/Oct/2020:21:59:13.712256356 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [108960] [24/Oct/2020:21:59:13.717637174 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [109090] [24/Oct/2020:21:59:13.721316938 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Result 3, 0, 0, 10, (null) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [109223] [24/Oct/2020:21:59:13.724570498 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [109356] [24/Oct/2020:21:59:13.729487304 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [109489] [24/Oct/2020:21:59:13.735153145 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [109622] [24/Oct/2020:21:59:13.745331656 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [109755] [24/Oct/2020:21:59:13.757573395 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [109888] [24/Oct/2020:21:59:13.780245105 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 10 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [110001] [24/Oct/2020:21:59:13.812284429 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 10 10 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [110110] [24/Oct/2020:21:59:13.816527607 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain exiting DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [110382] [24/Oct/2020:21:59:13.819599305 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103: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 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [110546] [24/Oct/2020:21:59:13.826210729 -0400] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-138-103:39201): Successfully released consumer DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [110716] [24/Oct/2020:21:59:13.830603486 -0400] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-138-103:39201) - Beginning linger on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [110890] [24/Oct/2020:21:59:13.834159734 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: sending_updates -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [110998] [24/Oct/2020:21:59:14.938361938 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [111106] [24/Oct/2020:21:59:15.116272484 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [111228] [24/Oct/2020:21:59:15.167530512 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f94dbf10002:1603591153:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [111349] [24/Oct/2020:21:59:15.176417565 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f94dbf30000:1603591155:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [111512] [24/Oct/2020:21:59:15.181538047 -0400] - DEBUG - NSMMReplicationPlugin - ruv_add_csn_inprogress - Successfully inserted csn 5f94dbf3000000010000 into pending list DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [111692] [24/Oct/2020:21:59:15.185800967 -0400] - DEBUG - NSMMReplicationPlugin - purge_entry_state_information - From entry cn=test_entry,dc=example,dc=com up to CSN 5f8ba171000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [111937] [24/Oct/2020:21:59:15.192969445 -0400] - DEBUG - NSMMReplicationPlugin - write_changelog_and_ruv - Writing change for cn=test_entry,dc=example,dc=com (uniqid: 75df2b8a-166511eb-bc32ee95-6b06a0af, optype: 8) to changelog csn 5f94dbf3000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [112112] [24/Oct/2020:21:59:15.196771695 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - cl5WriteOperationTxn - Successfully written entry with csn (5f94dbf3000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [112250] [24/Oct/2020:21:59:15.203562554 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: committing all csns for csn 5f94dbf3000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [112380] [24/Oct/2020:21:59:15.206936018 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: processing data csn 5f94dbf3000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [112518] [24/Oct/2020:21:59:15.210468581 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Successfully committed csn 5f94dbf3000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [112646] [24/Oct/2020:21:59:15.213514734 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Rolled up to csn 5f94dbf3000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [112761] [24/Oct/2020:21:59:15.216808419 -0400] - DEBUG - replication - multimaster_mmr_postop - error 0 for operation 561. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [112936] [24/Oct/2020:21:59:15.222150842 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: wait_for_changes -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [113119] [24/Oct/2020:21:59:15.225408905 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: wait_for_changes -> ready_to_acquire_replica DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [113291] [24/Oct/2020:21:59:15.228567858 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Canceling linger on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [113459] [24/Oct/2020:21:59:15.232587306 -0400] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-138-103:39201): Replica was successfully acquired. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [113641] [24/Oct/2020:21:59:15.235902622 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: ready_to_acquire_replica -> sending_updates DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [113825] [24/Oct/2020:21:59:15.239314111 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5f94dbf3000000000000 / remotecsn:5f94dbe9000000000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [113959] [24/Oct/2020:21:59:15.470244744 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5f94dbe9000000000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [114144] [24/Oct/2020:21:59:15.482345400 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - Schema checking successful: ok to push the schema (agmt="cn=201" (ci-vm-10-0-138-103:39201)) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [114259] [24/Oct/2020:21:59:15.685978160 -0400] - DEBUG - csngen_adjust_time - gen state before 5f94dbf30002:1603591155:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [114440] [24/Oct/2020:21:59:15.701023828 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-138-103:39201)): Consumer RUV: DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [114596] [24/Oct/2020:21:59:15.704774184 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [114837] [24/Oct/2020:21:59:15.708081713 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbf1000000010000 00000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [115018] [24/Oct/2020:21:59:15.711214120 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-138-103:39201)): Supplier RUV: DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [115174] [24/Oct/2020:21:59:15.713897995 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [115415] [24/Oct/2020:21:59:15.716497291 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbf3000000010000 5f94dbf3 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [115577] [24/Oct/2020:21:59:15.719538228 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_get_buffer - found thread private buffer cache 0x7fad1ce98800 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [115804] [24/Oct/2020:21:59:15.722913505 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_get_buffer - _pool is 0x7fad4aa6d360 _pool->pl_busy_lists is 0x7fad1ceec600 _pool->pl_busy_lists->bl_buffers is 0x7fad1ce98800 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [116100] [24/Oct/2020:21:59:15.726106787 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-138-103:39201) - (cscb 0 - state 0) - csnPrevMax () csnMax (5f94dbf3000000010000) csnBuf (5f94dbf1000000010000) csnConsumerMax (5f94dbf1000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [116213] [24/Oct/2020:21:59:15.729005570 -0400] - DEBUG - clcache_initial_anchorcsn - anchor is now: 5f94dbf1000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [116404] [24/Oct/2020:21:59:15.732240112 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - agmt="cn=201" (ci-vm-10-0-138-103:39201): CSN 5f94dbf1000000010000 found, position set for replay DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [116560] [24/Oct/2020:21:59:15.736822248 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_get_next_change - load=1 rec=1 csn=5f94dbf3000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [116672] [24/Oct/2020:21:59:15.761778077 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Starting DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [116892] [24/Oct/2020:21:59:15.771400943 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-138-103:39201): Sending modify operation (dn="cn=test_entry,dc=example,dc=com" csn=5f94dbf3000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [117024] [24/Oct/2020:21:59:15.775758690 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [117222] [24/Oct/2020:21:59:15.779375419 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-138-103:39201): Consumer successfully sent operation with csn 5f94dbf3000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [117355] [24/Oct/2020:21:59:15.783188028 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 17 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [117485] [24/Oct/2020:21:59:15.788495807 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Result 3, 0, 0, 17, (null) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [117618] [24/Oct/2020:21:59:15.791172354 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 17 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [117933] [24/Oct/2020:21:59:15.794450894 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_adjust_anchorcsn - agmt="cn=201" (ci-vm-10-0-138-103:39201) - (cscb 0 - state 1) - csnPrevMax (5f94dbf3000000010000) csnMax (5f94dbf3000000010000) csnBuf (5f94dbf3000000010000) csnConsumerMax (5f94dbf3000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [118057] [24/Oct/2020:21:59:15.797676804 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_load_buffer - rc=-30988 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [118241] [24/Oct/2020:21:59:15.800783705 -0400] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-138-103:39201): No more updates to send (cl5GetNextOperationToReplay) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [118354] [24/Oct/2020:21:59:15.804031934 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 17 17 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [118487] [24/Oct/2020:21:59:15.808565812 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 17 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [118596] [24/Oct/2020:21:59:15.813674086 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain exiting DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [118868] [24/Oct/2020:21:59:15.817101286 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103: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 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [119032] [24/Oct/2020:21:59:15.823667752 -0400] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-138-103:39201): Successfully released consumer DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [119202] [24/Oct/2020:21:59:15.826896431 -0400] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-138-103:39201) - Beginning linger on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [119376] [24/Oct/2020:21:59:15.831515413 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: sending_updates -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [119484] [24/Oct/2020:21:59:15.834879527 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [119599] [24/Oct/2020:21:59:15.841118557 -0400] - DEBUG - replication - multimaster_mmr_postop - error 0 for operation 561. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [119707] [24/Oct/2020:21:59:16.225478903 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [119878] [24/Oct/2020:21:59:16.229251814 -0400] - DEBUG - NSMMReplicationPlugin - agmt_set_enabled_from_entry: agreement is now disabled (agmt="cn=201" (ci-vm-10-0-138-103:39201)) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [120053] [24/Oct/2020:21:59:16.232933962 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: wait_for_changes -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [120228] [24/Oct/2020:21:59:16.236323027 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: wait_for_changes -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [120400] [24/Oct/2020:21:59:16.240275672 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Canceling linger on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [120575] [24/Oct/2020:21:59:16.247481766 -0400] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Disconnected from the consumer DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [120740] [24/Oct/2020:21:59:16.333131204 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_stop - agmt="cn=201" (ci-vm-10-0-138-103:39201): Protocol stopped after 0 seconds DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [120868] [24/Oct/2020:21:59:16.342135214 -0400] - DEBUG - NSMMReplicationPlugin - Database RUV: {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [121081] [24/Oct/2020:21:59:16.383800261 -0400] - DEBUG - NSMMReplicationPlugin - Database RUV: {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbf3000000010000 5f94dbf3 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [121256] [24/Oct/2020:21:59:16.387142515 -0400] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Disconnected from the consumer DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [121364] [24/Oct/2020:21:59:16.394608849 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [121472] [24/Oct/2020:21:59:21.412843731 -0400] - DEBUG - replication - copy_operation_parameters - replica is null. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [121642] [24/Oct/2020:21:59:21.416951742 -0400] - DEBUG - NSMMReplicationPlugin - agmt_set_enabled_from_entry: agreement is now enabled (agmt="cn=201" (ci-vm-10-0-138-103:39201)) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [121817] [24/Oct/2020:21:59:21.420689002 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-138-103:39201) - No linger to cancel on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [121992] [24/Oct/2020:21:59:21.424472911 -0400] - DEBUG - NSMMReplicationPlugin - close_connection_internal - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Disconnected from the consumer DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [122164] [24/Oct/2020:21:59:21.428850620 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: start -> ready_to_acquire_replica DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [122333] [24/Oct/2020:21:59:21.432495543 -0400] - DEBUG - NSMMReplicationPlugin - conn_connect - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Trying non-secure slapi_ldap_init_ext DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [122861] [24/Oct/2020:21:59:21.437093121 -0400] - DEBUG - NSMMReplicationPlugin - conn_connect - agmt="cn=201" (ci-vm-10-0-138-103:39201) - binddn = cn=ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701,ou=Services,dc=example,dc=com, passwd = {AES-TUhNR0NTcUdTSWIzRFFFRkRUQm1NRVVHQ1NxR1NJYjNEUUVGRERBNEJDUmtaVFV5WlRsbVl5MWtORGhrTTJJdw0KTlMxaFl6VTNNamcwT1Mxak1XVm1aVEEyTlFBQ0FRSUNBU0F3Q2dZSUtvWklodmNOQWdjd0hRWUpZSVpJQVdVRA0KQkFFcUJCQVp2SVAzRVVyb0R2VnBuR0x3TUJnOA==}ZFjo42R89StYxbxAu2558ZoopgwYgglQG66pfDUxhYjBRBhWitnhDjA78Q5tqlvB DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [122906] SwnTbk6t4UmyUW+1pul0b5J+krgjhKCjrlLfzspCuo4= DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [123081] [24/Oct/2020:21:59:21.442347307 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-138-103:39201) - No linger to cancel on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [123203] [24/Oct/2020:21:59:21.447632610 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f94dbf30002:1603591155:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [123324] [24/Oct/2020:21:59:21.450825772 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f94dbf90000:1603591161:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [123492] [24/Oct/2020:21:59:21.456108446 -0400] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-138-103:39201): Replica was successfully acquired. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [123674] [24/Oct/2020:21:59:21.459547889 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: ready_to_acquire_replica -> sending_updates DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [123858] [24/Oct/2020:21:59:21.462475320 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Checking consumer schema localcsn:5f94dbf3000000000000 / remotecsn:5f94dbe9000000000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [123992] [24/Oct/2020:21:59:21.679213011 -0400] - DEBUG - NSMMReplicationPlugin - conn_push_schema - [S] Reread remotecsn:5f94dbf3000000000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [124107] [24/Oct/2020:21:59:21.684951508 -0400] - DEBUG - csngen_adjust_time - gen state before 5f94dbf90001:1603591161:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [124288] [24/Oct/2020:21:59:21.689502095 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-138-103:39201)): Consumer RUV: DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [124444] [24/Oct/2020:21:59:21.695103185 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [124685] [24/Oct/2020:21:59:21.698049643 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbf3000000010000 00000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [124866] [24/Oct/2020:21:59:21.701071182 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-138-103:39201)): Supplier RUV: DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [125022] [24/Oct/2020:21:59:21.704860120 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [125263] [24/Oct/2020:21:59:21.708384940 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbf3000000010000 5f94dbf3 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [125559] [24/Oct/2020:21:59:21.711853967 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-138-103:39201) - (cscb 0 - state 1) - csnPrevMax () csnMax (5f94dbf3000000010000) csnBuf (00000000000000000000) csnConsumerMax (5f94dbf3000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [125683] [24/Oct/2020:21:59:21.715125497 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_load_buffer - rc=-30988 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [125955] [24/Oct/2020:21:59:21.718885037 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103: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 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [126104] [24/Oct/2020:21:59:21.722682386 -0400] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-138-103:39201): No changes to send DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [126268] [24/Oct/2020:21:59:21.730045411 -0400] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-138-103:39201): Successfully released consumer DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [126438] [24/Oct/2020:21:59:21.734506923 -0400] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-138-103:39201) - Beginning linger on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [126612] [24/Oct/2020:21:59:21.739089963 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: sending_updates -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [126734] [24/Oct/2020:21:59:23.427885456 -0400] - DEBUG - _csngen_adjust_local_time - gen state before 5f94dbf90001:1603591161:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [126855] [24/Oct/2020:21:59:23.431702881 -0400] - DEBUG - _csngen_adjust_local_time - gen state after 5f94dbfb0000:1603591163:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [127018] [24/Oct/2020:21:59:23.434626621 -0400] - DEBUG - NSMMReplicationPlugin - ruv_add_csn_inprogress - Successfully inserted csn 5f94dbfb000000010000 into pending list DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [127198] [24/Oct/2020:21:59:23.442370271 -0400] - DEBUG - NSMMReplicationPlugin - purge_entry_state_information - From entry cn=test_entry,dc=example,dc=com up to CSN 5f8ba173000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [127443] [24/Oct/2020:21:59:23.446166217 -0400] - DEBUG - NSMMReplicationPlugin - write_changelog_and_ruv - Writing change for cn=test_entry,dc=example,dc=com (uniqid: 75df2b8a-166511eb-bc32ee95-6b06a0af, optype: 8) to changelog csn 5f94dbfb000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [127618] [24/Oct/2020:21:59:23.449736127 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - cl5WriteOperationTxn - Successfully written entry with csn (5f94dbfb000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [127756] [24/Oct/2020:21:59:23.453854426 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: committing all csns for csn 5f94dbfb000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [127886] [24/Oct/2020:21:59:23.457661462 -0400] - DEBUG - NSMMReplicationPlugin - csnplCommitALL: processing data csn 5f94dbfb000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [128024] [24/Oct/2020:21:59:23.464377761 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Successfully committed csn 5f94dbfb000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [128152] [24/Oct/2020:21:59:23.473479335 -0400] - DEBUG - NSMMReplicationPlugin - ruv_update_ruv - Rolled up to csn 5f94dbfb000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [128267] [24/Oct/2020:21:59:23.478478762 -0400] - DEBUG - replication - multimaster_mmr_postop - error 0 for operation 561. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [128442] [24/Oct/2020:21:59:23.486156614 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: wait_for_changes -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [128625] [24/Oct/2020:21:59:23.490095284 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: wait_for_changes -> ready_to_acquire_replica DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [128797] [24/Oct/2020:21:59:23.496944249 -0400] - DEBUG - NSMMReplicationPlugin - conn_cancel_linger - agmt="cn=201" (ci-vm-10-0-138-103:39201) - Canceling linger on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [128965] [24/Oct/2020:21:59:23.502812893 -0400] - DEBUG - NSMMReplicationPlugin - acquire_replica - agmt="cn=201" (ci-vm-10-0-138-103:39201): Replica was successfully acquired. DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [129147] [24/Oct/2020:21:59:23.506486150 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: ready_to_acquire_replica -> sending_updates DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [129262] [24/Oct/2020:21:59:23.510030879 -0400] - DEBUG - csngen_adjust_time - gen state before 5f94dbfb0002:1603591163:0:0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [129443] [24/Oct/2020:21:59:23.516268501 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-138-103:39201)): Consumer RUV: DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [129599] [24/Oct/2020:21:59:23.520349849 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [129840] [24/Oct/2020:21:59:23.524956120 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbf3000000010000 00000000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [130021] [24/Oct/2020:21:59:23.529432630 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - _cl5PositionCursorForReplay - (agmt="cn=201" (ci-vm-10-0-138-103:39201)): Supplier RUV: DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [130177] [24/Oct/2020:21:59:23.534252555 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replicageneration} 5f94db97000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [130418] [24/Oct/2020:21:59:23.537574262 -0400] - DEBUG - NSMMReplicationPlugin - agmt="cn=201" (ci-vm-10-0-138-103:39201): {replica 1 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001} 5f94db97000100010000 5f94dbfb000000010000 5f94dbfb DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [130580] [24/Oct/2020:21:59:23.541151026 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_get_buffer - found thread private buffer cache 0x7fad1ce98900 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [130807] [24/Oct/2020:21:59:23.544790182 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_get_buffer - _pool is 0x7fad4aa6d360 _pool->pl_busy_lists is 0x7fad1ceec600 _pool->pl_busy_lists->bl_buffers is 0x7fad1ce98900 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [131103] [24/Oct/2020:21:59:23.551907140 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_initial_anchorcsn - agmt="cn=201" (ci-vm-10-0-138-103:39201) - (cscb 0 - state 0) - csnPrevMax () csnMax (5f94dbfb000000010000) csnBuf (00000000000000000000) csnConsumerMax (5f94dbf3000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [131216] [24/Oct/2020:21:59:23.555836526 -0400] - DEBUG - clcache_initial_anchorcsn - anchor is now: 5f94dbf3000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [131407] [24/Oct/2020:21:59:23.559247260 -0400] - DEBUG - NSMMReplicationPlugin - changelog program - agmt="cn=201" (ci-vm-10-0-138-103:39201): CSN 5f94dbf3000000010000 found, position set for replay DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [131563] [24/Oct/2020:21:59:23.566925517 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_get_next_change - load=1 rec=1 csn=5f94dbfb000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [131675] [24/Oct/2020:21:59:23.570455571 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Starting DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [131895] [24/Oct/2020:21:59:23.574309236 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-138-103:39201): Sending modify operation (dn="cn=test_entry,dc=example,dc=com" csn=5f94dbfb000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [132027] [24/Oct/2020:21:59:23.578344386 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 0 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [132225] [24/Oct/2020:21:59:23.582435754 -0400] - DEBUG - NSMMReplicationPlugin - replay_update - agmt="cn=201" (ci-vm-10-0-138-103:39201): Consumer successfully sent operation with csn 5f94dbfb000000010000 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [132540] [24/Oct/2020:21:59:23.585798707 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_adjust_anchorcsn - agmt="cn=201" (ci-vm-10-0-138-103:39201) - (cscb 0 - state 1) - csnPrevMax (5f94dbfb000000010000) csnMax (5f94dbfb000000010000) csnBuf (5f94dbfb000000010000) csnConsumerMax (5f94dbfb000000010000) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [132664] [24/Oct/2020:21:59:23.588779883 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103:39201) - clcache_load_buffer - rc=-30988 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [132848] [24/Oct/2020:21:59:23.591754302 -0400] - DEBUG - NSMMReplicationPlugin - send_updates - agmt="cn=201" (ci-vm-10-0-138-103:39201): No more updates to send (cl5GetNextOperationToReplay) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [132960] [24/Oct/2020:21:59:23.594934376 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 0 11 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [133093] [24/Oct/2020:21:59:23.598301199 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 11 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [133223] [24/Oct/2020:21:59:23.602004427 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Result 3, 0, 0, 11, (null) DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [133356] [24/Oct/2020:21:59:23.605706642 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 11 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [133489] [24/Oct/2020:21:59:23.609712914 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 11 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [133622] [24/Oct/2020:21:59:23.614977642 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 11 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [133755] [24/Oct/2020:21:59:23.622348250 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 11 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [133888] [24/Oct/2020:21:59:23.634184465 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 11 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [134021] [24/Oct/2020:21:59:23.654281388 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 11 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [134154] [24/Oct/2020:21:59:23.690371941 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain - Read result for message_id 11 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [134267] [24/Oct/2020:21:59:23.698460410 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_waitfor_async_results - 11 11 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [134376] [24/Oct/2020:21:59:23.758056658 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_result_threadmain exiting DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [134648] [24/Oct/2020:21:59:23.761867528 -0400] - DEBUG - agmt="cn=201" (ci-vm-10-0-138-103: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 DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [134812] [24/Oct/2020:21:59:23.768781687 -0400] - DEBUG - NSMMReplicationPlugin - release_replica - agmt="cn=201" (ci-vm-10-0-138-103:39201): Successfully released consumer DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [134982] [24/Oct/2020:21:59:23.772444499 -0400] - DEBUG - NSMMReplicationPlugin - conn_start_linger -agmt="cn=201" (ci-vm-10-0-138-103:39201) - Beginning linger on the connection DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [135156] [24/Oct/2020:21:59:23.775640637 -0400] - DEBUG - NSMMReplicationPlugin - repl5_inc_run - agmt="cn=201" (ci-vm-10-0-138-103:39201): State: sending_updates -> wait_for_changes DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:62 _pattern_errorlog: [135156] DEBUG  tests.suites.schema.schema_replication_test:schema_replication_test.py:67 _pattern_errorlog: end at offset 135156 INFO  tests.suites.schema.schema_replication_test:schema_replication_test.py:693 Testcase PASSED
Passed suites/schema/schema_test.py::test_schema_comparewithfiles 0.29
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.schema.schema_test:schema_test.py:125 Running test_schema_comparewithfiles... WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /etc/dirsrv/slapd-standalone1/schema/99user.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/10mep-plugin.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/60autofs.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/10automember-plugin.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/25java-object.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/00core.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/30ns-common.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/60pam-plugin.ldif as a schema file - skipping WARNING  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 WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/28pilot.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/02common.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/50ns-directory.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/10dna-plugin.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/50ns-admin.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/20subscriber.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/10rfc2307compat.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/60samba3.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/60trust.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/60mozilla.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/60pureftpd.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/05rfc4524.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/60nss-ldap.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/50ns-certificate.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/60eduperson.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/05rfc2927.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/60acctpolicy.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/50ns-web.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/60sudo.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/60rfc3712.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/50ns-mail.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/01core389.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/05rfc4523.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/50ns-value.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/60sabayon.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/06inetorgperson.ldif as a schema file - skipping WARNING  tests.suites.schema.schema_test:schema_test.py:137 Unable to parse /usr/share/dirsrv/schema/60rfc2739.ldif as a schema file - skipping INFO  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.15
-------------------------------Captured log setup-------------------------------
DEBUG  lib389:dscreate_test.py:42 Instance allocated DEBUG  lib389:__init__.py:554 Allocate <class 'lib389.DirSrv'> with None DEBUG  lib389:__init__.py:577 Allocate <class 'lib389.DirSrv'> with ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:54321 DEBUG  lib389:__init__.py:602 Allocate <class 'lib389.DirSrv'> with ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:54321 DEBUG  lib389:__init__.py:742 list instance not found in /etc/dirsrv/slapd-standalone/dse.ldif: standalone
-------------------------------Captured log call--------------------------------
DEBUG  lib389:__init__.py:742 list instance not found in /etc/dirsrv/slapd-standalone/dse.ldif: standalone INFO  LogCapture.SetupDs:setup.py:670 NOOP: Dry run requested DEBUG  lib389:__init__.py:742 list instance not found in /etc/dirsrv/slapd-standalone/dse.ldif: standalone
Passed suites/setup_ds/dscreate_test.py::test_setup_ds_minimal 26.27
-------------------------------Captured log setup-------------------------------
DEBUG  lib389:dscreate_test.py:42 Instance allocated DEBUG  lib389:__init__.py:554 Allocate <class 'lib389.DirSrv'> with None DEBUG  lib389:__init__.py:577 Allocate <class 'lib389.DirSrv'> with ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:54321 DEBUG  lib389:__init__.py:602 Allocate <class 'lib389.DirSrv'> with ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:54321 DEBUG  lib389:__init__.py:742 list instance not found in /etc/dirsrv/slapd-standalone/dse.ldif: standalone
-------------------------------Captured log call--------------------------------
DEBUG  lib389:__init__.py:742 list instance not found in /etc/dirsrv/slapd-standalone/dse.ldif: standalone DEBUG  lib389:__init__.py:554 Allocate <class 'lib389.DirSrv'> with None DEBUG  lib389:__init__.py:566 Allocate <class 'lib389.DirSrv'> with /var/run/slapd-standalone.socket DEBUG  lib389:__init__.py:577 Allocate <class 'lib389.DirSrv'> with localhost:54321 DEBUG  lib389:__init__.py:602 Allocate <class 'lib389.DirSrv'> with localhost:54321 DEBUG  lib389:nss_ssl.py:197 nss cmd: /usr/bin/certutil -N -d /etc/dirsrv/slapd-standalone -f /etc/dirsrv/slapd-standalone/pwdfile.txt DEBUG  lib389:nss_ssl.py:199 nss output: DEBUG  lib389.nss_ssl:nss_ssl.py:197 nss cmd: /usr/bin/certutil -N -d /etc/dirsrv/ssca/ -f /etc/dirsrv/ssca//pwdfile.txt DEBUG  lib389.nss_ssl:nss_ssl.py:199 nss output: DEBUG  lib389.nss_ssl:nss_ssl.py:280 nss cmd: /usr/bin/certutil -S -n Self-Signed-CA -s CN=ssca.389ds.example.com,O=testing,L=389ds,ST=Queensland,C=AU -x -g 4096 -t CT,, -v 24 -2 --keyUsage certSigning -d /etc/dirsrv/ssca/ -z /etc/dirsrv/ssca//noise.txt -f /etc/dirsrv/ssca//pwdfile.txt DEBUG  lib389.nss_ssl:nss_ssl.py:282 nss output: Is this a CA certificate [y/N]? Enter the path length constraint, enter to skip [<0 for unlimited path]: > Is this a critical extension [y/N]? DEBUG  lib389.nss_ssl:nss_ssl.py:294 nss cmd: /usr/bin/certutil -L -n Self-Signed-CA -d /etc/dirsrv/ssca/ -a DEBUG  lib389.nss_ssl:nss_ssl.py:242 nss cmd: /usr/bin/openssl rehash /etc/dirsrv/ssca/ DEBUG  lib389:nss_ssl.py:559 CSR subject -> CN=ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com,givenName=73550895-17ce-416d-8173-c4df81731372,O=testing,L=389ds,ST=Queensland,C=AU DEBUG  lib389:nss_ssl.py:560 CSR alt_names -> ['ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com'] DEBUG  lib389:nss_ssl.py:592 nss cmd: /usr/bin/certutil -R --keyUsage digitalSignature,nonRepudiation,keyEncipherment,dataEncipherment --nsCertType sslClient,sslServer --extKeyUsage clientAuth,serverAuth -s CN=ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com,givenName=73550895-17ce-416d-8173-c4df81731372,O=testing,L=389ds,ST=Queensland,C=AU -8 ci-vm-10-0-138-103.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 DEBUG  lib389.nss_ssl:nss_ssl.py:618 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 DEBUG  lib389:nss_ssl.py:242 nss cmd: /usr/bin/openssl rehash /etc/dirsrv/slapd-standalone DEBUG  lib389:nss_ssl.py:646 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 DEBUG  lib389:nss_ssl.py:661 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 DEBUG  lib389:nss_ssl.py:670 nss cmd: /usr/bin/certutil -V -d /etc/dirsrv/slapd-standalone -n Server-Cert -u YCV DEBUG  lib389.utils:utils.py:284 port 636 already in [389, 636, 3268, 3269, 7389], skipping port relabel DEBUG  lib389.utils:utils.py:315 CMD: semanage port -a -t ldap_port_t -p tcp 54321 ; STDOUT: ; STDERR: DEBUG  lib389:__init__.py:1229 systemd status -> True DEBUG  lib389:__init__.py:1133 systemd status -> True DEBUG  lib389:__init__.py:993 open(): Connecting to uri ldapi://%2Fvar%2Frun%2Fslapd-standalone.socket DEBUG  lib389:__init__.py:1001 Using dirsrv ca certificate /etc/dirsrv/slapd-standalone DEBUG  lib389:__init__.py:1010 Using external ca certificate /etc/dirsrv/slapd-standalone DEBUG  lib389:__init__.py:1023 Using external ca certificate /etc/dirsrv/slapd-standalone DEBUG  lib389:__init__.py:1031 Using certificate policy 1 DEBUG  lib389:__init__.py:1032 ldap.OPT_X_TLS_REQUIRE_CERT = 1 DEBUG  lib389:__init__.py:1065 open(): Using root autobind ... DEBUG  lib389:__init__.py:1086 open(): bound as cn=Directory Manager DEBUG  lib389:__init__.py:1751 Retrieving entry with [('',)] DEBUG  lib389:__init__.py:1761 Retrieved entry [dn: vendorVersion: 389-Directory/1.4.4.4 B2020.298.2312 ] DEBUG  lib389:__init__.py:993 open(): Connecting to uri ldapi://%2Fvar%2Frun%2Fslapd-standalone.socket DEBUG  lib389:__init__.py:1001 Using dirsrv ca certificate /etc/dirsrv/slapd-standalone DEBUG  lib389:__init__.py:1010 Using external ca certificate /etc/dirsrv/slapd-standalone DEBUG  lib389:__init__.py:1023 Using external ca certificate /etc/dirsrv/slapd-standalone DEBUG  lib389:__init__.py:1031 Using certificate policy 1 DEBUG  lib389:__init__.py:1032 ldap.OPT_X_TLS_REQUIRE_CERT = 1 DEBUG  lib389:__init__.py:1065 open(): Using root autobind ... DEBUG  lib389:__init__.py:1086 open(): bound as cn=Directory Manager DEBUG  lib389:__init__.py:1751 Retrieving entry with [('',)] DEBUG  lib389:__init__.py:1761 Retrieved entry [dn: vendorVersion: 389-Directory/1.4.4.4 B2020.298.2312 ] DEBUG  Config:_mapped_object.py:434 cn=config set REPLACE: ('nsslapd-secureport', '636') DEBUG  Config:_mapped_object.py:434 cn=config set REPLACE: ('nsslapd-security', 'on') DEBUG  Config:_mapped_object.py:434 cn=config set REPLACE: ('nsslapd-rootpw', '********') DEBUG  lib389:__init__.py:1229 systemd status -> True DEBUG  lib389:__init__.py:1202 systemd status -> True DEBUG  lib389:__init__.py:1229 systemd status -> True DEBUG  lib389:__init__.py:1133 systemd status -> True DEBUG  lib389:__init__.py:993 open(): Connecting to uri ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:54321/ DEBUG  lib389:__init__.py:1001 Using dirsrv ca certificate /etc/dirsrv/slapd-standalone DEBUG  lib389:__init__.py:1010 Using external ca certificate /etc/dirsrv/slapd-standalone DEBUG  lib389:__init__.py:1023 Using external ca certificate /etc/dirsrv/slapd-standalone DEBUG  lib389:__init__.py:1031 Using certificate policy 1 DEBUG  lib389:__init__.py:1032 ldap.OPT_X_TLS_REQUIRE_CERT = 1 DEBUG  lib389:__init__.py:1086 open(): bound as cn=Directory Manager DEBUG  lib389:__init__.py:1751 Retrieving entry with [('',)] DEBUG  lib389:__init__.py:1761 Retrieved entry [dn: vendorVersion: 389-Directory/1.4.4.4 B2020.298.2312 ] DEBUG  lib389:__init__.py:1229 systemd status -> True DEBUG  lib389:__init__.py:1202 systemd status -> True DEBUG  lib389:__init__.py:1229 systemd status -> True DEBUG  lib389:__init__.py:1133 systemd status -> True DEBUG  lib389:__init__.py:993 open(): Connecting to uri ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:54321/ DEBUG  lib389:__init__.py:1001 Using dirsrv ca certificate /etc/dirsrv/slapd-standalone DEBUG  lib389:__init__.py:1010 Using external ca certificate /etc/dirsrv/slapd-standalone DEBUG  lib389:__init__.py:1023 Using external ca certificate /etc/dirsrv/slapd-standalone DEBUG  lib389:__init__.py:1031 Using certificate policy 1 DEBUG  lib389:__init__.py:1032 ldap.OPT_X_TLS_REQUIRE_CERT = 1 DEBUG  lib389:__init__.py:1086 open(): bound as cn=Directory Manager DEBUG  lib389:__init__.py:1751 Retrieving entry with [('',)] DEBUG  lib389:__init__.py:1761 Retrieved entry [dn: vendorVersion: 389-Directory/1.4.4.4 B2020.298.2312 ] DEBUG  lib389.remove_ds:remove.py:38 Removing instance standalone DEBUG  lib389:__init__.py:1751 Retrieving entry with [('cn=config',)] DEBUG  lib389:__init__.py:1761 Retrieved entry [dn: cn=config nsslapd-bakdir: /var/lib/dirsrv/slapd-standalone/bak ] DEBUG  lib389:__init__.py:1751 Retrieving entry with [('cn=config',)] DEBUG  lib389:__init__.py:1761 Retrieved entry [dn: cn=config nsslapd-certdir: /etc/dirsrv/slapd-standalone ] DEBUG  lib389:__init__.py:1751 Retrieving entry with [('cn=config,cn=ldbm database,cn=plugins,cn=config',)] DEBUG  lib389:__init__.py:1761 Retrieved entry [dn: cn=config,cn=ldbm database,cn=plugins,cn=config nsslapd-directory: /var/lib/dirsrv/slapd-standalone/db ] DEBUG  lib389:__init__.py:1751 Retrieving entry with [('cn=bdb,cn=config,cn=ldbm database,cn=plugins,cn=config',)] DEBUG  lib389:__init__.py:1761 Retrieved entry [dn: cn=bdb,cn=config,cn=ldbm database,cn=plugins,cn=config nsslapd-db-home-directory: /var/lib/dirsrv/slapd-standalone/db ] DEBUG  lib389:__init__.py:1751 Retrieving entry with [('cn=config,cn=ldbm database,cn=plugins,cn=config',)] DEBUG  lib389:__init__.py:1761 Retrieved entry [dn: cn=config,cn=ldbm database,cn=plugins,cn=config nsslapd-directory: /var/lib/dirsrv/slapd-standalone/db ] DEBUG  lib389:__init__.py:1751 Retrieving entry with [('cn=config,cn=ldbm database,cn=plugins,cn=config',)] DEBUG  lib389:__init__.py:1761 Retrieved entry [dn: cn=config,cn=ldbm database,cn=plugins,cn=config nsslapd-directory: /var/lib/dirsrv/slapd-standalone/db ] DEBUG  lib389:__init__.py:1751 Retrieving entry with [('cn=config',)] DEBUG  lib389:__init__.py:1761 Retrieved entry [dn: cn=config nsslapd-ldifdir: /var/lib/dirsrv/slapd-standalone/ldif ] DEBUG  lib389:__init__.py:1751 Retrieving entry with [('cn=config',)] DEBUG  lib389:__init__.py:1761 Retrieved entry [dn: cn=config nsslapd-lockdir: /var/lock/dirsrv/slapd-standalone ] DEBUG  lib389:__init__.py:1751 Retrieving entry with [('cn=config',)] DEBUG  lib389:__init__.py:1761 Retrieved entry [dn: cn=config nsslapd-instancedir: /usr/lib64/dirsrv/slapd-standalone ] DEBUG  lib389.remove_ds:remove.py:67 Checking for instance marker at /etc/dirsrv/slapd-standalone/dse.ldif DEBUG  lib389.remove_ds:remove.py:72 Found instance marker at /etc/dirsrv/slapd-standalone/dse.ldif! Proceeding to remove ... DEBUG  lib389.remove_ds:remove.py:76 Stopping instance standalone DEBUG  lib389:__init__.py:1229 systemd status -> True DEBUG  lib389:__init__.py:1202 systemd status -> True DEBUG  lib389.remove_ds:remove.py:79 Found instance marker at /etc/dirsrv/slapd-standalone/dse.ldif! Proceeding to remove ... DEBUG  lib389.remove_ds:remove.py:83 Stopping instance standalone DEBUG  lib389:__init__.py:1229 systemd status -> True DEBUG  lib389.remove_ds:remove.py:92 Removing /var/lib/dirsrv/slapd-standalone/bak DEBUG  lib389.remove_ds:remove.py:92 Removing /etc/dirsrv/slapd-standalone DEBUG  lib389.remove_ds:remove.py:92 Removing /etc/dirsrv/slapd-standalone DEBUG  lib389.remove_ds:remove.py:92 Removing /var/lib/dirsrv/slapd-standalone/db DEBUG  lib389.remove_ds:remove.py:92 Removing /var/lib/dirsrv/slapd-standalone/db DEBUG  lib389.remove_ds:remove.py:92 Removing /var/lib/dirsrv/slapd-standalone/db/../ DEBUG  lib389.remove_ds:remove.py:92 Removing /var/lib/dirsrv/slapd-standalone/changelogdb DEBUG  lib389.remove_ds:remove.py:92 Removing /var/lib/dirsrv/slapd-standalone/ldif DEBUG  lib389.remove_ds:remove.py:92 Removing /var/lock/dirsrv/slapd-standalone DEBUG  lib389.remove_ds:remove.py:92 Removing /var/log/dirsrv/slapd-standalone DEBUG  lib389.remove_ds:remove.py:92 Removing /usr/lib64/dirsrv/slapd-standalone DEBUG  lib389.remove_ds:remove.py:92 Removing /etc/sysconfig/dirsrv-standalone DEBUG  lib389.remove_ds:remove.py:101 Removing the systemd symlink DEBUG  lib389.remove_ds:remove.py:108 CMD: systemctl disable dirsrv@standalone ; STDOUT: ; STDERR: Removed /etc/systemd/system/multi-user.target.wants/dirsrv@standalone.service. DEBUG  lib389.remove_ds:remove.py:110 Removing /etc/tmpfiles.d/dirsrv-standalone.conf DEBUG  lib389.remove_ds:remove.py:119 Removing the port labels DEBUG  lib389.remove_ds:remove.py:149 Moving /etc/dirsrv/slapd-standalone to /etc/dirsrv/slapd-standalone.removed DEBUG  lib389.remove_ds:remove.py:159 Complete
Passed suites/setup_ds/dscreate_test.py::test_setup_ds_inf_minimal 0.00
-------------------------------Captured log setup-------------------------------
DEBUG  lib389:dscreate_test.py:42 Instance allocated DEBUG  lib389:__init__.py:554 Allocate <class 'lib389.DirSrv'> with None DEBUG  lib389:__init__.py:577 Allocate <class 'lib389.DirSrv'> with ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:54321 DEBUG  lib389:__init__.py:602 Allocate <class 'lib389.DirSrv'> with ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:54321 DEBUG  lib389:__init__.py:742 list instance not found in /etc/dirsrv/slapd-standalone/dse.ldif: standalone
Passed suites/setup_ds/remove_test.py::test_basic[True] 3.29
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/setup_ds/remove_test.py::test_basic[False] 4.10
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/setup_ds/setup_ds_test.py::test_slapd_InstScriptsEnabled[true] 6.73
------------------------------Captured stdout call------------------------------
Instance slapd-standalone1 removed.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.setup_ds.setup_ds_test:setup_ds_test.py:63 set SER_INST_SCRIPTS_ENABLED to true INFO  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. INFO  tests.suites.setup_ds.setup_ds_test:setup_ds_test.py:22 Set up the instance and set the config_attr INFO  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.64
------------------------------Captured stdout call------------------------------
Instance slapd-standalone1 removed.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.setup_ds.setup_ds_test:setup_ds_test.py:63 set SER_INST_SCRIPTS_ENABLED to false INFO  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. INFO  tests.suites.setup_ds.setup_ds_test:setup_ds_test.py:22 Set up the instance and set the config_attr INFO  tests.suites.setup_ds.setup_ds_test:setup_ds_test.py:72 checking instance script directory does not present when SER_INST_SCRIPTS_ENABLED is set to false
Passed suites/state/mmt_state_test.py::test_check_desc_attr_state[description-Test1usr1-ldap.MOD_ADD-exp_values0-vucsn] 0.08
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 236e2236-1450-4ea6-b5a3-898a5619f202 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect ff6d8609-8096-46e9-8601-61699918eb2a / got description=236e2236-1450-4ea6-b5a3-898a5619f202) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
-------------------------------Captured log call--------------------------------
INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:99 Add user: state1test INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:107 Check if list of description attrs present for: state1test INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:110 Checking for operational attributes INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: state1test
Passed suites/state/mmt_state_test.py::test_check_desc_attr_state[description-Test1usr2-ldap.MOD_ADD-exp_values1-vucsn] 0.12
-------------------------------Captured log call--------------------------------
INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:99 Add user: state1test INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:107 Check if list of description attrs present for: state1test INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:110 Checking for operational attributes INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: state1test
Passed suites/state/mmt_state_test.py::test_check_desc_attr_state[description-Test1usr3-ldap.MOD_ADD-exp_values2-vucsn] 0.01
-------------------------------Captured log call--------------------------------
INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:99 Add user: state1test INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:107 Check if list of description attrs present for: state1test INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:110 Checking for operational attributes INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: state1test
Passed suites/state/mmt_state_test.py::test_check_desc_attr_state[description-Test1usr4-ldap.MOD_REPLACE-exp_values3-adcsn] 0.01
-------------------------------Captured log call--------------------------------
INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:99 Add user: state1test INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:107 Check if list of description attrs present for: state1test INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:110 Checking for operational attributes INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: state1test
Passed suites/state/mmt_state_test.py::test_check_desc_attr_state[description-Test1usr4-ldap.MOD_DELETE-exp_values4-vdcsn] 0.02
-------------------------------Captured log call--------------------------------
INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:99 Add user: state1test INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:107 Check if list of description attrs present for: state1test INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:110 Checking for operational attributes INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: state1test
Passed suites/state/mmt_state_test.py::test_check_cn_attr_state[cn-TestCN1-ldap.MOD_ADD-exp_values0-vucsn] 0.04
-------------------------------Captured log call--------------------------------
INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:153 Add user: TestCNusr1 INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:166 Check if list of cn attrs present for: TestCNusr1 INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:168 Checking for operational attributes INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: TestCNusr1
Passed suites/state/mmt_state_test.py::test_check_cn_attr_state[cn-TestCN2-ldap.MOD_ADD-exp_values1-vucsn] 0.02
-------------------------------Captured log call--------------------------------
INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:153 Add user: TestCNusr1 INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:166 Check if list of cn attrs present for: TestCNusr1 INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:168 Checking for operational attributes INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: TestCNusr1
Passed suites/state/mmt_state_test.py::test_check_cn_attr_state[cn-TestnewCN3-ldap.MOD_REPLACE-exp_values2-adcsn] 0.02
-------------------------------Captured log call--------------------------------
INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:153 Add user: TestCNusr1 INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:166 Check if list of cn attrs present for: TestCNusr1 INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:168 Checking for operational attributes INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: TestCNusr1
Passed suites/state/mmt_state_test.py::test_check_cn_attr_state[cn-TestnewCN3-ldap.MOD_DELETE-None-None] 0.04
-------------------------------Captured log call--------------------------------
INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:153 Add user: TestCNusr1 INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:168 Checking for operational attributes INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: TestCNusr1
Passed suites/state/mmt_state_test.py::test_check_single_value_attr_state[preferredlanguage-Chinese-ldap.MOD_REPLACE-exp_values0-vucsn] 0.05
-------------------------------Captured log call--------------------------------
INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:206 Add user: Langusr1 INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:219 Check if list of cn attrs present for: Langusr1 INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:221 Checking for operational attributes INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: Langusr1
Passed suites/state/mmt_state_test.py::test_check_single_value_attr_state[preferredlanguage-French-ldap.MOD_ADD-None-None] 0.03
-------------------------------Captured log call--------------------------------
INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:206 Add user: Langusr1 INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:221 Checking for operational attributes INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: Langusr1
Passed suites/state/mmt_state_test.py::test_check_single_value_attr_state[preferredlanguage-German-ldap.MOD_REPLACE-exp_values2-adcsn] 0.01
-------------------------------Captured log call--------------------------------
INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:206 Add user: Langusr1 INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:219 Check if list of cn attrs present for: Langusr1 INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:221 Checking for operational attributes INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: Langusr1
Passed suites/state/mmt_state_test.py::test_check_single_value_attr_state[preferredlanguage-German-ldap.MOD_DELETE-exp_values3-vdcsn] 0.01
-------------------------------Captured log call--------------------------------
INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:206 Add user: Langusr1 INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:219 Check if list of cn attrs present for: Langusr1 INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:221 Checking for operational attributes INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: Langusr1
Passed suites/state/mmt_state_test.py::test_check_subtype_attr_state[roomnumber;office-Tower1-ldap.MOD_ADD-exp_values0-vucsn] 0.04
-------------------------------Captured log call--------------------------------
INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:276 Add user: roomoffice1usr INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:285 Check if list of roomnumber;office attributes are present for a given entry INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:287 Checking if operational attributes are present for cn INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: roomoffice1usr
Passed suites/state/mmt_state_test.py::test_check_subtype_attr_state[roomnumber;office-Tower2-ldap.MOD_ADD-exp_values1-vucsn] 0.02
-------------------------------Captured log call--------------------------------
INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:276 Add user: roomoffice1usr INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:285 Check if list of roomnumber;office attributes are present for a given entry INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:287 Checking if operational attributes are present for cn INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: roomoffice1usr
Passed suites/state/mmt_state_test.py::test_check_subtype_attr_state[roomnumber;office-Tower3-ldap.MOD_ADD-exp_values2-vucsn] 0.01
-------------------------------Captured log call--------------------------------
INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:276 Add user: roomoffice1usr INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:285 Check if list of roomnumber;office attributes are present for a given entry INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:287 Checking if operational attributes are present for cn INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: roomoffice1usr
Passed suites/state/mmt_state_test.py::test_check_subtype_attr_state[roomnumber;office-Tower4-ldap.MOD_REPLACE-exp_values3-adcsn] 0.01
-------------------------------Captured log call--------------------------------
INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:276 Add user: roomoffice1usr INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:285 Check if list of roomnumber;office attributes are present for a given entry INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:287 Checking if operational attributes are present for cn INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: roomoffice1usr
Passed suites/state/mmt_state_test.py::test_check_subtype_attr_state[roomnumber;office-Tower4-ldap.MOD_DELETE-exp_values4-vucsn] 0.02
-------------------------------Captured log call--------------------------------
INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:276 Add user: roomoffice1usr INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:285 Check if list of roomnumber;office attributes are present for a given entry INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:287 Checking if operational attributes are present for cn INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: roomoffice1usr
Passed suites/state/mmt_state_test.py::test_check_jpeg_attr_state[jpegphoto-thedeadbeef1-ldap.MOD_ADD-exp_values0-vucsn] 0.05
-------------------------------Captured log call--------------------------------
INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:342 Add user: testJpeg1usr INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:351 Check if list of jpeg attributes are present for a given entry INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:353 Checking if operational attributes are present for cn INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: testJpeg1usr
Passed suites/state/mmt_state_test.py::test_check_jpeg_attr_state[jpegphoto-thedeadbeef2-ldap.MOD_ADD-exp_values1-vucsn] 0.01
-------------------------------Captured log call--------------------------------
INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:342 Add user: testJpeg1usr INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:351 Check if list of jpeg attributes are present for a given entry INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:353 Checking if operational attributes are present for cn INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: testJpeg1usr
Passed suites/state/mmt_state_test.py::test_check_jpeg_attr_state[jpegphoto-thedeadbeef3-ldap.MOD_ADD-exp_values2-vucsn] 0.02
-------------------------------Captured log call--------------------------------
INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:342 Add user: testJpeg1usr INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:351 Check if list of jpeg attributes are present for a given entry INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:353 Checking if operational attributes are present for cn INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: testJpeg1usr
Passed suites/state/mmt_state_test.py::test_check_jpeg_attr_state[jpegphoto-thedeadbeef2-ldap.MOD_REPLACE-exp_values3-adcsn] 0.01
-------------------------------Captured log call--------------------------------
INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:342 Add user: testJpeg1usr INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:351 Check if list of jpeg attributes are present for a given entry INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:353 Checking if operational attributes are present for cn INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:36 Checking if operational attrs vucsn, adcsn and vdcsn present for: testJpeg1usr
Passed suites/state/mmt_state_test.py::test_check_jpeg_attr_state[jpegphoto-thedeadbeef2-ldap.MOD_DELETE-exp_values4-vdcsn] 0.01
-------------------------------Captured log call--------------------------------
INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:342 Add user: testJpeg1usr INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:351 Check if list of jpeg attributes are present for a given entry INFO  tests.suites.state.mmt_state_test:mmt_state_test.py:353 Checking if operational attributes are present for cn INFO  tests.suites.state.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.87
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  lib389.topologies.tests.suites.syntax.acceptance_test:acceptance_test.py:54 Clean the error log INFO  lib389.topologies.tests.suites.syntax.acceptance_test:acceptance_test.py:58 Attempting to add task entry... INFO  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 4.05
-------------------------------Captured log call--------------------------------
INFO  lib389.topologies.tests.suites.syntax.acceptance_test:acceptance_test.py:91 Clean the error log INFO  lib389.topologies.tests.suites.syntax.acceptance_test:acceptance_test.py:98 Attempting to add task entry... INFO  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.26
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.syntax.mr_test:mr_test.py:42 Creating LDIF... INFO  tests.suites.syntax.mr_test:mr_test.py:47 Importing LDIF... INFO  tests.suites.syntax.mr_test:mr_test.py:52 Search using server side sorting using undefined mr in the attr... INFO  tests.suites.syntax.mr_test:mr_test.py:62 Test PASSED
Passed suites/tls/cipher_test.py::test_long_cipher_list 19.27
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/tls/ssl_version_test.py::test_ssl_version_range 62.78
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.tls.ssl_version_test:ssl_version_test.py:36 default min: TLS1.2 max: TLS1.3
Passed suites/tls/tls_cert_namespace_test.py::test_pem_cert_in_private_namespace 13.29
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:54 Enable TLS INFO  tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:57 Checking PrivateTmp value INFO  tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:59 Command used : systemctl show -p PrivateTmp dirsrv@standalone1.service INFO  tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:63 Check files in private /tmp INFO  tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:68 Check that Self-Signed-CA.pem is present in private /tmp INFO  tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:68 Check that Server-Cert-Key.pem is present in private /tmp INFO  tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:68 Check that Server-Cert.pem is present in private /tmp INFO  tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:71 Check instance cert directory INFO  tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:75 Check that Self-Signed-CA.pem is not present in /etc/dirsrv/slapd-standalone1/ directory INFO  tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:75 Check that Server-Cert-Key.pem is not present in /etc/dirsrv/slapd-standalone1/ directory INFO  tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:75 Check that Server-Cert.pem is not present in /etc/dirsrv/slapd-standalone1/ directory
Passed suites/tls/tls_cert_namespace_test.py::test_cert_category_authority 8.68
-------------------------------Captured log call--------------------------------
INFO  tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:106 Enable TLS INFO  tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:109 Get certificate path INFO  tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:115 Check that Self-Signed-CA.pem is present INFO  tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:119 Trust the certificate INFO  tests.suites.tls.tls_cert_namespace_test:tls_cert_namespace_test.py:122 Search if our certificate has category: authority
Passed suites/tls/tls_check_crl_test.py::test_tls_check_crl 13.39
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed suites/tls/tls_ldaps_only_test.py::test_tls_ldaps_only 24.74
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed tickets/ticket47560_test.py::test_ticket47560 16.99
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  lib389:tasks.py:877 fixupMemberOf task fixupmemberof_10242020_220516 for basedn dc=example,dc=com completed successfully
Passed tickets/ticket47573_test.py::test_ticket47573_init 0.02
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39201, 'ldap-secureport': 63901, 'server-id': 'consumer1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:175 Joining consumer consumer1 from master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 9468ef36-1437-4e44-99bc-f63b3a3e065a / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working INFO  lib389.replica:replica.py:2285 SUCCESS: joined consumer from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 INFO  lib389.topologies:topologies.py:180 Ensuring consumer consumer1 from master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 already exists
-------------------------------Captured log call--------------------------------
DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:123 test_ticket47573_init topology_m1c1 <lib389.topologies.TopologyMain object at 0x7f65e435feb0> (master <lib389.DirSrv object at 0x7f65e525dfd0>, consumer <lib389.DirSrv object at 0x7f65e525dbe0>
Passed tickets/ticket47573_test.py::test_ticket47573_one 1.23
-------------------------------Captured log call--------------------------------
DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:147 test_ticket47573_one topology_m1c1 <lib389.topologies.TopologyMain object at 0x7f65e435feb0> (master <lib389.DirSrv object at 0x7f65e525dfd0>, consumer <lib389.DirSrv object at 0x7f65e525dbe0> DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:113 trigger_schema_push: receive 0 (expected 1) DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:161 test_ticket47573_one master_schema_csn=b'5f94dd79000000000000' DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:162 ctest_ticket47573_one onsumer_schema_csn=b'5f94dd79000000000000' DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:47 _pattern_errorlog: start at offset 0 DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [38] 389-Directory/1.4.4.4 B2020.298.2312 DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [123] ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 (/etc/dirsrv/slapd-master1) DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [124] DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [241] [24/Oct/2020:22:05:29.568695110 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [355] [24/Oct/2020:22:05:29.582076750 -0400] - INFO - bdb_config_upgrade_dse_info - create config entry from old config DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [532] [24/Oct/2020:22:05:29.590544664 -0400] - INFO - bdb_instance_start - Import is running with nsslapd-db-private-import-mem on; No other process is allowed to access the database DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [677] [24/Oct/2020:22:05:29.593622983 -0400] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7522717696, process usage 23121920 DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [795] [24/Oct/2020:22:05:29.595852759 -0400] - INFO - check_and_set_import_cache - Import allocates 2938561KB import cache. DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [902] [24/Oct/2020:22:05:29.768087126 -0400] - INFO - bdb_import_main - import userRoot: Beginning import job... DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [1030] [24/Oct/2020:22:05:29.773303742 -0400] - INFO - bdb_import_main - import userRoot: Index buffering enabled with bucket size 100 DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [1152] [24/Oct/2020:22:05:29.974343334 -0400] - INFO - import_producer - import userRoot: Processing file "/tmp/ldiftwk4x7.ldif" DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [1293] [24/Oct/2020:22:05:29.978424623 -0400] - INFO - import_producer - import userRoot: Finished scanning file "/tmp/ldiftwk4x7.ldif" (9 entries) DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [1416] [24/Oct/2020:22:05:30.279951865 -0400] - INFO - import_monitor_threads - import userRoot: Workers finished; cleaning up... DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [1526] [24/Oct/2020:22:05:30.484297327 -0400] - INFO - import_monitor_threads - import userRoot: Workers cleaned up. DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [1640] [24/Oct/2020:22:05:30.487968724 -0400] - INFO - bdb_import_main - import userRoot: Cleaning up producer thread... DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [1762] [24/Oct/2020:22:05:30.491145722 -0400] - INFO - bdb_import_main - import userRoot: Indexing complete. Post-processing... DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [1919] [24/Oct/2020:22:05:30.494018188 -0400] - INFO - bdb_import_main - import userRoot: Generating numsubordinates (this may take several minutes to complete)... DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [2039] [24/Oct/2020:22:05:30.502868021 -0400] - INFO - bdb_import_main - import userRoot: Generating numSubordinates complete. DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [2163] [24/Oct/2020:22:05:30.505715052 -0400] - INFO - bdb_get_nonleaf_ids - import userRoot: Gathering ancestorid non-leaf IDs... DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [2294] [24/Oct/2020:22:05:30.510507045 -0400] - INFO - bdb_get_nonleaf_ids - import userRoot: Finished gathering ancestorid non-leaf IDs. DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [2426] [24/Oct/2020:22:05:30.513633991 -0400] - INFO - ldbm_get_nonleaf_ids - import userRoot: Starting sort of ancestorid non-leaf IDs... DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [2556] [24/Oct/2020:22:05:30.519140516 -0400] - INFO - ldbm_get_nonleaf_ids - import userRoot: Finished sort of ancestorid non-leaf IDs. DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [2698] [24/Oct/2020:22:05:30.526450656 -0400] - INFO - bdb_ancestorid_new_idl_create_index - import userRoot: Creating ancestorid index (new idl)... DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [2837] [24/Oct/2020:22:05:30.529423020 -0400] - INFO - bdb_ancestorid_new_idl_create_index - import userRoot: Created ancestorid index (new idl). DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [2939] [24/Oct/2020:22:05:30.532205641 -0400] - INFO - bdb_import_main - import userRoot: Flushing caches... DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [3039] [24/Oct/2020:22:05:30.534875160 -0400] - INFO - bdb_import_main - import userRoot: Closing files... DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [3193] [24/Oct/2020:22:05:30.597942295 -0400] - INFO - bdb_import_main - import userRoot: Import complete. Processed 9 entries in 1 seconds. (9.00 entries/sec) DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [3290] [24/Oct/2020:22:05:30.601024339 -0400] - INFO - bdb_pre_close - All database threads now stopped DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [3394] [24/Oct/2020:22:05:30.821633839 -0400] - INFO - main - 389-Directory/1.4.4.4 B2020.298.2312 starting up DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [3502] [24/Oct/2020:22:05:30.826108317 -0400] - INFO - main - Setting the maximum file descriptor limit to: 524288 DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [3610] [24/Oct/2020:22:05:31.618534459 -0400] - INFO - PBKDF2_SHA256 - Based on CPU performance, chose 2048 rounds DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [3727] [24/Oct/2020:22:05:31.626613644 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [3829] [24/Oct/2020:22:05:31.637296992 -0400] - NOTICE - bdb_start_autotune - found 7980868k physical memory DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [3925] [24/Oct/2020:22:05:31.640419167 -0400] - NOTICE - bdb_start_autotune - found 7343168k available DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [4032] [24/Oct/2020:22:05:31.643278522 -0400] - NOTICE - bdb_start_autotune - cache autosizing: db cache: 498804k DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [4162] [24/Oct/2020:22:05:31.646658354 -0400] - NOTICE - bdb_start_autotune - cache autosizing: userRoot entry cache (1 total): 1376256k DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [4288] [24/Oct/2020:22:05:31.650289094 -0400] - NOTICE - bdb_start_autotune - cache autosizing: userRoot dn cache (1 total): 196608k DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [4392] [24/Oct/2020:22:05:31.653871896 -0400] - NOTICE - bdb_start_autotune - total cache size: 1834683801 B; DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [4500] [24/Oct/2020:22:05:31.657230394 -0400] - INFO - bdb_start - Resizing db cache size: 3009087078 -> 408620441 DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [4636] [24/Oct/2020:22:05:31.886814134 -0400] - INFO - slapd_daemon - slapd started. Listening on All Interfaces port 39001 for LDAP requests DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [4824] [24/Oct/2020:22:05:36.358093418 -0400] - NOTICE - NSMMReplicationPlugin - changelog program - _cl5ConstructRUV - Rebuilding the replication changelog RUV, this may take several minutes... DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [5004] [24/Oct/2020:22:05:36.360741538 -0400] - NOTICE - NSMMReplicationPlugin - changelog program - _cl5ConstructRUV - Rebuilding replication changelog RUV complete. Result 0 (Success) DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [5192] [24/Oct/2020:22:05:36.363797525 -0400] - NOTICE - NSMMReplicationPlugin - changelog program - _cl5ConstructRUV - Rebuilding the replication changelog RUV, this may take several minutes... DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [5372] [24/Oct/2020:22:05:36.366494376 -0400] - NOTICE - NSMMReplicationPlugin - changelog program - _cl5ConstructRUV - Rebuilding replication changelog RUV complete. Result 0 (Success) DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [5543] [24/Oct/2020:22:05:37.569856816 -0400] - INFO - NSMMReplicationPlugin - repl5_tot_run - Beginning total update of replica "agmt="cn=temp_201" (ci-vm-10-0-138-103:39201)". DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [5727] [24/Oct/2020:22:05:37.573530305 -0400] - NOTICE - NSMMReplicationPlugin - replica_subentry_check - Need to create replication keep alive entry <cn=repl keep alive 1,dc=example,dc=com> DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [5872] [24/Oct/2020:22:05:37.576743801 -0400] - INFO - NSMMReplicationPlugin - replica_subentry_create - add dn: cn=repl keep alive 1,dc=example,dc=com DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [5889] objectclass: top DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [5915] objectclass: ldapsubentry DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [5945] objectclass: extensibleObject DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [5967] cn: repl keep alive 1 DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [6154] [24/Oct/2020:22:05:40.213129422 -0400] - INFO - NSMMReplicationPlugin - repl5_tot_run - Finished total update of replica "agmt="cn=temp_201" (ci-vm-10-0-138-103:39201)". Sent 12 entries. DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [6154] DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:59 _pattern_errorlog: end at offset 6154
Passed tickets/ticket47573_test.py::test_ticket47573_two 1.26
-------------------------------Captured log call--------------------------------
DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:113 trigger_schema_push: receive b'1' (expected 2) DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:192 test_ticket47573_two master_schema_csn=b'5f94dd7a000000000000' DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:193 test_ticket47573_two consumer_schema_csn=b'5f94dd7a000000000000' DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:47 _pattern_errorlog: start at offset 6155 DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:54 _pattern_errorlog: [6155] DEBUG  tests.tickets.ticket47573_test:ticket47573_test.py:59 _pattern_errorlog: end at offset 6155
Passed tickets/ticket47573_test.py::test_ticket47573_three 1.01
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket47573_test:ticket47573_test.py:228 Testcase PASSED
Passed tickets/ticket47640_test.py::test_ticket47640 0.24
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket47640_test:ticket47640_test.py:65 Add operation correctly rejected. INFO  tests.tickets.ticket47640_test:ticket47640_test.py:75 Test complete
Passed tickets/ticket47653MMR_test.py::test_ticket47653_init 0.18
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 47e5c8e0-eff0-429a-a2bd-60c76de5db68 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect c6083c9d-aa4e-4db5-b2bb-5218895dc2b5 / got description=47e5c8e0-eff0-429a-a2bd-60c76de5db68) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47653MMR_test.py:72 Add OCticket47653 that allows 'member' attribute INFO  lib389:ticket47653MMR_test.py:77 Add cn=bind_entry, dc=example,dc=com
Passed tickets/ticket47653MMR_test.py::test_ticket47653_add 5.42
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47653MMR_test.py:114 ######################### ADD ###################### INFO  lib389:ticket47653MMR_test.py:117 Bind as cn=bind_entry, dc=example,dc=com INFO  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 INFO  lib389:ticket47653MMR_test.py:151 Exception (expected): INSUFFICIENT_ACCESS INFO  lib389:ticket47653MMR_test.py:155 Bind as cn=Directory Manager and add the ADD SELFDN aci INFO  lib389:ticket47653MMR_test.py:168 Bind as cn=bind_entry, dc=example,dc=com INFO  lib389:ticket47653MMR_test.py:173 Try to add Add cn=test_entry, dc=example,dc=com (member is missing) INFO  lib389:ticket47653MMR_test.py:181 Exception (expected): INSUFFICIENT_ACCESS INFO  lib389:ticket47653MMR_test.py:188 Try to add Add cn=test_entry, dc=example,dc=com (with several member values) INFO  lib389:ticket47653MMR_test.py:191 Exception (expected): INSUFFICIENT_ACCESS INFO  lib389:ticket47653MMR_test.py:195 Try to add Add cn=test_entry, dc=example,dc=com should be successful INFO  lib389:ticket47653MMR_test.py:206 Try to retrieve cn=test_entry, dc=example,dc=com from Master2 INFO  lib389:ticket47653MMR_test.py:218 Update cn=test_entry, dc=example,dc=com on M2
Passed tickets/ticket47653MMR_test.py::test_ticket47653_modify 4.39
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47653MMR_test.py:248 Bind as cn=bind_entry, dc=example,dc=com INFO  lib389:ticket47653MMR_test.py:251 ######################### MODIFY ###################### INFO  lib389:ticket47653MMR_test.py:255 Try to modify cn=test_entry, dc=example,dc=com (aci is missing) INFO  lib389:ticket47653MMR_test.py:259 Exception (expected): INSUFFICIENT_ACCESS INFO  lib389:ticket47653MMR_test.py:263 Bind as cn=Directory Manager and add the WRITE SELFDN aci INFO  lib389:ticket47653MMR_test.py:277 M1: Bind as cn=bind_entry, dc=example,dc=com INFO  lib389:ticket47653MMR_test.py:282 M1: Try to modify cn=test_entry, dc=example,dc=com. It should succeeds INFO  lib389:ticket47653MMR_test.py:286 M1: Bind as cn=Directory Manager INFO  lib389:ticket47653MMR_test.py:289 M1: Check the update of cn=test_entry, dc=example,dc=com INFO  lib389:ticket47653MMR_test.py:295 M2: Bind as cn=Directory Manager INFO  lib389:ticket47653MMR_test.py:297 M2: Try to retrieve cn=test_entry, dc=example,dc=com INFO  lib389:ticket47653MMR_test.py:311 M2: Update cn=test_entry, dc=example,dc=com (bound as cn=bind_entry, dc=example,dc=com) INFO  lib389:ticket47653MMR_test.py:329 M1: Bind as cn=Directory Manager INFO  lib389:ticket47653MMR_test.py:331 M1: Check cn=test_entry, dc=example,dc=com.postalCode=1929)
Passed tickets/ticket47676_test.py::test_ticket47676_init 1.18
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 4bd0d50c-f6c9-4388-af74-04af030d76a8 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 560a8525-06dc-47af-a08e-812048fc2159 / got description=4bd0d50c-f6c9-4388-af74-04af030d76a8) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47676_test.py:88 Add OCticket47676 that allows 'member' attribute INFO  lib389:ticket47676_test.py:93 Add cn=bind_entry, dc=example,dc=com
Passed tickets/ticket47676_test.py::test_ticket47676_skip_oc_at 2.94
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47676_test.py:120 ######################### ADD ###################### INFO  lib389:ticket47676_test.py:123 Bind as cn=Directory Manager and add the add the entry with specific oc INFO  lib389:ticket47676_test.py:140 Try to add Add cn=test_entry, dc=example,dc=com should be successful INFO  lib389:ticket47676_test.py:147 Try to retrieve cn=test_entry, dc=example,dc=com from Master2 INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect bfde8d46-ff61-412f-a40b-463f7cfaf66c / got description=560a8525-06dc-47af-a08e-812048fc2159) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389:ticket47676_test.py:152 Update cn=test_entry, dc=example,dc=com on M2 INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 60f03c07-2931-4d46-bfb6-45a4c958834f / got description=bfde8d46-ff61-412f-a40b-463f7cfaf66c) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working
Passed tickets/ticket47676_test.py::test_ticket47676_reject_action 9.30
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47676_test.py:163 ######################### REJECT ACTION ###################### INFO  lib389:ticket47676_test.py:177 Add OC2ticket47676 on M1 INFO  lib389:ticket47676_test.py:182 Check OC2ticket47676 is in M1 INFO  lib389:ticket47676_test.py:193 Update cn=test_entry, dc=example,dc=com on M1 INFO  lib389:ticket47676_test.py:198 Check updated cn=test_entry, dc=example,dc=com on M2 INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 2554df4b-c783-4fe2-87a2-62def55635ce / got description=60f03c07-2931-4d46-bfb6-45a4c958834f) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389:ticket47676_test.py:205 Check OC2ticket47676 is not in M2 INFO  lib389:ticket47676_test.py:215 ######################### NO MORE REJECT ACTION ###################### INFO  lib389:ticket47676_test.py:226 Update cn=test_entry, dc=example,dc=com on M1 INFO  lib389:ticket47676_test.py:231 Check updated cn=test_entry, dc=example,dc=com on M2 INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect a794b2f0-5bd4-4507-a0c1-4fb5d634b505 / got description=2554df4b-c783-4fe2-87a2-62def55635ce) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389:ticket47676_test.py:237 Check OC2ticket47676 is in M2
Passed tickets/ticket47714_test.py::test_ticket47714_init 0.10
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47714_test.py:38 ############################################### INFO  lib389:ticket47714_test.py:39 ####### INFO  lib389:ticket47714_test.py:40 ####### Testing Ticket 47714 - [RFE] Update lastLoginTime also in Account Policy plugin if account lockout is based on passwordExpirationTime. INFO  lib389:ticket47714_test.py:41 ####### INFO  lib389:ticket47714_test.py:42 ############################################### INFO  lib389.utils:ticket47714_test.py:55 ######################### Adding Account Policy entry: cn=Account Inactivation Policy,dc=example,dc=com ###################### INFO  lib389.utils:ticket47714_test.py:60 ######################### Adding Test User entry: uid=ticket47714user,dc=example,dc=com ######################
Passed tickets/ticket47714_test.py::test_ticket47714_run_0 10.68
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47714_test.py:38 ############################################### INFO  lib389:ticket47714_test.py:39 ####### INFO  lib389:ticket47714_test.py:40 ####### Account Policy - No new attr alwaysRecordLoginAttr in config INFO  lib389:ticket47714_test.py:41 ####### INFO  lib389:ticket47714_test.py:42 ############################################### INFO  lib389.utils:ticket47714_test.py:96 ######################### Bind as uid=ticket47714user,dc=example,dc=com ###################### INFO  lib389.utils:ticket47714_test.py:109 ######################### Bind as uid=ticket47714user,dc=example,dc=com again ###################### INFO  lib389.utils:ticket47714_test.py:122 First lastLoginTime: b'20201025020740Z', Second lastLoginTime: b'20201025020742Z' INFO  lib389.utils:ticket47714_test.py:133 ######################### cn=config,cn=Account Policy Plugin,cn=plugins,cn=config ###################### INFO  lib389.utils:ticket47714_test.py:134 accountInactivityLimit: b'1' INFO  lib389.utils:ticket47714_test.py:135 ######################### cn=config,cn=Account Policy Plugin,cn=plugins,cn=config DONE ###################### INFO  lib389.utils:ticket47714_test.py:137 ######################### Bind as uid=ticket47714user,dc=example,dc=com again to fail ###################### INFO  lib389.utils:ticket47714_test.py:141 CONSTRAINT VIOLATION Constraint violation INFO  lib389.utils:ticket47714_test.py:142 uid=ticket47714user,dc=example,dc=com was successfully inactivated.
Passed tickets/ticket47714_test.py::test_ticket47714_run_1 5.88
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47714_test.py:38 ############################################### INFO  lib389:ticket47714_test.py:39 ####### INFO  lib389:ticket47714_test.py:40 ####### Account Policy - With new attr alwaysRecordLoginAttr in config INFO  lib389:ticket47714_test.py:41 ####### INFO  lib389:ticket47714_test.py:42 ############################################### INFO  lib389.utils:ticket47714_test.py:179 ######################### Bind as uid=ticket47714user,dc=example,dc=com ###################### INFO  lib389.utils:ticket47714_test.py:191 ######################### Bind as uid=ticket47714user,dc=example,dc=com again ###################### INFO  lib389.utils:ticket47714_test.py:203 First lastLoginTime: b'20201025020750Z', Second lastLoginTime: b'20201025020751Z' INFO  lib389:ticket47714_test.py:206 ticket47714 was successfully verified.
Passed tickets/ticket47721_test.py::test_ticket47721_init 1.29
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect dd475d5e-1d1a-4d8c-9e0d-0488ce84cb45 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect e1d636de-9b5a-4a40-8445-24b2e520cc8b / got description=dd475d5e-1d1a-4d8c-9e0d-0488ce84cb45) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47721_test.py:98 Add cn=bind_entry, dc=example,dc=com
Passed tickets/ticket47721_test.py::test_ticket47721_0 1.21
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect fa2d2bce-fea1-4300-a12c-362fa7026bdc / got description=e1d636de-9b5a-4a40-8445-24b2e520cc8b) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working
Passed tickets/ticket47721_test.py::test_ticket47721_1 3.54
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket47721_test:ticket47721_test.py:127 Running test 1... INFO  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' ) )" INFO  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' )" INFO  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' )" INFO  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' )" INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 0c03c4c0-9af5-4f9b-89d6-dec8b0153d00 / got description=fa2d2bce-fea1-4300-a12c-362fa7026bdc) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working DEBUG  tests.tickets.ticket47721_test:ticket47721_test.py:158 Master 1 schemaCSN: b'5f94de0f000000000000' DEBUG  tests.tickets.ticket47721_test:ticket47721_test.py:159 Master 2 schemaCSN: b'5f94de0f000000000000'
Passed tickets/ticket47721_test.py::test_ticket47721_2 3.35
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket47721_test:ticket47721_test.py:163 Running test 2... INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 2eaef102-1a58-4088-ade7-1bcb65d4cca2 / got description=0c03c4c0-9af5-4f9b-89d6-dec8b0153d00) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working DEBUG  tests.tickets.ticket47721_test:ticket47721_test.py:176 Master 1 schemaCSN: b'5f94de0f000000000000' DEBUG  tests.tickets.ticket47721_test:ticket47721_test.py:177 Master 2 schemaCSN: b'5f94de0f000000000000'
Passed tickets/ticket47721_test.py::test_ticket47721_3 13.55
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket47721_test:ticket47721_test.py:195 Running test 3... INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  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' ) )" INFO  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' )" INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 7b412f17-4328-4968-8202-6f81ce1450b3 / got description=2eaef102-1a58-4088-ade7-1bcb65d4cca2) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working DEBUG  tests.tickets.ticket47721_test:ticket47721_test.py:223 Master 1 schemaCSN: b'5f94de0f000000000000' DEBUG  tests.tickets.ticket47721_test:ticket47721_test.py:224 Master 2 schemaCSN: b'5f94de1c000000000000'
Passed tickets/ticket47721_test.py::test_ticket47721_4 4.63
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket47721_test:ticket47721_test.py:245 Running test 4... INFO  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' ) )" INFO  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' )" INFO  lib389:ticket47721_test.py:255 trigger replication M1->M2: to update the schema INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 3a01d495-3087-4705-930f-0099bcd44e19 / got description=7b412f17-4328-4968-8202-6f81ce1450b3) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389:ticket47721_test.py:264 trigger replication M1->M2: to push the schema INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 547363a9-8916-49e8-9b18-a46cbcef8624 / got description=3a01d495-3087-4705-930f-0099bcd44e19) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working DEBUG  tests.tickets.ticket47721_test:ticket47721_test.py:276 Master 1 schemaCSN: b'5f94de24000000000000' DEBUG  tests.tickets.ticket47721_test:ticket47721_test.py:277 Master 2 schemaCSN: b'5f94de24000000000000'
Passed tickets/ticket47787_test.py::test_ticket47787_init 2.40
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect fc8a2670-ed0b-4995-bcbb-a2c0311147be / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect c38c237c-c15f-475f-83b0-2b7f2e37b6fc / got description=fc8a2670-ed0b-4995-bcbb-a2c0311147be) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47787_test.py:294 ######################### INITIALIZATION ###################### INFO  lib389:ticket47787_test.py:297 Add cn=bind_entry,dc=example,dc=com INFO  lib389:ticket47787_test.py:305 Add cn=staged user,dc=example,dc=com INFO  lib389:ticket47787_test.py:312 Add cn=accounts,dc=example,dc=com
Passed tickets/ticket47787_test.py::test_ticket47787_2 16.84
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47787_test.py:69 ############################################### INFO  lib389:ticket47787_test.py:70 ####### INFO  lib389:ticket47787_test.py:71 ####### test_ticket47787_2 INFO  lib389:ticket47787_test.py:72 ####### INFO  lib389:ticket47787_test.py:73 ############################################### INFO  lib389:ticket47787_test.py:59 Bind as cn=Directory Manager INFO  lib389:ticket47787_test.py:59 Bind as cn=Directory Manager INFO  lib389:ticket47787_test.py:159 ######################### Pause RA M1<->M2 ###################### INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:ticket47787_test.py:209 ######################### MOD cn=new_account18,cn=staged user,dc=example,dc=com (M2) ###################### INFO  lib389:ticket47787_test.py:200 ######################### DELETE new_account1 (M1) ###################### INFO  lib389:ticket47787_test.py:209 ######################### MOD cn=new_account18,cn=staged user,dc=example,dc=com (M2) ###################### INFO  lib389:ticket47787_test.py:209 ######################### MOD cn=new_account19,cn=staged user,dc=example,dc=com (M2) ###################### INFO  lib389:ticket47787_test.py:209 ######################### MOD cn=new_account1,cn=staged user,dc=example,dc=com (M2) ###################### INFO  lib389:ticket47787_test.py:209 ######################### MOD cn=new_account19,cn=staged user,dc=example,dc=com (M2) ###################### INFO  lib389:ticket47787_test.py:170 ######################### resume RA M1<->M2 ###################### INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:ticket47787_test.py:388 ######################### Check DEL replicated on M2 ###################### INFO  lib389:ticket47787_test.py:79 ######################### Tombstone on M1 ###################### INFO  lib389:ticket47787_test.py:92 ######################### Tombstone on M2 ###################### INFO  lib389:ticket47787_test.py:96 ######################### Description ###################### DEL M1 - MOD M2 INFO  lib389:ticket47787_test.py:97 M1 only INFO  lib389:ticket47787_test.py:108 M2 only INFO  lib389:ticket47787_test.py:119 M1 differs M2 INFO  lib389:ticket47787_test.py:409 ######################### Check MOD replicated on M1 ######################
Passed tickets/ticket47808_test.py::test_ticket47808_run 3.52
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47808_test.py:36 Bind as cn=Directory Manager INFO  lib389:ticket47808_test.py:39 ######################### SETUP ATTR UNIQ PLUGIN ###################### INFO  lib389:ticket47808_test.py:46 ######################### ADD USER 1 ###################### INFO  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 INFO  lib389:ticket47808_test.py:58 ######################### Restart Server ###################### INFO  lib389:ticket47808_test.py:62 ######################### ADD USER 2 ###################### INFO  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 WARNING  lib389:ticket47808_test.py:75 Adding cn=test_entry 2, dc=example,dc=com failed INFO  lib389:ticket47808_test.py:78 ######################### IS SERVER UP? ###################### INFO  lib389:ticket47808_test.py:81 Yes, it's up. INFO  lib389:ticket47808_test.py:83 ######################### CHECK USER 2 NOT ADDED ###################### INFO  lib389:ticket47808_test.py:84 Try to search cn=test_entry 2, dc=example,dc=com INFO  lib389:ticket47808_test.py:88 Found none INFO  lib389:ticket47808_test.py:90 ######################### DELETE USER 1 ###################### INFO  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.08
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed tickets/ticket47823_test.py::test_ticket47823_one_container_add 18.02
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47823_test.py:58 ############################################### INFO  lib389:ticket47823_test.py:59 ####### INFO  lib389:ticket47823_test.py:60 ####### With former config (args), check attribute uniqueness with 'cn' (ADD) INFO  lib389:ticket47823_test.py:61 ####### INFO  lib389:ticket47823_test.py:62 ############################################### INFO  lib389:ticket47823_test.py:140 Uniqueness not enforced: create the entries INFO  lib389:ticket47823_test.py:155 Uniqueness enforced: checks second entry is rejected INFO  lib389:ticket47823_test.py:58 ############################################### INFO  lib389:ticket47823_test.py:59 ####### INFO  lib389:ticket47823_test.py:60 ####### With new config (args), check attribute uniqueness with 'cn' (ADD) INFO  lib389:ticket47823_test.py:61 ####### INFO  lib389:ticket47823_test.py:62 ############################################### INFO  lib389:ticket47823_test.py:140 Uniqueness not enforced: create the entries INFO  lib389:ticket47823_test.py:155 Uniqueness enforced: checks second entry is rejected
Passed tickets/ticket47823_test.py::test_ticket47823_one_container_mod 9.80
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47823_test.py:58 ############################################### INFO  lib389:ticket47823_test.py:59 ####### INFO  lib389:ticket47823_test.py:60 ####### With former config (args), check attribute uniqueness with 'cn' (MOD) INFO  lib389:ticket47823_test.py:61 ####### INFO  lib389:ticket47823_test.py:62 ############################################### INFO  lib389:ticket47823_test.py:193 Uniqueness enforced: checks MOD ADD entry is rejected INFO  lib389:ticket47823_test.py:210 Uniqueness enforced: checks MOD REPLACE entry is rejected INFO  lib389:ticket47823_test.py:58 ############################################### INFO  lib389:ticket47823_test.py:59 ####### INFO  lib389:ticket47823_test.py:60 ####### With new config (args), check attribute uniqueness with 'cn' (MOD) INFO  lib389:ticket47823_test.py:61 ####### INFO  lib389:ticket47823_test.py:62 ############################################### INFO  lib389:ticket47823_test.py:193 Uniqueness enforced: checks MOD ADD entry is rejected INFO  lib389:ticket47823_test.py:210 Uniqueness enforced: checks MOD REPLACE entry is rejected
Passed tickets/ticket47823_test.py::test_ticket47823_one_container_modrdn 8.71
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47823_test.py:58 ############################################### INFO  lib389:ticket47823_test.py:59 ####### INFO  lib389:ticket47823_test.py:60 ####### With former config (args), check attribute uniqueness with 'cn' (MODRDN) INFO  lib389:ticket47823_test.py:61 ####### INFO  lib389:ticket47823_test.py:62 ############################################### INFO  lib389:ticket47823_test.py:237 Uniqueness enforced: checks MODRDN entry is rejected INFO  lib389:ticket47823_test.py:58 ############################################### INFO  lib389:ticket47823_test.py:59 ####### INFO  lib389:ticket47823_test.py:60 ####### With former config (args), check attribute uniqueness with 'cn' (MODRDN) INFO  lib389:ticket47823_test.py:61 ####### INFO  lib389:ticket47823_test.py:62 ############################################### INFO  lib389:ticket47823_test.py:237 Uniqueness enforced: checks MODRDN entry is rejected
Passed tickets/ticket47823_test.py::test_ticket47823_multi_containers_add 8.98
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47823_test.py:58 ############################################### INFO  lib389:ticket47823_test.py:59 ####### INFO  lib389:ticket47823_test.py:60 ####### With former config (args), check attribute uniqueness with 'cn' (ADD) INFO  lib389:ticket47823_test.py:61 ####### INFO  lib389:ticket47823_test.py:62 ############################################### INFO  lib389:ticket47823_test.py:58 ############################################### INFO  lib389:ticket47823_test.py:59 ####### INFO  lib389:ticket47823_test.py:60 ####### With new config (args), check attribute uniqueness with 'cn' (ADD) INFO  lib389:ticket47823_test.py:61 ####### INFO  lib389:ticket47823_test.py:62 ###############################################
Passed tickets/ticket47823_test.py::test_ticket47823_multi_containers_mod 9.93
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47823_test.py:58 ############################################### INFO  lib389:ticket47823_test.py:59 ####### INFO  lib389:ticket47823_test.py:60 ####### With former config (args), check attribute uniqueness with 'cn' (MOD) on separated container INFO  lib389:ticket47823_test.py:61 ####### INFO  lib389:ticket47823_test.py:62 ############################################### INFO  lib389:ticket47823_test.py:525 Uniqueness not enforced: if same 'cn' modified (add/replace) on separated containers INFO  lib389:ticket47823_test.py:58 ############################################### INFO  lib389:ticket47823_test.py:59 ####### INFO  lib389:ticket47823_test.py:60 ####### With new config (args), check attribute uniqueness with 'cn' (MOD) on separated container INFO  lib389:ticket47823_test.py:61 ####### INFO  lib389:ticket47823_test.py:62 ############################################### INFO  lib389:ticket47823_test.py:531 Uniqueness not enforced: if same 'cn' modified (add/replace) on separated containers
Passed tickets/ticket47823_test.py::test_ticket47823_multi_containers_modrdn 9.18
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47823_test.py:58 ############################################### INFO  lib389:ticket47823_test.py:59 ####### INFO  lib389:ticket47823_test.py:60 ####### With former config (args), check attribute uniqueness with 'cn' (MODRDN) on separated containers INFO  lib389:ticket47823_test.py:61 ####### INFO  lib389:ticket47823_test.py:62 ############################################### INFO  lib389:ticket47823_test.py:545 Uniqueness not enforced: checks MODRDN entry is accepted on separated containers INFO  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.30
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47823_test.py:58 ############################################### INFO  lib389:ticket47823_test.py:59 ####### INFO  lib389:ticket47823_test.py:60 ####### With new config (args), check attribute uniqueness with 'cn' (ADD) across several containers INFO  lib389:ticket47823_test.py:61 ####### INFO  lib389:ticket47823_test.py:62 ###############################################
Passed tickets/ticket47823_test.py::test_ticket47823_across_multi_containers_mod 4.37
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47823_test.py:58 ############################################### INFO  lib389:ticket47823_test.py:59 ####### INFO  lib389:ticket47823_test.py:60 ####### With new config (args), check attribute uniqueness with 'cn' (MOD) across several containers INFO  lib389:ticket47823_test.py:61 ####### INFO  lib389:ticket47823_test.py:62 ###############################################
Passed tickets/ticket47823_test.py::test_ticket47823_across_multi_containers_modrdn 4.28
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47823_test.py:58 ############################################### INFO  lib389:ticket47823_test.py:59 ####### INFO  lib389:ticket47823_test.py:60 ####### With new config (args), check attribute uniqueness with 'cn' (MODRDN) across several containers INFO  lib389:ticket47823_test.py:61 ####### INFO  lib389:ticket47823_test.py:62 ###############################################
Passed tickets/ticket47823_test.py::test_ticket47823_invalid_config_1 9.87
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47823_test.py:58 ############################################### INFO  lib389:ticket47823_test.py:59 ####### INFO  lib389:ticket47823_test.py:60 ####### Invalid config (old): arg0 is missing INFO  lib389:ticket47823_test.py:61 ####### INFO  lib389:ticket47823_test.py:62 ###############################################
Passed tickets/ticket47823_test.py::test_ticket47823_invalid_config_2 9.13
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47823_test.py:58 ############################################### INFO  lib389:ticket47823_test.py:59 ####### INFO  lib389:ticket47823_test.py:60 ####### Invalid config (old): arg1 is missing INFO  lib389:ticket47823_test.py:61 ####### INFO  lib389:ticket47823_test.py:62 ###############################################
Passed tickets/ticket47823_test.py::test_ticket47823_invalid_config_3 9.82
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47823_test.py:58 ############################################### INFO  lib389:ticket47823_test.py:59 ####### INFO  lib389:ticket47823_test.py:60 ####### Invalid config (old): arg0 is missing but new config attrname exists INFO  lib389:ticket47823_test.py:61 ####### INFO  lib389:ticket47823_test.py:62 ###############################################
Passed tickets/ticket47823_test.py::test_ticket47823_invalid_config_4 9.18
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47823_test.py:58 ############################################### INFO  lib389:ticket47823_test.py:59 ####### INFO  lib389:ticket47823_test.py:60 ####### Invalid config (old): arg1 is missing but new config exist INFO  lib389:ticket47823_test.py:61 ####### INFO  lib389:ticket47823_test.py:62 ###############################################
Passed tickets/ticket47823_test.py::test_ticket47823_invalid_config_5 9.12
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47823_test.py:58 ############################################### INFO  lib389:ticket47823_test.py:59 ####### INFO  lib389:ticket47823_test.py:60 ####### Invalid config (new): uniqueness-attribute-name is missing INFO  lib389:ticket47823_test.py:61 ####### INFO  lib389:ticket47823_test.py:62 ###############################################
Passed tickets/ticket47823_test.py::test_ticket47823_invalid_config_6 9.13
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47823_test.py:58 ############################################### INFO  lib389:ticket47823_test.py:59 ####### INFO  lib389:ticket47823_test.py:60 ####### Invalid config (new): uniqueness-subtrees is missing INFO  lib389:ticket47823_test.py:61 ####### INFO  lib389:ticket47823_test.py:62 ###############################################
Passed tickets/ticket47823_test.py::test_ticket47823_invalid_config_7 10.00
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47823_test.py:58 ############################################### INFO  lib389:ticket47823_test.py:59 ####### INFO  lib389:ticket47823_test.py:60 ####### Invalid config (new): uniqueness-subtrees are invalid INFO  lib389:ticket47823_test.py:61 ####### INFO  lib389:ticket47823_test.py:62 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_init 4.57
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed tickets/ticket47828_test.py::test_ticket47828_run_0 0.28
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### NO exclude scope: Add an active entry and check its ALLOCATED_ATTR is set INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_run_1 0.02
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### NO exclude scope: Add an active entry and check its ALLOCATED_ATTR is unchanged (!= magic) INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_run_2 0.26
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### NO exclude scope: Add a staged entry and check its ALLOCATED_ATTR is set INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_run_3 0.17
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### NO exclude scope: Add a staged entry and check its ALLOCATED_ATTR is unchanged (!= magic) INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_run_4 0.01
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### Exclude the provisioning container INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_run_5 0.51
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### Provisioning excluded scope: Add an active entry and check its ALLOCATED_ATTR is set INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_run_6 0.02
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### Provisioning excluded scope: Add an active entry and check its ALLOCATED_ATTR is unchanged (!= magic) INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_run_7 0.02
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### Provisioning excluded scope: Add a staged entry and check its ALLOCATED_ATTR is not set INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_run_8 0.01
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### Provisioning excluded scope: Add a staged entry and check its ALLOCATED_ATTR is unchanged (!= magic) INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_run_9 0.17
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### Provisioning excluded scope: Add an dummy entry and check its ALLOCATED_ATTR is set INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_run_10 0.01
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### Provisioning excluded scope: Add an dummy entry and check its ALLOCATED_ATTR is unchanged (!= magic) INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_run_11 0.01
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### Exclude (in addition) the dummy container INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_run_12 0.02
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### Provisioning/Dummy excluded scope: Add an active entry and check its ALLOCATED_ATTR is set INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_run_13 0.02
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### Provisioning/Dummy excluded scope: Add an active entry and check its ALLOCATED_ATTR is unchanged (!= magic) INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_run_14 0.02
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### Provisioning/Dummy excluded scope: Add a staged entry and check its ALLOCATED_ATTR is not set INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_run_15 0.02
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### Provisioning/Dummy excluded scope: Add a staged entry and check its ALLOCATED_ATTR is unchanged (!= magic) INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_run_16 0.02
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### Provisioning/Dummy excluded scope: Add an dummy entry and check its ALLOCATED_ATTR not is set INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_run_17 0.02
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### Provisioning/Dummy excluded scope: Add an dummy entry and check its ALLOCATED_ATTR is unchanged (!= magic) INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_run_18 0.01
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### Exclude PROVISIONING and a wrong container INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_run_19 0.02
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### Provisioning+wrong container excluded scope: Add an active entry and check its ALLOCATED_ATTR is set INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_run_20 0.02
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### Provisioning+wrong container excluded scope: Add an active entry and check its ALLOCATED_ATTR is unchanged (!= magic) INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_run_21 0.02
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### Provisioning+wrong container excluded scope: Add a staged entry and check its ALLOCATED_ATTR is not set INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_run_22 0.01
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### Provisioning+wrong container excluded scope: Add a staged entry and check its ALLOCATED_ATTR is unchanged (!= magic) INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_run_23 0.02
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### Provisioning+wrong container excluded scope: Add an dummy entry and check its ALLOCATED_ATTR is set INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_run_24 0.01
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### Provisioning+wrong container excluded scope: Add an dummy entry and check its ALLOCATED_ATTR is unchanged (!= magic) INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_run_25 0.01
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### Exclude a wrong container INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_run_26 0.02
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### Wrong container excluded scope: Add an active entry and check its ALLOCATED_ATTR is set INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_run_27 0.02
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### Wrong container excluded scope: Add an active entry and check its ALLOCATED_ATTR is unchanged (!= magic) INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_run_28 0.02
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### Wrong container excluded scope: Add a staged entry and check its ALLOCATED_ATTR is not set INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_run_29 0.01
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### Wrong container excluded scope: Add a staged entry and check its ALLOCATED_ATTR is unchanged (!= magic) INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_run_30 0.02
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### Wrong container excluded scope: Add an dummy entry and check its ALLOCATED_ATTR is set INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47828_test.py::test_ticket47828_run_31 0.01
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47828_test.py:42 ############################################### INFO  lib389:ticket47828_test.py:43 ####### INFO  lib389:ticket47828_test.py:44 ####### Wrong container excluded scope: Add an dummy entry and check its ALLOCATED_ATTR is unchanged (!= magic) INFO  lib389:ticket47828_test.py:45 ####### INFO  lib389:ticket47828_test.py:46 ###############################################
Passed tickets/ticket47829_test.py::test_ticket47829_init 4.48
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed tickets/ticket47829_test.py::test_ticket47829_mod_active_user_1 2.30
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47829_test.py:62 ############################################### INFO  lib389:ticket47829_test.py:63 ####### INFO  lib389:ticket47829_test.py:64 ####### MOD: add an active user to an active group INFO  lib389:ticket47829_test.py:65 ####### INFO  lib389:ticket47829_test.py:66 ############################################### INFO  lib389:ticket47829_test.py:172 add entry cn=active guy,cn=accounts,cn=in,dc=example,dc=com INFO  lib389:ticket47829_test.py:173 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com INFO  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' INFO  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' INFO  lib389:ticket47829_test.py:172 delete entry cn=active guy,cn=accounts,cn=in,dc=example,dc=com INFO  lib389:ticket47829_test.py:173 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com
Passed tickets/ticket47829_test.py::test_ticket47829_mod_active_user_2 2.02
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47829_test.py:62 ############################################### INFO  lib389:ticket47829_test.py:63 ####### INFO  lib389:ticket47829_test.py:64 ####### MOD: add an Active user to a Stage group INFO  lib389:ticket47829_test.py:65 ####### INFO  lib389:ticket47829_test.py:66 ############################################### INFO  lib389:ticket47829_test.py:172 add entry cn=active guy,cn=accounts,cn=in,dc=example,dc=com INFO  lib389:ticket47829_test.py:173 to group cn=stage group,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com INFO  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' INFO  lib389:ticket47829_test.py:172 delete entry cn=active guy,cn=accounts,cn=in,dc=example,dc=com INFO  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--------------------------------
INFO  lib389:ticket47829_test.py:62 ############################################### INFO  lib389:ticket47829_test.py:63 ####### INFO  lib389:ticket47829_test.py:64 ####### MOD: add an Active user to a out of scope group INFO  lib389:ticket47829_test.py:65 ####### INFO  lib389:ticket47829_test.py:66 ############################################### INFO  lib389:ticket47829_test.py:172 add entry cn=active guy,cn=accounts,cn=in,dc=example,dc=com INFO  lib389:ticket47829_test.py:173 to group cn=out group,cn=out,dc=example,dc=com INFO  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' INFO  lib389:ticket47829_test.py:172 delete entry cn=active guy,cn=accounts,cn=in,dc=example,dc=com INFO  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--------------------------------
INFO  lib389:ticket47829_test.py:62 ############################################### INFO  lib389:ticket47829_test.py:63 ####### INFO  lib389:ticket47829_test.py:64 ####### MOD: add an Stage user to a Active group INFO  lib389:ticket47829_test.py:65 ####### INFO  lib389:ticket47829_test.py:66 ############################################### INFO  lib389:ticket47829_test.py:172 add entry cn=stage guy,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com INFO  lib389:ticket47829_test.py:173 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com INFO  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' INFO  lib389:ticket47829_test.py:172 delete entry cn=stage guy,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com INFO  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.03
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47829_test.py:62 ############################################### INFO  lib389:ticket47829_test.py:63 ####### INFO  lib389:ticket47829_test.py:64 ####### MOD: add an Stage user to a Stage group INFO  lib389:ticket47829_test.py:65 ####### INFO  lib389:ticket47829_test.py:66 ############################################### INFO  lib389:ticket47829_test.py:172 add entry cn=stage guy,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com INFO  lib389:ticket47829_test.py:173 to group cn=stage group,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com INFO  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' INFO  lib389:ticket47829_test.py:172 delete entry cn=stage guy,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com INFO  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.01
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47829_test.py:62 ############################################### INFO  lib389:ticket47829_test.py:63 ####### INFO  lib389:ticket47829_test.py:64 ####### MOD: add an Stage user to a out of scope group INFO  lib389:ticket47829_test.py:65 ####### INFO  lib389:ticket47829_test.py:66 ############################################### INFO  lib389:ticket47829_test.py:172 add entry cn=stage guy,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com INFO  lib389:ticket47829_test.py:173 to group cn=out group,cn=out,dc=example,dc=com INFO  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' INFO  lib389:ticket47829_test.py:172 delete entry cn=stage guy,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com INFO  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.01
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47829_test.py:62 ############################################### INFO  lib389:ticket47829_test.py:63 ####### INFO  lib389:ticket47829_test.py:64 ####### MOD: add an out of scope user to an active group INFO  lib389:ticket47829_test.py:65 ####### INFO  lib389:ticket47829_test.py:66 ############################################### INFO  lib389:ticket47829_test.py:172 add entry cn=out guy,cn=out,dc=example,dc=com INFO  lib389:ticket47829_test.py:173 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com INFO  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' INFO  lib389:ticket47829_test.py:172 delete entry cn=out guy,cn=out,dc=example,dc=com INFO  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--------------------------------
INFO  lib389:ticket47829_test.py:62 ############################################### INFO  lib389:ticket47829_test.py:63 ####### INFO  lib389:ticket47829_test.py:64 ####### MOD: add an out of scope user to a Stage group INFO  lib389:ticket47829_test.py:65 ####### INFO  lib389:ticket47829_test.py:66 ############################################### INFO  lib389:ticket47829_test.py:172 add entry cn=out guy,cn=out,dc=example,dc=com INFO  lib389:ticket47829_test.py:173 to group cn=stage group,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com INFO  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' INFO  lib389:ticket47829_test.py:172 delete entry cn=out guy,cn=out,dc=example,dc=com INFO  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--------------------------------
INFO  lib389:ticket47829_test.py:62 ############################################### INFO  lib389:ticket47829_test.py:63 ####### INFO  lib389:ticket47829_test.py:64 ####### MOD: add an out of scope user to an out of scope group INFO  lib389:ticket47829_test.py:65 ####### INFO  lib389:ticket47829_test.py:66 ############################################### INFO  lib389:ticket47829_test.py:172 add entry cn=out guy,cn=out,dc=example,dc=com INFO  lib389:ticket47829_test.py:173 to group cn=out group,cn=out,dc=example,dc=com INFO  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' INFO  lib389:ticket47829_test.py:172 delete entry cn=out guy,cn=out,dc=example,dc=com INFO  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.04
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47829_test.py:62 ############################################### INFO  lib389:ticket47829_test.py:63 ####### INFO  lib389:ticket47829_test.py:64 ####### add an Active user to a Active group. Then move Active user to Active INFO  lib389:ticket47829_test.py:65 ####### INFO  lib389:ticket47829_test.py:66 ############################################### INFO  lib389:ticket47829_test.py:172 add entry cn=active guy,cn=accounts,cn=in,dc=example,dc=com INFO  lib389:ticket47829_test.py:173 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com INFO  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' INFO  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' INFO  lib389:ticket47829_test.py:132 ######################### MODRDN cn=xactive guy ###################### INFO  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' INFO  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' INFO  lib389:ticket47829_test.py:132 ######################### MODRDN cn=active guy ###################### INFO  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' INFO  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' INFO  lib389:ticket47829_test.py:172 delete entry cn=active guy,cn=accounts,cn=in,dc=example,dc=com INFO  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--------------------------------
INFO  lib389:ticket47829_test.py:62 ############################################### INFO  lib389:ticket47829_test.py:63 ####### INFO  lib389:ticket47829_test.py:64 ####### add an Active user to a Active group. Then move Active user to Stage INFO  lib389:ticket47829_test.py:65 ####### INFO  lib389:ticket47829_test.py:66 ############################################### INFO  lib389:ticket47829_test.py:172 add entry cn=active guy,cn=accounts,cn=in,dc=example,dc=com INFO  lib389:ticket47829_test.py:173 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com INFO  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' INFO  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' INFO  lib389:ticket47829_test.py:132 ######################### MODRDN cn=active guy ###################### INFO  lib389:ticket47829_test.py:132 ######################### MODRDN cn=active guy ######################
Passed tickets/ticket47829_test.py::test_ticket47829_mod_active_user_modrdn_out_user_1 1.05
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47829_test.py:62 ############################################### INFO  lib389:ticket47829_test.py:63 ####### INFO  lib389:ticket47829_test.py:64 ####### add an Active user to a Active group. Then move Active user to out of scope INFO  lib389:ticket47829_test.py:65 ####### INFO  lib389:ticket47829_test.py:66 ############################################### INFO  lib389:ticket47829_test.py:172 add entry cn=active guy,cn=accounts,cn=in,dc=example,dc=com INFO  lib389:ticket47829_test.py:173 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com INFO  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' INFO  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' INFO  lib389:ticket47829_test.py:132 ######################### MODRDN cn=active guy ###################### INFO  lib389:ticket47829_test.py:132 ######################### MODRDN cn=active guy ######################
Passed tickets/ticket47829_test.py::test_ticket47829_mod_modrdn_1 1.03
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47829_test.py:62 ############################################### INFO  lib389:ticket47829_test.py:63 ####### INFO  lib389:ticket47829_test.py:64 ####### add an Stage user to a Active group. Then move Stage user to Active INFO  lib389:ticket47829_test.py:65 ####### INFO  lib389:ticket47829_test.py:66 ############################################### INFO  lib389:ticket47829_test.py:172 add entry cn=stage guy,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com INFO  lib389:ticket47829_test.py:173 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com INFO  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' INFO  lib389:ticket47829_test.py:132 ######################### MODRDN cn=stage guy ###################### INFO  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' INFO  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' INFO  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--------------------------------
INFO  lib389:ticket47829_test.py:62 ############################################### INFO  lib389:ticket47829_test.py:63 ####### INFO  lib389:ticket47829_test.py:64 ####### add an Stage user to a Active group. Then move Stage user to Active INFO  lib389:ticket47829_test.py:65 ####### INFO  lib389:ticket47829_test.py:66 ############################################### INFO  lib389:ticket47829_test.py:172 add entry cn=stage guy,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com INFO  lib389:ticket47829_test.py:173 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com INFO  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' INFO  lib389:ticket47829_test.py:132 ######################### MODRDN cn=stage guy ###################### INFO  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' INFO  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' INFO  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--------------------------------
INFO  lib389:ticket47829_test.py:62 ############################################### INFO  lib389:ticket47829_test.py:63 ####### INFO  lib389:ticket47829_test.py:64 ####### add an Stage user to a Active group. Then move Stage user to Stage INFO  lib389:ticket47829_test.py:65 ####### INFO  lib389:ticket47829_test.py:66 ############################################### INFO  lib389:ticket47829_test.py:62 ############################################### INFO  lib389:ticket47829_test.py:63 ####### INFO  lib389:ticket47829_test.py:64 ####### Return because it requires a fix for 47833 INFO  lib389:ticket47829_test.py:65 ####### INFO  lib389:ticket47829_test.py:66 ###############################################
Passed tickets/ticket47829_test.py::test_ticket47829_indirect_active_group_1 2.04
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47829_test.py:62 ############################################### INFO  lib389:ticket47829_test.py:63 ####### INFO  lib389:ticket47829_test.py:64 ####### add an Active group (G1) to an active group (G0). Then add active user to G1 INFO  lib389:ticket47829_test.py:65 ####### INFO  lib389:ticket47829_test.py:66 ############################################### INFO  lib389:ticket47829_test.py:172 add entry cn=active guy,cn=accounts,cn=in,dc=example,dc=com INFO  lib389:ticket47829_test.py:173 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com INFO  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' INFO  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' INFO  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' INFO  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' INFO  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' INFO  lib389:ticket47829_test.py:172 delete entry cn=active guy,cn=accounts,cn=in,dc=example,dc=com INFO  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.09
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47829_test.py:62 ############################################### INFO  lib389:ticket47829_test.py:63 ####### INFO  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 INFO  lib389:ticket47829_test.py:65 ####### INFO  lib389:ticket47829_test.py:66 ############################################### INFO  lib389:ticket47829_test.py:172 add entry cn=active guy,cn=accounts,cn=in,dc=example,dc=com INFO  lib389:ticket47829_test.py:173 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com INFO  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' INFO  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' INFO  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' INFO  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' INFO  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' INFO  lib389:ticket47829_test.py:132 ######################### MODRDN cn=active guy ###################### INFO  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--------------------------------
INFO  lib389:ticket47829_test.py:62 ############################################### INFO  lib389:ticket47829_test.py:63 ####### INFO  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 INFO  lib389:ticket47829_test.py:65 ####### INFO  lib389:ticket47829_test.py:66 ############################################### INFO  lib389:ticket47829_test.py:172 add entry cn=active guy,cn=accounts,cn=in,dc=example,dc=com INFO  lib389:ticket47829_test.py:173 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com INFO  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' INFO  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' INFO  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' INFO  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' INFO  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' INFO  lib389:ticket47829_test.py:132 ######################### MODRDN cn=active guy ###################### INFO  lib389:ticket47829_test.py:132 ######################### MODRDN cn=active guy ######################
Passed tickets/ticket47829_test.py::test_ticket47829_indirect_active_group_4 1.29
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47829_test.py:62 ############################################### INFO  lib389:ticket47829_test.py:63 ####### INFO  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 INFO  lib389:ticket47829_test.py:65 ####### INFO  lib389:ticket47829_test.py:66 ############################################### INFO  lib389:ticket47829_test.py:172 add entry cn=stage guy,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com INFO  lib389:ticket47829_test.py:173 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com INFO  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' INFO  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' INFO  lib389:ticket47829_test.py:132 ######################### MODRDN cn=stage guy ###################### INFO  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' INFO  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' INFO  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' INFO  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' INFO  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' INFO  lib389:ticket47829_test.py:132 ######################### MODRDN cn=stage guy ###################### INFO  lib389:ticket47829_test.py:116 !!!!!!! cn=indirect active group,cn=accounts,cn=in,dc=example,dc=com: member ->b'cn=active group,cn=accounts,cn=in,dc=example,dc=com'
Passed tickets/ticket47833_test.py::test_ticket47829_init 4.54
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed tickets/ticket47833_test.py::test_ticket47829_mod_stage_user_modrdn_stage_user_1 1.04
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47833_test.py:58 ############################################### INFO  lib389:ticket47833_test.py:59 ####### INFO  lib389:ticket47833_test.py:60 ####### add an Stage user to a Active group. Then move Stage user to Stage INFO  lib389:ticket47833_test.py:61 ####### INFO  lib389:ticket47833_test.py:62 ############################################### INFO  lib389:ticket47833_test.py:145 add entry cn=stage guy,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com INFO  lib389:ticket47833_test.py:146 to group cn=active group,cn=accounts,cn=in,dc=example,dc=com INFO  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' INFO  lib389:ticket47833_test.py:128 ######################### MODRDN cn=xstage guy ###################### INFO  lib389:ticket47833_test.py:112 !!!!!!! cn=active group,cn=accounts,cn=in,dc=example,dc=com: member ->b'cn=stage guy,cn=staged users,cn=provisioning,cn=in,dc=example,dc=com'
Passed tickets/ticket47869MMR_test.py::test_ticket47869_init 12.54
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 624b2554-a44b-4d7e-82c1-21981eee512d / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 8e55259b-4c4c-4b7e-99b1-0a678d150a06 / got description=624b2554-a44b-4d7e-82c1-21981eee512d) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47869MMR_test.py:51 Add cn=bind_entry, dc=example,dc=com INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect d9a32177-326a-4879-a6a8-6b0cc3bafbec / got description=8e55259b-4c4c-4b7e-99b1-0a678d150a06) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect b9675fce-72ed-4c40-9440-fce26d3b766d / got description=d9a32177-326a-4879-a6a8-6b0cc3bafbec) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect f4be277a-44eb-41e5-bb84-076513e53e66 / got description=b9675fce-72ed-4c40-9440-fce26d3b766d) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ba629ecf-225e-44eb-8ba9-551dc28a560e / got description=f4be277a-44eb-41e5-bb84-076513e53e66) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 2c878c2c-513d-461e-ba67-3d94933777ee / got description=ba629ecf-225e-44eb-8ba9-551dc28a560e) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 7a297dc7-17c6-4c0b-8255-d827e5a4340a / got description=2c878c2c-513d-461e-ba67-3d94933777ee) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 6e66aef6-65b6-4a69-a6e1-99d79344f0ab / got description=7a297dc7-17c6-4c0b-8255-d827e5a4340a) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect ea1b39c4-c38e-4959-a3ec-fe9bea1bb2fb / got description=6e66aef6-65b6-4a69-a6e1-99d79344f0ab) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 03db315f-5446-4246-bf5f-c60db050344f / got description=ea1b39c4-c38e-4959-a3ec-fe9bea1bb2fb) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 6ff59dd9-671f-4b41-b9ba-86095b8356d2 / got description=03db315f-5446-4246-bf5f-c60db050344f) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 865aa58d-ffd7-43df-882d-9ef2ee223025 / got description=6ff59dd9-671f-4b41-b9ba-86095b8356d2) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working
Passed tickets/ticket47869MMR_test.py::test_ticket47869_check 0.31
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47869MMR_test.py:93 ######################### CHECK nscpentrywsi ###################### INFO  lib389:ticket47869MMR_test.py:95 ##### Master1: Bind as cn=Directory Manager ##### INFO  lib389:ticket47869MMR_test.py:98 Master1: Calling search_ext... INFO  lib389:ticket47869MMR_test.py:102 24 results INFO  lib389:ticket47869MMR_test.py:104 Results: INFO  lib389:ticket47869MMR_test.py:106 dn: dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:106 dn: cn=Directory Administrators,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:106 dn: ou=Groups,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:106 dn: ou=People,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:106 dn: ou=Special Users,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:106 dn: cn=Accounting Managers,ou=Groups,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:106 dn: cn=HR Managers,ou=Groups,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:106 dn: cn=QA Managers,ou=Groups,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:106 dn: cn=PD Managers,ou=Groups,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:106 dn: cn=replication_managers,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:106 dn: ou=Services,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:106 dn: cn=ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701,ou=Services,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:106 dn: cn=ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702,ou=Services,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:106 dn: cn=bind_entry,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:106 dn: cn=test_entry0,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:106 dn: cn=test_entry1,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:106 dn: cn=test_entry2,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:106 dn: cn=test_entry3,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:106 dn: cn=test_entry4,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:106 dn: cn=test_entry5,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:106 dn: cn=test_entry6,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:106 dn: cn=test_entry7,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:106 dn: cn=test_entry8,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:106 dn: cn=test_entry9,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:110 Master1: count of nscpentrywsi: 24 INFO  lib389:ticket47869MMR_test.py:112 ##### Master2: Bind as cn=Directory Manager ##### INFO  lib389:ticket47869MMR_test.py:115 Master2: Calling search_ext... INFO  lib389:ticket47869MMR_test.py:119 24 results INFO  lib389:ticket47869MMR_test.py:121 Results: INFO  lib389:ticket47869MMR_test.py:123 dn: dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:123 dn: cn=Directory Administrators,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:123 dn: ou=Groups,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:123 dn: ou=People,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:123 dn: ou=Special Users,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:123 dn: cn=replication_managers,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:123 dn: ou=Services,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:123 dn: cn=ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63701,ou=Services,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:123 dn: cn=ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:63702,ou=Services,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:123 dn: cn=Accounting Managers,ou=Groups,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:123 dn: cn=HR Managers,ou=Groups,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:123 dn: cn=QA Managers,ou=Groups,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:123 dn: cn=PD Managers,ou=Groups,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:123 dn: cn=bind_entry,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:123 dn: cn=test_entry0,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:123 dn: cn=test_entry1,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:123 dn: cn=test_entry2,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:123 dn: cn=test_entry3,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:123 dn: cn=test_entry4,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:123 dn: cn=test_entry5,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:123 dn: cn=test_entry6,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:123 dn: cn=test_entry7,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:123 dn: cn=test_entry8,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:123 dn: cn=test_entry9,dc=example,dc=com INFO  lib389:ticket47869MMR_test.py:127 Master2: count of nscpentrywsi: 24 INFO  lib389:ticket47869MMR_test.py:130 ##### Master1: Bind as cn=bind_entry, dc=example,dc=com ##### INFO  lib389:ticket47869MMR_test.py:133 Master1: Calling search_ext... INFO  lib389:ticket47869MMR_test.py:137 24 results INFO  lib389:ticket47869MMR_test.py:143 Master1: count of nscpentrywsi: 0 INFO  lib389:ticket47869MMR_test.py:146 ##### Master2: Bind as cn=bind_entry, dc=example,dc=com ##### INFO  lib389:ticket47869MMR_test.py:149 Master2: Calling search_ext... INFO  lib389:ticket47869MMR_test.py:153 24 results INFO  lib389:ticket47869MMR_test.py:159 Master2: count of nscpentrywsi: 0 INFO  lib389:ticket47869MMR_test.py:162 ##### Master1: Bind as anonymous ##### INFO  lib389:ticket47869MMR_test.py:165 Master1: Calling search_ext... INFO  lib389:ticket47869MMR_test.py:169 24 results INFO  lib389:ticket47869MMR_test.py:175 Master1: count of nscpentrywsi: 0 INFO  lib389:ticket47869MMR_test.py:178 ##### Master2: Bind as anonymous ##### INFO  lib389:ticket47869MMR_test.py:181 Master2: Calling search_ext... INFO  lib389:ticket47869MMR_test.py:185 24 results INFO  lib389:ticket47869MMR_test.py:191 Master2: count of nscpentrywsi: 0 INFO  lib389:ticket47869MMR_test.py:193 ##### ticket47869 was successfully verified. #####
Passed tickets/ticket47900_test.py::test_ticket47900 1.15
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47900_test.py:52 Creating Password Administator entry cn=passwd_admin,dc=example,dc=com... INFO  lib389:ticket47900_test.py:62 Configuring password policy... INFO  lib389:ticket47900_test.py:74 Add aci to allow password admin to add/update entries... INFO  lib389:ticket47900_test.py:87 Bind as the Password Administator (before activating)... INFO  lib389:ticket47900_test.py:101 Attempt to add entries with invalid passwords, these adds should fail... INFO  lib389:ticket47900_test.py:105 Create a regular user entry cn=Joe Schmo,dc=example,dc=com with password (2_Short)... INFO  lib389:ticket47900_test.py:111 Add failed as expected: password (2_Short) result (Constraint violation) INFO  lib389:ticket47900_test.py:105 Create a regular user entry cn=Joe Schmo,dc=example,dc=com with password (No_Number)... INFO  lib389:ticket47900_test.py:111 Add failed as expected: password (No_Number) result (Constraint violation) INFO  lib389:ticket47900_test.py:105 Create a regular user entry cn=Joe Schmo,dc=example,dc=com with password (N0Special)... INFO  lib389:ticket47900_test.py:111 Add failed as expected: password (N0Special) result (Constraint violation) INFO  lib389:ticket47900_test.py:105 Create a regular user entry cn=Joe Schmo,dc=example,dc=com with password ({SSHA}bBy8UdtPZwu8uZna9QOYG3Pr41RpIRVDl8wddw==)... INFO  lib389:ticket47900_test.py:111 Add failed as expected: password ({SSHA}bBy8UdtPZwu8uZna9QOYG3Pr41RpIRVDl8wddw==) result (Constraint violation) INFO  lib389:ticket47900_test.py:123 Activate the Password Administator... INFO  lib389:ticket47900_test.py:139 Create a regular user entry cn=Joe Schmo,dc=example,dc=com with password (2_Short)... INFO  lib389:ticket47900_test.py:142 Succesfully added entry (cn=Joe Schmo,dc=example,dc=com) INFO  lib389:ticket47900_test.py:139 Create a regular user entry cn=Joe Schmo,dc=example,dc=com with password (No_Number)... INFO  lib389:ticket47900_test.py:142 Succesfully added entry (cn=Joe Schmo,dc=example,dc=com) INFO  lib389:ticket47900_test.py:139 Create a regular user entry cn=Joe Schmo,dc=example,dc=com with password (N0Special)... INFO  lib389:ticket47900_test.py:142 Succesfully added entry (cn=Joe Schmo,dc=example,dc=com) INFO  lib389:ticket47900_test.py:139 Create a regular user entry cn=Joe Schmo,dc=example,dc=com with password ({SSHA}bBy8UdtPZwu8uZna9QOYG3Pr41RpIRVDl8wddw==)... INFO  lib389:ticket47900_test.py:142 Succesfully added entry (cn=Joe Schmo,dc=example,dc=com) INFO  lib389:ticket47900_test.py:155 Deactivate Password Administator and try invalid password updates... INFO  lib389:ticket47900_test.py:177 Password update failed as expected: password (2_Short) result (Constraint violation) INFO  lib389:ticket47900_test.py:177 Password update failed as expected: password (No_Number) result (Constraint violation) INFO  lib389:ticket47900_test.py:177 Password update failed as expected: password (N0Special) result (Constraint violation) INFO  lib389:ticket47900_test.py:177 Password update failed as expected: password ({SSHA}bBy8UdtPZwu8uZna9QOYG3Pr41RpIRVDl8wddw==) result (Constraint violation) INFO  lib389:ticket47900_test.py:188 Activate Password Administator and try updates again... INFO  lib389:ticket47900_test.py:205 Password update succeeded (2_Short) INFO  lib389:ticket47900_test.py:205 Password update succeeded (No_Number) INFO  lib389:ticket47900_test.py:205 Password update succeeded (N0Special) INFO  lib389:ticket47900_test.py:205 Password update succeeded ({SSHA}bBy8UdtPZwu8uZna9QOYG3Pr41RpIRVDl8wddw==)
Passed tickets/ticket47910_test.py::test_ticket47910_logconv_start_end_positive 0.36
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.utils:ticket47910_test.py:36 Diable access log buffering INFO  lib389.utils:ticket47910_test.py:39 Do a ldapsearch operation INFO  lib389.utils:ticket47910_test.py:42 sleep for sometime so that access log file get generated
-------------------------------Captured log call--------------------------------
INFO  lib389.utils:ticket47910_test.py:79 Running test_ticket47910 - Execute logconv.pl -S -E with random values INFO  lib389.utils:ticket47910_test.py:81 taking current time with offset of 2 mins and formatting it to feed -S INFO  lib389.utils:ticket47910_test.py:85 taking current time with offset of 2 mins and formatting it to feed -E INFO  lib389.utils:ticket47910_test.py:89 Executing logconv.pl with -S and -E INFO  lib389.utils:ticket47910_test.py:61 Executing logconv.pl with -S current time and -E end time INFO  lib389.utils:ticket47910_test.py:63 /usr/bin/logconv.pl -S [24/Oct/2020:22:12:55] -E [24/Oct/2020:22:16:55] /var/log/dirsrv/slapd-standalone1/access INFO  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): 1137 Total Log Lines Analysed: 9 ----------- Access Log Output ------------ Start of Logs: 24/Oct/2020:22:12:55 End of Logs: 24/Oct/2020:22:14:53.938649305 Processed Log Time: 0 Hours, 1 Minutes, 58.938648576 Seconds Restarts: 1 Peak Concurrent Connections: 1 Total Operations: 4 Total Results: 4 Overall Performance: 100.0% Total Connections: 1 (0.01/sec) (0.50/min) - LDAP Connections: 1 (0.01/sec) (0.50/min) - LDAPI Connections: 0 (0.00/sec) (0.00/min) - LDAPS Connections: 0 (0.00/sec) (0.00/min) - StartTLS Extended Ops: 0 (0.00/sec) (0.00/min) Searches: 2 (0.02/sec) (1.01/min) Modifications: 1 (0.01/sec) (0.50/min) Adds: 0 (0.00/sec) (0.00/min) Deletes: 0 (0.00/sec) (0.00/min) Mod RDNs: 0 (0.00/sec) (0.00/min) Compares: 0 (0.00/sec) (0.00/min) Binds: 1 (0.01/sec) (0.50/min) Average wtime (wait time): 0.000210261 Average optime (op time): 0.027167314 Average etime (elapsed time): 0.027373124 Proxied Auth Operations: 0 Persistent Searches: 0 Internal Operations: 0 Entry Operations: 0 Extended Operations: 0 Abandoned Requests: 0 Smart Referrals Received: 0 VLV Operations: 0 VLV Unindexed Searches: 0 VLV Unindexed Components: 0 SORT Operations: 0 Entire Search Base Queries: 1 Paged Searches: 0 Unindexed Searches: 0 Unindexed Components: 1 Invalid Attribute Filters: 0 FDs Taken: 1 FDs Returned: 0 Highest FD Taken: 64 Broken Pipes: 0 Connections Reset By Peer: 0 Resource Unavailable: 0 Max BER Size Exceeded: 0 Binds: 1 Unbinds: 0 -------------------------------- - LDAP v2 Binds: 0 - LDAP v3 Binds: 1 - AUTOBINDs(LDAPI): 0 - SSL Client Binds: 0 - Failed SSL Client Binds: 0 - SASL Binds: 0 - Directory Manager Binds: 0 - Anonymous Binds: 0 Cleaning up temp files... Done. INFO  lib389.utils:ticket47910_test.py:67 standard errors
Passed tickets/ticket47910_test.py::test_ticket47910_logconv_start_end_negative 0.13
-------------------------------Captured log call--------------------------------
INFO  lib389.utils:ticket47910_test.py:105 Running test_ticket47910 - Execute logconv.pl -S -E with starttime>endtime INFO  lib389.utils:ticket47910_test.py:107 taking current time with offset of 2 mins and formatting it to feed -S INFO  lib389.utils:ticket47910_test.py:111 taking current time with offset of 2 mins and formatting it to feed -E INFO  lib389.utils:ticket47910_test.py:115 Executing logconv.pl with -S and -E INFO  lib389.utils:ticket47910_test.py:61 Executing logconv.pl with -S current time and -E end time INFO  lib389.utils:ticket47910_test.py:63 /usr/bin/logconv.pl -S [24/Oct/2020:22:16:55] -E [24/Oct/2020:22:12:55] /var/log/dirsrv/slapd-standalone1/access INFO  lib389.utils:ticket47910_test.py:66 standard outputAccess Log Analyzer 8.2 Command: logconv.pl /var/log/dirsrv/slapd-standalone1/access Start time ([24/Oct/2020:22:16:55]) is greater than end time ([24/Oct/2020:22:12:55])! Cleaning up temp files... Done. INFO  lib389.utils:ticket47910_test.py:67 standard errors
Passed tickets/ticket47910_test.py::test_ticket47910_logconv_start_end_invalid 0.13
-------------------------------Captured log call--------------------------------
INFO  lib389.utils:ticket47910_test.py:128 Running test_ticket47910 - Execute logconv.pl -S -E with invalid timestamp INFO  lib389.utils:ticket47910_test.py:129 Set start time and end time to invalid values INFO  lib389.utils:ticket47910_test.py:133 Executing logconv.pl with -S and -E INFO  lib389.utils:ticket47910_test.py:61 Executing logconv.pl with -S current time and -E end time INFO  lib389.utils:ticket47910_test.py:63 /usr/bin/logconv.pl -S invalid -E invalid /var/log/dirsrv/slapd-standalone1/access INFO  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. INFO  lib389.utils:ticket47910_test.py:67 standard errors
Passed tickets/ticket47910_test.py::test_ticket47910_logconv_noaccesslogs 0.14
-------------------------------Captured log call--------------------------------
INFO  lib389.utils:ticket47910_test.py:147 Running test_ticket47910 - Execute logconv.pl without access logs INFO  lib389.utils:ticket47910_test.py:149 taking current time with offset of 2 mins and formatting it to feed -S INFO  lib389.utils:ticket47910_test.py:152 Executing logconv.pl with -S current time INFO  lib389.utils:ticket47910_test.py:154 /usr/bin/logconv.pl -S [24/Oct/2020:22:12:55] INFO  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. INFO  lib389.utils:ticket47910_test.py:158 standard errors
Passed tickets/ticket47920_test.py::test_ticket47920_init 0.28
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed tickets/ticket47920_test.py::test_ticket47920_mod_readentry_ctrl 0.01
------------------------------Captured stdout call------------------------------
['final description']
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket47920_test.py:65 ############################################### INFO  lib389:ticket47920_test.py:66 ####### INFO  lib389:ticket47920_test.py:67 ####### MOD: with a readentry control INFO  lib389:ticket47920_test.py:68 ####### INFO  lib389:ticket47920_test.py:69 ############################################### INFO  lib389:ticket47920_test.py:106 Check the initial value of the entry
Passed tickets/ticket47921_test.py::test_ticket47921 0.32
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket47921_test:ticket47921_test.py:81 Test complete
Passed tickets/ticket47927_test.py::test_ticket47927_init 4.92
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed tickets/ticket47927_test.py::test_ticket47927_one 0.06
-------------------------------Captured log call--------------------------------
CRITICAL tests.tickets.ticket47927_test:ticket47927_test.py:100 test_ticket47927_one: Failed (expected) to set the telephonenumber for cn=test_2,cn=enforced_container,dc=example,dc=com: Constraint violation CRITICAL tests.tickets.ticket47927_test:ticket47927_test.py:111 test_ticket47927_one: Failed (expected) to set the telephonenumber for cn=test_3,cn=excluded_container,dc=example,dc=com: Constraint violation
Passed tickets/ticket47927_test.py::test_ticket47927_two 4.07
No log output captured.
Passed tickets/ticket47927_test.py::test_ticket47927_three 0.17
-------------------------------Captured log call--------------------------------
CRITICAL tests.tickets.ticket47927_test:ticket47927_test.py:151 test_ticket47927_three: Failed (expected) to set the telephonenumber for cn=test_2,cn=enforced_container,dc=example,dc=com: Constraint violation CRITICAL 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.36
-------------------------------Captured log call--------------------------------
CRITICAL 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 CRITICAL tests.tickets.ticket47927_test:ticket47927_test.py:198 test_ticket47927_four: Failed (expected) to set the telephonenumber for cn=test_2,cn=enforced_container,dc=example,dc=com: Constraint violation
Passed tickets/ticket47927_test.py::test_ticket47927_five 3.96
No log output captured.
Passed tickets/ticket47927_test.py::test_ticket47927_six 0.29
-------------------------------Captured log call--------------------------------
CRITICAL tests.tickets.ticket47927_test:ticket47927_test.py:240 test_ticket47927_six: Failed (expected) to set the telephonenumber for cn=test_2,cn=enforced_container,dc=example,dc=com: Constraint violation CRITICAL 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 CRITICAL 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/ticket47953_test.py::test_ticket47953 4.12
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  lib389:tasks.py:498 Import task import_10242020_221543 for file /var/lib/dirsrv/slapd-standalone1/ldif/ticket47953.ldif completed successfully
Passed tickets/ticket47963_test.py::test_ticket47963 7.60
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket47963_test:ticket47963_test.py:145 Test complete
Passed tickets/ticket47970_test.py::test_ticket47970 0.04
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed tickets/ticket47976_test.py::test_ticket47976_init 4.46
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed tickets/ticket47976_test.py::test_ticket47976_1 3.66
No log output captured.
Passed tickets/ticket47976_test.py::test_ticket47976_2 5.34
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket47976_test:ticket47976_test.py:99 Test complete INFO  tests.tickets.ticket47976_test:ticket47976_test.py:104 Export LDIF file... INFO  lib389:tasks.py:567 Export task export_10242020_221622 for file /var/lib/dirsrv/slapd-standalone1/ldif/export.ldif completed successfully INFO  tests.tickets.ticket47976_test:ticket47976_test.py:115 Import LDIF file... INFO  lib389:tasks.py:498 Import task import_10242020_221624 for file /var/lib/dirsrv/slapd-standalone1/ldif/export.ldif completed successfully
Passed tickets/ticket47976_test.py::test_ticket47976_3 0.01
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket47976_test:ticket47976_test.py:131 Testing if the delete will hang or not INFO  tests.tickets.ticket47976_test:ticket47976_test.py:150 user0 was correctly deleted INFO  tests.tickets.ticket47976_test:ticket47976_test.py:150 user1 was correctly deleted
Passed tickets/ticket47980_test.py::test_ticket47980 2.99
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed tickets/ticket47981_test.py::test_ticket47981 3.46
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  lib389:backend.py:80 List backend with suffix=o=netscaperoot INFO  lib389:backend.py:290 Creating a local backend INFO  lib389:backend.py:76 List backend cn=netscaperoot,cn=ldbm database,cn=plugins,cn=config INFO  lib389:__init__.py:1772 Found entry dn: cn=netscaperoot,cn=ldbm database,cn=plugins,cn=config cn: netscaperoot nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-standalone1/db/netscaperoot nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: o=netscaperoot objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance INFO  lib389:mappingTree.py:154 Entry dn: cn="o=netscaperoot",cn=mapping tree,cn=config cn: o=netscaperoot nsslapd-backend: netscaperoot nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree INFO  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 12.03
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
------------------------------Captured stderr call------------------------------
grep: /etc/sysconfig/dirsrv: No such file or directory grep: /etc/sysconfig/dirsrv.systemd: No such file or directory ls: cannot access '/var/lib/dirsrv/slapd-standalone1/ldif/ticket48005.ldif': No such file or directory
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48005_test:ticket48005_test.py:31 Ticket 48005 setup... INFO  tests.tickets.ticket48005_test:ticket48005_test.py:41 No ulimit -c in /etc/sysconfig/dirsrv INFO  tests.tickets.ticket48005_test:ticket48005_test.py:42 Adding it INFO  tests.tickets.ticket48005_test:ticket48005_test.py:50 No LimitCORE in /etc/sysconfig/dirsrv.systemd INFO  tests.tickets.ticket48005_test:ticket48005_test.py:51 Adding it INFO  tests.tickets.ticket48005_test:ticket48005_test.py:64 dbgen_prog: /bin/dbgen.pl INFO  tests.tickets.ticket48005_test:ticket48005_test.py:70 We have 10106 entries. ERROR  lib389:tasks.py:495 Error: import task import_10242020_221721 for file /var/lib/dirsrv/slapd-standalone1/ldif/ticket48005.ldif exited with -23 INFO  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 12.95
------------------------------Captured stderr call------------------------------
ls: cannot access '/var/log/dirsrv/slapd-standalone1/core*': No such file or directory
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48005_test:ticket48005_test.py:86 Ticket 48005 memberof test... INFO  lib389:tasks.py:877 fixupMemberOf task fixupmemberof_10242020_221733 for basedn dc=example,dc=com completed successfully INFO  tests.tickets.ticket48005_test:ticket48005_test.py:110 No core files are found INFO  tests.tickets.ticket48005_test:ticket48005_test.py:119 Ticket 48005 memberof test complete
Passed tickets/ticket48005_test.py::test_ticket48005_automember 19.94
------------------------------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--------------------------------
INFO  tests.tickets.ticket48005_test:ticket48005_test.py:138 Ticket 48005 automember test... INFO  tests.tickets.ticket48005_test:ticket48005_test.py:143 Adding automember config INFO  lib389:tasks.py:986 Automember Rebuild Membership task(task-10242020_221746) completedsuccessfully INFO  tests.tickets.ticket48005_test:ticket48005_test.py:176 No core files are found INFO  lib389:tasks.py:1039 Automember Export Updates task (task-10242020_221749) completed successfully INFO  tests.tickets.ticket48005_test:ticket48005_test.py:198 No core files are found INFO  lib389:tasks.py:1087 Automember Map Updates task (task-10242020_221753) completed successfully INFO  tests.tickets.ticket48005_test:ticket48005_test.py:222 No core files are found INFO  tests.tickets.ticket48005_test:ticket48005_test.py:231 Ticket 48005 automember test complete
Passed tickets/ticket48005_test.py::test_ticket48005_syntaxvalidate 3.50
------------------------------Captured stderr call------------------------------
ls: cannot access '/var/log/dirsrv/slapd-standalone1/core*': No such file or directory
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48005_test:ticket48005_test.py:241 Ticket 48005 syntax validate test... INFO  lib389:tasks.py:1255 Syntax Validate task (task-10242020_221801) completed successfully INFO  tests.tickets.ticket48005_test:ticket48005_test.py:261 No core files are found INFO  tests.tickets.ticket48005_test:ticket48005_test.py:265 Ticket 48005 syntax validate test complete
Passed tickets/ticket48005_test.py::test_ticket48005_schemareload 3.19
------------------------------Captured stderr call------------------------------
ls: cannot access '/var/log/dirsrv/slapd-standalone1/core*': No such file or directory
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48005_test:ticket48005_test.py:334 Ticket 48005 schema reload test... INFO  lib389:tasks.py:1169 Schema Reload task (task-10242020_221810) completed successfully INFO  tests.tickets.ticket48005_test:ticket48005_test.py:354 No core files are found INFO  tests.tickets.ticket48005_test:ticket48005_test.py:358 Ticket 48005 schema reload test complete
Passed tickets/ticket48026_test.py::test_ticket48026 4.65
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48026_test:ticket48026_test.py:114 Test complete
Passed tickets/ticket48109_test.py::test_ticket48109 27.80
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48109_test:ticket48109_test.py:32 Test case 0 INFO  tests.tickets.ticket48109_test:ticket48109_test.py:77 match: conn=1 op=3 INFO  tests.tickets.ticket48109_test:ticket48109_test.py:85 l1: [24/Oct/2020:22:18:42.807032337 -0400] conn=1 op=3 RESULT err=0 tag=101 nentries=1 wtime=0.000352967 optime=0.000338074 etime=0.000688309 INFO  tests.tickets.ticket48109_test:ticket48109_test.py:88 match: nentires=1 INFO  tests.tickets.ticket48109_test:ticket48109_test.py:93 Entry uid=a* found. INFO  tests.tickets.ticket48109_test:ticket48109_test.py:100 Test case 0 - OK - substr index used INFO  tests.tickets.ticket48109_test:ticket48109_test.py:119 Test case 1 INFO  tests.tickets.ticket48109_test:ticket48109_test.py:163 match: conn=1 op=3 INFO  tests.tickets.ticket48109_test:ticket48109_test.py:171 l1: [24/Oct/2020:22:18:42.807032337 -0400] conn=1 op=3 RESULT err=0 tag=101 nentries=1 wtime=0.000352967 optime=0.000338074 etime=0.000688309 INFO  tests.tickets.ticket48109_test:ticket48109_test.py:174 match: nentires=1 INFO  tests.tickets.ticket48109_test:ticket48109_test.py:179 Entry uid=*b found. INFO  tests.tickets.ticket48109_test:ticket48109_test.py:186 Test case 1 - OK - substr index used INFO  tests.tickets.ticket48109_test:ticket48109_test.py:208 Test case 2 INFO  tests.tickets.ticket48109_test:ticket48109_test.py:259 match: conn=1 op=3 INFO  tests.tickets.ticket48109_test:ticket48109_test.py:267 l1: [24/Oct/2020:22:18:42.807032337 -0400] conn=1 op=3 RESULT err=0 tag=101 nentries=1 wtime=0.000352967 optime=0.000338074 etime=0.000688309 INFO  tests.tickets.ticket48109_test:ticket48109_test.py:270 match: nentires=1 INFO  tests.tickets.ticket48109_test:ticket48109_test.py:275 Entry uid=c* found. INFO  tests.tickets.ticket48109_test:ticket48109_test.py:282 Test case 2-1 - OK - correct substr index used INFO  tests.tickets.ticket48109_test:ticket48109_test.py:294 match: conn=1 op=4 INFO  tests.tickets.ticket48109_test:ticket48109_test.py:302 l1: [24/Oct/2020:22:19:01.273824194 -0400] conn=1 op=4 RESULT err=0 tag=101 nentries=1 wtime=0.000191230 optime=0.000330548 etime=0.000518731 INFO  tests.tickets.ticket48109_test:ticket48109_test.py:305 match: nentires=1 INFO  tests.tickets.ticket48109_test:ticket48109_test.py:310 Entry uid=*2 found. INFO  tests.tickets.ticket48109_test:ticket48109_test.py:317 Test case 2-2 - OK - correct substr index used INFO  tests.tickets.ticket48109_test:ticket48109_test.py:331 Testcase PASSED
Passed tickets/ticket48170_test.py::test_ticket48170 0.14
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48170_test:ticket48170_test.py:29 Index update correctly rejected INFO  tests.tickets.ticket48170_test:ticket48170_test.py:36 Test complete
Passed tickets/ticket48194_test.py::test_init 5.68
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket48194_test.py:40 ############################################### INFO  lib389:ticket48194_test.py:41 ####### Testing Ticket 48194 - harden the list of ciphers available by default INFO  lib389:ticket48194_test.py:42 ############################################### INFO  lib389.utils:ticket48194_test.py:57 ######################### enable SSL in the directory server with all ciphers ######################
Passed tickets/ticket48194_test.py::test_run_0 5.23
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket48194_test.py:40 ############################################### INFO  lib389:ticket48194_test.py:41 ####### Test Case 1 - Check the ciphers availability for "+all"; allowWeakCipher: on INFO  lib389:ticket48194_test.py:42 ############################################### INFO  lib389.utils:ticket48194_test.py:131 ######################### Restarting the server ###################### INFO  lib389.utils:ticket48194_test.py:86 Testing DES-CBC3-SHA -- expect to handshake successfully INFO  lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher DES-CBC3-SHA INFO  lib389.utils:ticket48194_test.py:105 Found: b'New, TLSv1.3, Cipher is TLS_AES_128_GCM_SHA256\n' INFO  lib389.utils:ticket48194_test.py:86 Testing AES256-SHA256 -- expect to handshake successfully INFO  lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher AES256-SHA256 INFO  lib389.utils:ticket48194_test.py:105 Found: b'New, TLSv1.3, Cipher is TLS_AES_128_GCM_SHA256\n'
Passed tickets/ticket48194_test.py::test_run_3 5.45
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket48194_test.py:40 ############################################### INFO  lib389:ticket48194_test.py:41 ####### Test Case 4 - Check the ciphers availability for "-all" INFO  lib389:ticket48194_test.py:42 ############################################### INFO  lib389.utils:ticket48194_test.py:199 ######################### Restarting the server ###################### INFO  lib389.utils:ticket48194_test.py:86 Testing DES-CBC3-SHA -- expect to handshake failed INFO  lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher DES-CBC3-SHA INFO  lib389.utils:ticket48194_test.py:105 Found: b'New, (NONE), Cipher is (NONE)\n' INFO  lib389.utils:ticket48194_test.py:86 Testing AES256-SHA256 -- expect to handshake failed INFO  lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher AES256-SHA256 INFO  lib389.utils:ticket48194_test.py:105 Found: b'New, (NONE), Cipher is (NONE)\n'
Passed tickets/ticket48194_test.py::test_run_9 6.60
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket48194_test.py:40 ############################################### INFO  lib389:ticket48194_test.py:41 ####### Test Case 10 - Check no nsSSL3Ciphers (default setting) with no errorlog-level & allowWeakCipher on INFO  lib389:ticket48194_test.py:42 ############################################### INFO  lib389.utils:ticket48194_test.py:316 ######################### Restarting the server ###################### INFO  lib389.utils:ticket48194_test.py:86 Testing DES-CBC3-SHA -- expect to handshake successfully INFO  lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher DES-CBC3-SHA INFO  lib389.utils:ticket48194_test.py:105 Found: b'New, TLSv1.3, Cipher is TLS_AES_128_GCM_SHA256\n' INFO  lib389.utils:ticket48194_test.py:86 Testing AES256-SHA256 -- expect to handshake successfully INFO  lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher AES256-SHA256 INFO  lib389.utils:ticket48194_test.py:105 Found: b'New, TLSv1.3, Cipher is TLS_AES_128_GCM_SHA256\n'
Passed tickets/ticket48194_test.py::test_run_11 5.39
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket48194_test.py:40 ############################################### INFO  lib389:ticket48194_test.py:41 ####### Test Case 12 - Check nsSSL3Ciphers: +fortezza, which is not supported INFO  lib389:ticket48194_test.py:42 ############################################### INFO  lib389.utils:ticket48194_test.py:337 ######################### Restarting the server ###################### INFO  lib389.utils:ticket48194_test.py:86 Testing DES-CBC3-SHA -- expect to handshake failed INFO  lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher DES-CBC3-SHA INFO  lib389.utils:ticket48194_test.py:105 Found: b'New, (NONE), Cipher is (NONE)\n' INFO  lib389.utils:ticket48194_test.py:86 Testing AES256-SHA256 -- expect to handshake failed INFO  lib389.utils:ticket48194_test.py:92 Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher AES256-SHA256 INFO  lib389.utils:ticket48194_test.py:105 Found: b'New, (NONE), Cipher is (NONE)\n'
Passed tickets/ticket48212_test.py::test_ticket48212 14.11
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
------------------------------Captured stderr call------------------------------
[24/Oct/2020:22:20:39.156386056 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [24/Oct/2020:22:20:39.166810744 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/givenName.db: ok [24/Oct/2020:22:20:39.169781425 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/aci.db: ok [24/Oct/2020:22:20:39.174043461 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/sn.db: ok [24/Oct/2020:22:20:39.176618176 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/numsubordinates.db: ok [24/Oct/2020:22:20:39.179101434 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryusn.db: ok [24/Oct/2020:22:20:39.182206054 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/nsuniqueid.db: ok [24/Oct/2020:22:20:39.185784897 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/ancestorid.db: ok [24/Oct/2020:22:20:39.189245460 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/parentid.db: ok [24/Oct/2020:22:20:39.193371436 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/mail.db: ok [24/Oct/2020:22:20:39.198184369 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/cn.db: ok [24/Oct/2020:22:20:39.201777414 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/uid.db: ok [24/Oct/2020:22:20:39.206431866 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryrdn.db: ok [24/Oct/2020:22:20:39.212671756 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/id2entry.db: ok [24/Oct/2020:22:20:39.216837464 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/objectclass.db: ok [24/Oct/2020:22:20:42.750507679 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [24/Oct/2020:22:20:42.762185164 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/givenName.db: ok [24/Oct/2020:22:20:42.765835431 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/aci.db: ok [24/Oct/2020:22:20:42.771040467 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/sn.db: ok [24/Oct/2020:22:20:42.774266900 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/numsubordinates.db: ok [24/Oct/2020:22:20:42.777402700 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryusn.db: ok [24/Oct/2020:22:20:42.781055761 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/nsuniqueid.db: ok [24/Oct/2020:22:20:42.784603329 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/ancestorid.db: ok [24/Oct/2020:22:20:42.787703661 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/parentid.db: ok [24/Oct/2020:22:20:42.791573131 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/mail.db: ok [24/Oct/2020:22:20:42.795756927 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/cn.db: ok [24/Oct/2020:22:20:42.798853984 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/uid.db: ok [24/Oct/2020:22:20:42.803226670 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryrdn.db: ok [24/Oct/2020:22:20:42.809083951 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/id2entry.db: ok [24/Oct/2020:22:20:42.813486774 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/objectclass.db: ok [24/Oct/2020:22:20:42.819689833 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/uidnumber.db: ok [24/Oct/2020:22:20:46.171434632 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [24/Oct/2020:22:20:46.180743821 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/givenName.db: ok [24/Oct/2020:22:20:46.184003554 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/aci.db: ok [24/Oct/2020:22:20:46.188516919 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/sn.db: ok [24/Oct/2020:22:20:46.193205707 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/numsubordinates.db: ok [24/Oct/2020:22:20:46.195753719 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryusn.db: ok [24/Oct/2020:22:20:46.201529330 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/nsuniqueid.db: ok [24/Oct/2020:22:20:46.204610145 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/ancestorid.db: ok [24/Oct/2020:22:20:46.207281266 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/parentid.db: ok [24/Oct/2020:22:20:46.211355737 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/mail.db: ok [24/Oct/2020:22:20:46.215051391 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/cn.db: ok [24/Oct/2020:22:20:46.217740354 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/uid.db: ok [24/Oct/2020:22:20:46.221430774 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryrdn.db: ok [24/Oct/2020:22:20:46.226903553 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/id2entry.db: ok [24/Oct/2020:22:20:46.230962110 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/objectclass.db: ok [24/Oct/2020:22:20:46.234626458 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/uidnumber.db: ok [24/Oct/2020:22:20:49.647900133 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [24/Oct/2020:22:20:49.657674712 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/givenName.db: ok [24/Oct/2020:22:20:49.660607122 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/aci.db: ok [24/Oct/2020:22:20:49.664349566 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/sn.db: ok [24/Oct/2020:22:20:49.666737091 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/numsubordinates.db: ok [24/Oct/2020:22:20:49.669358158 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryusn.db: ok [24/Oct/2020:22:20:49.672774459 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/nsuniqueid.db: ok [24/Oct/2020:22:20:49.675835731 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/ancestorid.db: ok [24/Oct/2020:22:20:49.678491380 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/parentid.db: ok [24/Oct/2020:22:20:49.682605798 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/mail.db: ok [24/Oct/2020:22:20:49.686477321 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/cn.db: ok [24/Oct/2020:22:20:49.691488300 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/uid.db: ok [24/Oct/2020:22:20:49.695077712 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryrdn.db: ok [24/Oct/2020:22:20:49.700134070 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/id2entry.db: ok [24/Oct/2020:22:20:49.703431736 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/objectclass.db: ok [24/Oct/2020:22:20:49.706349888 -0400] - INFO - dbverify_ext - /var/lib/dirsrv/slapd-standalone1/db/userRoot/uidnumber.db: ok
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket48212_test.py:70 Bind as cn=Directory Manager INFO  lib389:ticket48212_test.py:83 ######################### Import Test data (/var/lib/dirsrv/slapd-standalone1/ldif/example1k_posix.ldif) ###################### INFO  lib389:tasks.py:498 Import task import_10242020_222035 for file /var/lib/dirsrv/slapd-standalone1/ldif/example1k_posix.ldif completed successfully INFO  lib389:ticket48212_test.py:19 +++++ dbverify +++++ INFO  lib389:ticket48212_test.py:23 Running /usr/sbin/dbverify -Z standalone1 -V INFO  lib389:ticket48212_test.py:43 dbverify passed INFO  lib389:ticket48212_test.py:92 ######################### Add index by uidnumber ###################### INFO  lib389:ticket48212_test.py:101 ######################### reindexing... ###################### INFO  lib389:ticket48212_test.py:47 +++++ reindex uidnumber +++++ INFO  lib389:tasks.py:798 Index task index_attrs_10242020_222039 completed successfully INFO  lib389:ticket48212_test.py:19 +++++ dbverify +++++ INFO  lib389:ticket48212_test.py:23 Running /usr/sbin/dbverify -Z standalone1 -V INFO  lib389:ticket48212_test.py:43 dbverify passed INFO  lib389:ticket48212_test.py:106 ######################### Add nsMatchingRule ###################### INFO  lib389:ticket48212_test.py:112 ######################### reindexing... ###################### INFO  lib389:ticket48212_test.py:47 +++++ reindex uidnumber +++++ INFO  lib389:tasks.py:798 Index task index_attrs_10242020_222043 completed successfully INFO  lib389:ticket48212_test.py:19 +++++ dbverify +++++ INFO  lib389:ticket48212_test.py:23 Running /usr/sbin/dbverify -Z standalone1 -V INFO  lib389:ticket48212_test.py:43 dbverify passed INFO  lib389:ticket48212_test.py:117 ######################### Delete nsMatchingRule ###################### INFO  lib389:ticket48212_test.py:47 +++++ reindex uidnumber +++++ INFO  lib389:tasks.py:798 Index task index_attrs_10242020_222046 completed successfully INFO  lib389:ticket48212_test.py:19 +++++ dbverify +++++ INFO  lib389:ticket48212_test.py:23 Running /usr/sbin/dbverify -Z standalone1 -V INFO  lib389:ticket48212_test.py:43 dbverify passed
Passed tickets/ticket48214_test.py::test_ticket48214_run 0.06
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket48214_test.py:83 Bind as cn=Directory Manager INFO  lib389:ticket48214_test.py:86 ######################### Out of Box ###################### INFO  lib389:ticket48214_test.py:44 +++++ Check Max Ber Size +++++ INFO  lib389:ticket48214_test.py:18 +++++ Get maxbersize from dse.ldif +++++ INFO  lib389:ticket48214_test.py:21 Run CMD: egrep nsslapd-maxbersize /etc/dirsrv/slapd-standalone1/dse.ldif INFO  lib389:ticket48214_test.py:28 Empty: INFO  lib389:ticket48214_test.py:50 No nsslapd-maxbersize found in dse.ldif INFO  lib389:ticket48214_test.py:63 ldapsearch returned nsslapd-maxbersize: b'2097152' INFO  lib389:ticket48214_test.py:72 Checking 2097152 vs 2097152 INFO  lib389:ticket48214_test.py:89 ######################### Add nsslapd-maxbersize: 0 ###################### INFO  lib389:ticket48214_test.py:44 +++++ Check Max Ber Size +++++ INFO  lib389:ticket48214_test.py:18 +++++ Get maxbersize from dse.ldif +++++ INFO  lib389:ticket48214_test.py:21 Run CMD: egrep nsslapd-maxbersize /etc/dirsrv/slapd-standalone1/dse.ldif INFO  lib389:ticket48214_test.py:35 Right format - nsslapd-maxbersize: 0 INFO  lib389:ticket48214_test.py:52 nsslapd-maxbersize: 0 INFO  lib389:ticket48214_test.py:63 ldapsearch returned nsslapd-maxbersize: b'2097152' INFO  lib389:ticket48214_test.py:72 Checking 2097152 vs 2097152 INFO  lib389:ticket48214_test.py:93 ######################### Add nsslapd-maxbersize: 10000 ###################### INFO  lib389:ticket48214_test.py:44 +++++ Check Max Ber Size +++++ INFO  lib389:ticket48214_test.py:18 +++++ Get maxbersize from dse.ldif +++++ INFO  lib389:ticket48214_test.py:21 Run CMD: egrep nsslapd-maxbersize /etc/dirsrv/slapd-standalone1/dse.ldif INFO  lib389:ticket48214_test.py:35 Right format - nsslapd-maxbersize: 10000 INFO  lib389:ticket48214_test.py:55 nsslapd-maxbersize: 10000 INFO  lib389:ticket48214_test.py:63 ldapsearch returned nsslapd-maxbersize: b'10000' INFO  lib389:ticket48214_test.py:98 ticket48214 was successfully verified.
Passed tickets/ticket48228_test.py::test_ticket48228_test_global_policy 14.16
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed tickets/ticket48233_test.py::test_ticket48233 5.53
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48233_test:ticket48233_test.py:54 Test complete
Passed tickets/ticket48234_test.py::test_ticket48234 0.37
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48234_test:ticket48234_test.py:35 Bind as root DN INFO  tests.tickets.ticket48234_test:ticket48234_test.py:46 Add aci which contains extensible filter. INFO  tests.tickets.ticket48234_test:ticket48234_test.py:58 Add entries ... INFO  tests.tickets.ticket48234_test:ticket48234_test.py:61 adding OU0 under dc=example,dc=com... INFO  tests.tickets.ticket48234_test:ticket48234_test.py:64 adding outest under ou=OU0,dc=example,dc=com... INFO  tests.tickets.ticket48234_test:ticket48234_test.py:61 adding OU1 under dc=example,dc=com... INFO  tests.tickets.ticket48234_test:ticket48234_test.py:64 adding outest under ou=OU1,dc=example,dc=com... INFO  tests.tickets.ticket48234_test:ticket48234_test.py:69 adding admin under ou=outest,ou=OU0,dc=example,dc=com... INFO  tests.tickets.ticket48234_test:ticket48234_test.py:69 adding admin under ou=outest,ou=OU1,dc=example,dc=com... INFO  tests.tickets.ticket48234_test:ticket48234_test.py:73 Bind as user cn=admin,ou=outest,ou=OU1,dc=example,dc=com INFO  tests.tickets.ticket48234_test:ticket48234_test.py:92 Test complete
Passed tickets/ticket48252_test.py::test_ticket48252_setup 0.21
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed tickets/ticket48252_test.py::test_ticket48252_run_0 11.40
------------------------------Captured stderr call------------------------------
[24/Oct/2020:22:21:45.180324072 -0400] - INFO - slapd_exemode_db2index - Backend Instance: userRoot [24/Oct/2020:22:21:45.190818657 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [24/Oct/2020:22:21:45.198032015 -0400] - INFO - bdb_instance_start - Import is running with nsslapd-db-private-import-mem on; No other process is allowed to access the database [24/Oct/2020:22:21:45.202271729 -0400] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7529803776, process usage 22786048 [24/Oct/2020:22:21:45.211257090 -0400] - INFO - check_and_set_import_cache - Import allocates 2941329KB import cache. [24/Oct/2020:22:21:45.375957509 -0400] - INFO - bdb_db2index - userRoot: Indexing attribute: cn [24/Oct/2020:22:21:45.379032574 -0400] - ERR - libdb - BDB1566 txn_checkpoint interface requires an environment configured for the transaction subsystem [24/Oct/2020:22:21:45.381435200 -0400] - ERR - bdb_force_checkpoint - Checkpoint FAILED, error Invalid argument (22) [24/Oct/2020:22:21:45.388457011 -0400] - INFO - bdb_db2index - userRoot: Finished indexing. [24/Oct/2020:22:21:45.410416497 -0400] - INFO - bdb_pre_close - All database threads now stopped
-------------------------------Captured log call--------------------------------
INFO  lib389:__init__.py:3073 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-standalone1/db/userRoot/cn.db'] INFO  lib389:ticket48252_test.py:63 Did not found key test_user0 in dbscan output INFO  lib389:__init__.py:3073 Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-standalone1/db/userRoot/cn.db'] INFO  lib389:ticket48252_test.py:63 Did not found key test_user0 in dbscan output
Passed tickets/ticket48252_test.py::test_ticket48252_run_1 4.07
------------------------------Captured stderr call------------------------------
[24/Oct/2020:22:21:53.025739177 -0400] - INFO - slapd_exemode_db2index - Backend Instance: userRoot [24/Oct/2020:22:21:53.030883048 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [24/Oct/2020:22:21:53.040200767 -0400] - INFO - bdb_instance_start - Import is running with nsslapd-db-private-import-mem on; No other process is allowed to access the database [24/Oct/2020:22:21:53.043986058 -0400] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7530602496, process usage 23134208 [24/Oct/2020:22:21:53.047817440 -0400] - INFO - check_and_set_import_cache - Import allocates 2941641KB import cache. [24/Oct/2020:22:21:53.190418631 -0400] - INFO - bdb_db2index - userRoot: Indexing attribute: objectclass [24/Oct/2020:22:21:53.193959843 -0400] - ERR - libdb - BDB1566 txn_checkpoint interface requires an environment configured for the transaction subsystem [24/Oct/2020:22:21:53.197107864 -0400] - ERR - bdb_force_checkpoint - Checkpoint FAILED, error Invalid argument (22) [24/Oct/2020:22:21:53.207380687 -0400] - INFO - bdb_db2index - userRoot: Finished indexing. [24/Oct/2020:22:21:53.230611798 -0400] - INFO - bdb_pre_close - All database threads now stopped
Passed tickets/ticket48265_test.py::test_ticket48265_test 0.71
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48265_test:ticket48265_test.py:34 Adding 20 test entries... INFO  tests.tickets.ticket48265_test:ticket48265_test.py:51 Search with Ticket 47521 type complex filter INFO  tests.tickets.ticket48265_test:ticket48265_test.py:60 Search with Ticket 48265 type complex filter INFO  tests.tickets.ticket48265_test:ticket48265_test.py:69 Test 48265 complete
Passed tickets/ticket48266_test.py::test_ticket48266_fractional 13.56
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect b0ee27f4-d9f0-4ea4-9682-f2db62accf0d / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 7965623d-2aa1-40c2-a079-0ad6a47d5ce0 / got description=b0ee27f4-d9f0-4ea4-9682-f2db62accf0d) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
-------------------------------Captured log call--------------------------------
INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 15c84698-51f8-454a-bc6f-83203a590326 / got description=7965623d-2aa1-40c2-a079-0ad6a47d5ce0) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 15c84698-51f8-454a-bc6f-83203a590326 / got description=7965623d-2aa1-40c2-a079-0ad6a47d5ce0) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 15c84698-51f8-454a-bc6f-83203a590326 / got description=7965623d-2aa1-40c2-a079-0ad6a47d5ce0) INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 15c84698-51f8-454a-bc6f-83203a590326 / got description=7965623d-2aa1-40c2-a079-0ad6a47d5ce0) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working
Passed tickets/ticket48266_test.py::test_ticket48266_check_repl_desc 1.06
No log output captured.
Passed tickets/ticket48270_test.py::test_ticket48270_init 0.84
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  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.02
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48270_test:ticket48270_test.py:39 index homeDirectory in caseIgnoreIA5Match and caseExactIA5Match INFO  tests.tickets.ticket48270_test:ticket48270_test.py:57 successfully checked that filter with exact mr , a filter with lowercase eq is failing INFO  lib389:tasks.py:798 Index task index_attrs_10242020_222245 completed successfully INFO  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.00
No log output captured.
Passed tickets/ticket48270_test.py::test_ticket48270_extensible_search 0.00
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48270_test:ticket48270_test.py:91 Default: can retrieve an entry filter syntax with exact stored value INFO  tests.tickets.ticket48270_test:ticket48270_test.py:93 Default: can retrieve an entry filter caseExactIA5Match with exact stored value INFO  tests.tickets.ticket48270_test:ticket48270_test.py:97 Default: can not retrieve an entry filter syntax match with lowered stored value INFO  tests.tickets.ticket48270_test:ticket48270_test.py:103 Default: can not retrieve an entry filter caseExactIA5Match with lowered stored value INFO  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.28
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48272_test:ticket48272_test.py:129 Test PASSED
Passed tickets/ticket48294_test.py::test_48294_init 0.06
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket48294_test.py:31 ############################################### INFO  lib389:ticket48294_test.py:32 ####### Testing Ticket 48294 - Linked Attributes plug-in - won't update links after MODRDN operation INFO  lib389:ticket48294_test.py:33 ###############################################
Passed tickets/ticket48294_test.py::test_48294_run_0 0.17
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket48294_test.py:31 ############################################### INFO  lib389:ticket48294_test.py:32 ####### Case 0 - Rename employee1 and adjust the link type value by replace INFO  lib389:ticket48294_test.py:33 ############################################### INFO  lib389:ticket48294_test.py:59 ######################### MODRDN uid=employee2 ######################
Passed tickets/ticket48294_test.py::test_48294_run_1 0.02
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket48294_test.py:31 ############################################### INFO  lib389:ticket48294_test.py:32 ####### Case 1 - Rename employee2 and adjust the link type value by delete and add INFO  lib389:ticket48294_test.py:33 ############################################### INFO  lib389:ticket48294_test.py:59 ######################### MODRDN uid=employee3 ######################
Passed tickets/ticket48294_test.py::test_48294_run_2 0.01
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket48294_test.py:31 ############################################### INFO  lib389:ticket48294_test.py:32 ####### Case 2 - Rename manager1 to manager2 and make sure the managed attribute value is updated INFO  lib389:ticket48294_test.py:33 ############################################### INFO  lib389:ticket48294_test.py:59 ######################### MODRDN uid=manager2 ######################
Passed tickets/ticket48295_test.py::test_48295_init 0.29
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket48295_test.py:30 ############################################### INFO  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 INFO  lib389:ticket48295_test.py:32 ###############################################
Passed tickets/ticket48295_test.py::test_48295_run 0.25
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket48295_test.py:30 ############################################### INFO  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. INFO  lib389:ticket48295_test.py:32 ###############################################
Passed tickets/ticket48312_test.py::test_ticket48312 0.11
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48312_test:ticket48312_test.py:117 Test complete
Passed tickets/ticket48342_test.py::test_ticket4026 90.63
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39003, 'ldap-secureport': 63703, 'server-id': 'master3', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect d8311662-44bd-4407-b9b0-6bf993165864 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 856637a4-d69e-45c8-be0c-8264d9de6dcb / got description=d8311662-44bd-4407-b9b0-6bf993165864) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:162 Joining master master3 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 34ed6f44-6ac5-4ce9-b2d0-edfd5ca4d32a / got description=856637a4-d69e-45c8-be0c-8264d9de6dcb) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 1b4ee4dd-fd43-4a40-ae8f-43080284b5a7 / got description=34ed6f44-6ac5-4ce9-b2d0-edfd5ca4d32a) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master3 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master3 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master2 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48342_test:ticket48342_test.py:19 Add dna plugin config entry...ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 INFO  tests.tickets.ticket48342_test:ticket48342_test.py:37 Enable the DNA plugin... INFO  tests.tickets.ticket48342_test:ticket48342_test.py:44 Restarting the server... INFO  tests.tickets.ticket48342_test:ticket48342_test.py:19 Add dna plugin config entry...ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  tests.tickets.ticket48342_test:ticket48342_test.py:37 Enable the DNA plugin... INFO  tests.tickets.ticket48342_test:ticket48342_test.py:44 Restarting the server... INFO  tests.tickets.ticket48342_test:ticket48342_test.py:19 Add dna plugin config entry...ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 INFO  tests.tickets.ticket48342_test:ticket48342_test.py:37 Enable the DNA plugin... INFO  tests.tickets.ticket48342_test:ticket48342_test.py:44 Restarting the server... INFO  tests.tickets.ticket48342_test:ticket48342_test.py:127 Test complete INFO  tests.tickets.ticket48342_test:ticket48342_test.py:135 Test complete
Passed tickets/ticket48354_test.py::test_ticket48354 0.00
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48354_test:ticket48354_test.py:50 Test PASSED
Passed tickets/ticket48362_test.py::test_ticket48362 92.41
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 70dc75e3-f5e5-44ff-8100-04f68236de12 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 4d7d6ce8-baf3-41b4-88b8-c253df29dffd / got description=70dc75e3-f5e5-44ff-8100-04f68236de12) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48362_test:ticket48362_test.py:28 Add dna plugin config entry...ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 INFO  tests.tickets.ticket48362_test:ticket48362_test.py:48 Enable the DNA plugin... INFO  tests.tickets.ticket48362_test:ticket48362_test.py:55 Restarting the server... INFO  tests.tickets.ticket48362_test:ticket48362_test.py:28 Add dna plugin config entry...ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  tests.tickets.ticket48362_test:ticket48362_test.py:48 Enable the DNA plugin... INFO  tests.tickets.ticket48362_test:ticket48362_test.py:55 Restarting the server... INFO  tests.tickets.ticket48362_test:ticket48362_test.py:83 ======================== Update dnaPortNum=39001 ============================ INFO  tests.tickets.ticket48362_test:ticket48362_test.py:90 ======================== Update done INFO  tests.tickets.ticket48362_test:ticket48362_test.py:83 ======================== Update dnaPortNum=39002 ============================ INFO  tests.tickets.ticket48362_test:ticket48362_test.py:90 ======================== Update done INFO  tests.tickets.ticket48362_test:ticket48362_test.py:132 ======================== BEFORE RESTART ============================ INFO  tests.tickets.ticket48362_test:ticket48362_test.py:135 ======================== BEFORE RESTART ============================ INFO  tests.tickets.ticket48362_test:ticket48362_test.py:141 ======================== BEFORE RESTART ============================ INFO  tests.tickets.ticket48362_test:ticket48362_test.py:150 =================== AFTER RESTART ================================= INFO  tests.tickets.ticket48362_test:ticket48362_test.py:153 =================== AFTER RESTART ================================= INFO  tests.tickets.ticket48362_test:ticket48362_test.py:159 =================== AFTER RESTART ================================= INFO  tests.tickets.ticket48362_test:ticket48362_test.py:162 Test complete
Passed tickets/ticket48366_test.py::test_ticket48366_init 0.60
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket48366_test.py:44 Add subtree: ou=green,dc=example,dc=com INFO  lib389:ticket48366_test.py:48 Add subtree: ou=red,dc=example,dc=com INFO  lib389:ticket48366_test.py:54 Add cn=test,ou=people,dc=example,dc=com INFO  lib389:ticket48366_test.py:60 Add cn=proxy,ou=people,dc=example,dc=com INFO  lib389.utils:ticket48366_test.py:90 Adding %d test entries...
Passed tickets/ticket48366_test.py::test_ticket48366_search_user 0.07
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 0.54
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48370_test:ticket48370_test.py:187 Test PASSED
Passed tickets/ticket48383_test.py::test_ticket48383 45.67
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
------------------------------Captured stderr call------------------------------
ldiffile: /var/lib/dirsrv/slapd-standalone1/ldif/standalone1.ldif
-------------------------------Captured log call--------------------------------
CRITICAL tests.tickets.ticket48383_test:ticket48383_test.py:62 Failed to change nsslapd-cachememsize No such object INFO  tests.tickets.ticket48383_test:ticket48383_test.py:88 Test complete
Passed tickets/ticket48497_test.py::test_ticket48497_init 0.13
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48497_test:ticket48497_test.py:26 Initialization: add dummy entries for the tests
Passed tickets/ticket48497_test.py::test_ticket48497_homeDirectory_mixed_value 0.00
No log output captured.
Passed tickets/ticket48497_test.py::test_ticket48497_extensible_search 0.00
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48497_test:ticket48497_test.py:49 Default: can retrieve an entry filter syntax with exact stored value INFO  tests.tickets.ticket48497_test:ticket48497_test.py:51 Default: can retrieve an entry filter caseExactIA5Match with exact stored value INFO  tests.tickets.ticket48497_test:ticket48497_test.py:55 Default: can not retrieve an entry filter syntax match with lowered stored value INFO  tests.tickets.ticket48497_test:ticket48497_test.py:61 Default: can not retrieve an entry filter caseExactIA5Match with lowered stored value INFO  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--------------------------------
INFO  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.01
-------------------------------Captured log call--------------------------------
INFO  lib389:tasks.py:798 Index task index_attrs_10242020_222914 completed successfully INFO  tests.tickets.ticket48497_test:ticket48497_test.py:93 Check indexing succeeded with a specified matching rule
Passed tickets/ticket48665_test.py::test_ticket48665 0.29
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48665_test:ticket48665_test.py:40 5 entries are returned from the server. CRITICAL tests.tickets.ticket48665_test:ticket48665_test.py:47 Failed to change nsslapd-cachememsize No such object INFO  tests.tickets.ticket48665_test:ticket48665_test.py:52 5 entries are returned from the server. INFO  tests.tickets.ticket48665_test:ticket48665_test.py:63 5 entries are returned from the server. INFO  tests.tickets.ticket48665_test:ticket48665_test.py:65 Test complete
Passed tickets/ticket48745_test.py::test_ticket48745_init 0.39
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  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--------------------------------
INFO  tests.tickets.ticket48745_test:ticket48745_test.py:39 index homeDirectory in caseIgnoreIA5Match and caseExactIA5Match INFO  tests.tickets.ticket48745_test:ticket48745_test.py:57 successfully checked that filter with exact mr , a filter with lowercase eq is failing INFO  lib389:tasks.py:798 Index task index_attrs_10242020_222941 completed successfully INFO  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.00
No log output captured.
Passed tickets/ticket48745_test.py::test_ticket48745_extensible_search_after_index 0.00
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48745_test:ticket48745_test.py:91 Default: can retrieve an entry filter syntax with exact stored value INFO  tests.tickets.ticket48745_test:ticket48745_test.py:99 Default: can retrieve an entry filter caseExactIA5Match with exact stored value INFO  tests.tickets.ticket48745_test:ticket48745_test.py:106 Default: can not retrieve an entry filter syntax match with lowered stored value INFO  tests.tickets.ticket48745_test:ticket48745_test.py:112 Default: can not retrieve an entry filter caseExactIA5Match with lowered stored value INFO  tests.tickets.ticket48745_test:ticket48745_test.py:119 Default: can retrieve an entry filter caseIgnoreIA5Match with lowered stored value
Passed tickets/ticket48746_test.py::test_ticket48746_init 0.63
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  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--------------------------------
INFO  tests.tickets.ticket48746_test:ticket48746_test.py:39 index homeDirectory in caseIgnoreIA5Match and caseExactIA5Match INFO  tests.tickets.ticket48746_test:ticket48746_test.py:57 successfully checked that filter with exact mr , a filter with lowercase eq is failing INFO  lib389:tasks.py:798 Index task index_attrs_10242020_222951 completed successfully INFO  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.00
No log output captured.
Passed tickets/ticket48746_test.py::test_ticket48746_extensible_search_after_index 0.00
-------------------------------Captured log call--------------------------------
INFO  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--------------------------------
INFO  tests.tickets.ticket48746_test:ticket48746_test.py:104 index homeDirectory in caseExactIA5Match, this would trigger the crash INFO  tests.tickets.ticket48746_test:ticket48746_test.py:121 successfully checked that filter with exact mr , a filter with lowercase eq is failing INFO  lib389:tasks.py:798 Index task index_attrs_10242020_222953 completed successfully INFO  tests.tickets.ticket48746_test:ticket48746_test.py:127 Check indexing succeeded with a specified matching rule
Passed tickets/ticket48799_test.py::test_ticket48799 15.31
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39201, 'ldap-secureport': 63901, 'server-id': 'consumer1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:175 Joining consumer consumer1 from master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 2c61dd6a-1329-4540-85f2-e4f379efb3e3 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working INFO  lib389.replica:replica.py:2285 SUCCESS: joined consumer from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 INFO  lib389.topologies:topologies.py:180 Ensuring consumer consumer1 from master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 already exists
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48799_test:ticket48799_test.py:80 Test complete
Passed tickets/ticket48808_test.py::test_ticket48808 6.76
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48808_test:ticket48808_test.py:159 Run multiple paging controls on a single connection INFO  tests.tickets.ticket48808_test:ticket48808_test.py:48 Adding 100 users INFO  tests.tickets.ticket48808_test:ticket48808_test.py:166 Set user bind INFO  tests.tickets.ticket48808_test:ticket48808_test.py:169 Create simple paged results control instance INFO  tests.tickets.ticket48808_test:ticket48808_test.py:174 Iteration 0 INFO  tests.tickets.ticket48808_test:ticket48808_test.py:174 Iteration 1 INFO  tests.tickets.ticket48808_test:ticket48808_test.py:174 Iteration 2 INFO  tests.tickets.ticket48808_test:ticket48808_test.py:193 Set Directory Manager bind back INFO  tests.tickets.ticket48808_test:ticket48808_test.py:75 Deleting 100 users INFO  tests.tickets.ticket48808_test:ticket48808_test.py:197 Abandon the search INFO  tests.tickets.ticket48808_test:ticket48808_test.py:48 Adding 10 users INFO  tests.tickets.ticket48808_test:ticket48808_test.py:204 Set user bind INFO  tests.tickets.ticket48808_test:ticket48808_test.py:207 Create simple paged results control instance INFO  tests.tickets.ticket48808_test:ticket48808_test.py:224 Set Directory Manager bind back INFO  tests.tickets.ticket48808_test:ticket48808_test.py:75 Deleting 10 users INFO  tests.tickets.ticket48808_test:ticket48808_test.py:228 Search should fail with 'nsPagedSizeLimit = 5'and 'nsslapd-pagedsizelimit = 15' with 10 users INFO  tests.tickets.ticket48808_test:ticket48808_test.py:48 Adding 10 users INFO  tests.tickets.ticket48808_test:ticket48808_test.py:95 Set nsslapd-pagedsizelimit to b'15'. Previous value - [b'0']. Modified suffix - cn=config. INFO  tests.tickets.ticket48808_test:ticket48808_test.py:95 Set nsPagedSizeLimit to b'5'. Previous value - None. Modified suffix - uid=simplepaged_test,dc=example,dc=com. INFO  tests.tickets.ticket48808_test:ticket48808_test.py:243 Set user bind INFO  tests.tickets.ticket48808_test:ticket48808_test.py:246 Create simple paged results control instance INFO  tests.tickets.ticket48808_test:ticket48808_test.py:250 Expect to fail with SIZELIMIT_EXCEEDED INFO  tests.tickets.ticket48808_test:ticket48808_test.py:130 Getting page 0 INFO  tests.tickets.ticket48808_test:ticket48808_test.py:255 Set Directory Manager bind back INFO  tests.tickets.ticket48808_test:ticket48808_test.py:75 Deleting 10 users INFO  tests.tickets.ticket48808_test:ticket48808_test.py:95 Set nsslapd-pagedsizelimit to [b'0']. Previous value - [b'15']. Modified suffix - cn=config. INFO  tests.tickets.ticket48808_test:ticket48808_test.py:95 Set nsPagedSizeLimit to None. Previous value - [b'5']. Modified suffix - uid=simplepaged_test,dc=example,dc=com. INFO  tests.tickets.ticket48808_test:ticket48808_test.py:263 Search should pass with 'nsPagedSizeLimit = 15'and 'nsslapd-pagedsizelimit = 5' with 10 users INFO  tests.tickets.ticket48808_test:ticket48808_test.py:48 Adding 10 users INFO  tests.tickets.ticket48808_test:ticket48808_test.py:95 Set nsslapd-pagedsizelimit to b'5'. Previous value - [b'0']. Modified suffix - cn=config. INFO  tests.tickets.ticket48808_test:ticket48808_test.py:95 Set nsPagedSizeLimit to b'15'. Previous value - None. Modified suffix - uid=simplepaged_test,dc=example,dc=com. INFO  tests.tickets.ticket48808_test:ticket48808_test.py:277 Set user bind INFO  tests.tickets.ticket48808_test:ticket48808_test.py:280 Create simple paged results control instance INFO  tests.tickets.ticket48808_test:ticket48808_test.py:284 Search should PASS INFO  tests.tickets.ticket48808_test:ticket48808_test.py:130 Getting page 0 INFO  tests.tickets.ticket48808_test:ticket48808_test.py:287 10 results INFO  tests.tickets.ticket48808_test:ticket48808_test.py:290 Set Directory Manager bind back INFO  tests.tickets.ticket48808_test:ticket48808_test.py:75 Deleting 10 users INFO  tests.tickets.ticket48808_test:ticket48808_test.py:95 Set nsslapd-pagedsizelimit to [b'0']. Previous value - [b'5']. Modified suffix - cn=config. INFO  tests.tickets.ticket48808_test:ticket48808_test.py:95 Set nsPagedSizeLimit to None. Previous value - [b'15']. Modified suffix - uid=simplepaged_test,dc=example,dc=com.
Passed tickets/ticket48844_test.py::test_ticket48844_init 1.36
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  lib389:backend.py:80 List backend with suffix=dc=bitwise,dc=com INFO  lib389:backend.py:290 Creating a local backend INFO  lib389:backend.py:76 List backend cn=TestBitw,cn=ldbm database,cn=plugins,cn=config INFO  lib389:__init__.py:1772 Found entry dn: cn=TestBitw,cn=ldbm database,cn=plugins,cn=config cn: TestBitw nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-standalone1/db/TestBitw nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: dc=bitwise,dc=com objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance INFO  lib389:mappingTree.py:154 Entry dn: cn="dc=bitwise,dc=com",cn=mapping tree,cn=config cn: dc=bitwise,dc=com nsslapd-backend: TestBitw nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree INFO  lib389:__init__.py:1772 Found entry dn: cn=dc\3Dbitwise\2Cdc\3Dcom,cn=mapping tree,cn=config cn: dc=bitwise,dc=com nsslapd-backend: TestBitw nsslapd-state: backend objectClass: top objectClass: extensibleObject objectClass: nsMappingTree
Passed tickets/ticket48844_test.py::test_ticket48844_bitwise_on 3.56
No log output captured.
Passed tickets/ticket48844_test.py::test_ticket48844_bitwise_off 4.78
No log output captured.
Passed tickets/ticket48891_test.py::test_ticket48891_setup 2.30
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket48891_test.py:43 Bind as cn=Directory Manager INFO  lib389:ticket48891_test.py:52 ######################### SETUP SUFFIX o=ticket48891.org ###################### INFO  lib389:backend.py:80 List backend with suffix=dc=ticket48891.org INFO  lib389:backend.py:290 Creating a local backend INFO  lib389:backend.py:76 List backend cn=ticket48891,cn=ldbm database,cn=plugins,cn=config INFO  lib389:__init__.py:1772 Found entry dn: cn=ticket48891,cn=ldbm database,cn=plugins,cn=config cn: ticket48891 nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-standalone1/db/ticket48891 nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: dc=ticket48891.org objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance INFO  lib389:mappingTree.py:154 Entry dn: cn="dc=ticket48891.org",cn=mapping tree,cn=config cn: dc=ticket48891.org nsslapd-backend: ticket48891 nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree INFO  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 INFO  lib389:ticket48891_test.py:61 ######################### Generate Test data ###################### INFO  lib389:ticket48891_test.py:77 ######################### SEARCH ALL ###################### INFO  lib389:ticket48891_test.py:78 Bind as cn=Directory Manager and add the READ/SEARCH SELFDN aci INFO  lib389:ticket48891_test.py:82 Returned 10 entries. INFO  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-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48893_test:ticket48893_test.py:46 Test PASSED
Passed tickets/ticket48896_test.py::test_ticket48896 0.91
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48896_test:ticket48896_test.py:69 Testing Ticket 48896 - Default Setting for passwordMinTokenLength does not work INFO  tests.tickets.ticket48896_test:ticket48896_test.py:71 Setting global password policy with password syntax. INFO  tests.tickets.ticket48896_test:ticket48896_test.py:80 Default passwordMinTokenLength == b'3' INFO  tests.tickets.ticket48896_test:ticket48896_test.py:81 Default passwordInHistory == b'6' INFO  tests.tickets.ticket48896_test:ticket48896_test.py:83 Adding a user. INFO  tests.tickets.ticket48896_test:ticket48896_test.py:47 Binding as {uid=buser123,dc=example,dc=com, password} INFO  tests.tickets.ticket48896_test:ticket48896_test.py:51 Replacing password: password -> Abcd012+, which should be ok INFO  tests.tickets.ticket48896_test:ticket48896_test.py:63 PASSED INFO  tests.tickets.ticket48896_test:ticket48896_test.py:47 Binding as {uid=buser123,dc=example,dc=com, Abcd012+} INFO  tests.tickets.ticket48896_test:ticket48896_test.py:51 Replacing password: Abcd012+ -> user, which should fail INFO  tests.tickets.ticket48896_test:ticket48896_test.py:55 Exception (expected): CONSTRAINT_VIOLATION INFO  tests.tickets.ticket48896_test:ticket48896_test.py:63 PASSED INFO  tests.tickets.ticket48896_test:ticket48896_test.py:47 Binding as {uid=buser123,dc=example,dc=com, Abcd012+} INFO  tests.tickets.ticket48896_test:ticket48896_test.py:51 Replacing password: Abcd012+ -> buser123, which should fail INFO  tests.tickets.ticket48896_test:ticket48896_test.py:55 Exception (expected): CONSTRAINT_VIOLATION INFO  tests.tickets.ticket48896_test:ticket48896_test.py:63 PASSED INFO  tests.tickets.ticket48896_test:ticket48896_test.py:47 Binding as {uid=buser123,dc=example,dc=com, Abcd012+} INFO  tests.tickets.ticket48896_test:ticket48896_test.py:51 Replacing password: Abcd012+ -> Tuse!1234, which should fail INFO  tests.tickets.ticket48896_test:ticket48896_test.py:55 Exception (expected): CONSTRAINT_VIOLATION INFO  tests.tickets.ticket48896_test:ticket48896_test.py:63 PASSED INFO  tests.tickets.ticket48896_test:ticket48896_test.py:47 Binding as {uid=buser123,dc=example,dc=com, Abcd012+} INFO  tests.tickets.ticket48896_test:ticket48896_test.py:51 Replacing password: Abcd012+ -> Tuse!0987, which should fail INFO  tests.tickets.ticket48896_test:ticket48896_test.py:55 Exception (expected): CONSTRAINT_VIOLATION INFO  tests.tickets.ticket48896_test:ticket48896_test.py:63 PASSED INFO  tests.tickets.ticket48896_test:ticket48896_test.py:47 Binding as {uid=buser123,dc=example,dc=com, Abcd012+} INFO  tests.tickets.ticket48896_test:ticket48896_test.py:51 Replacing password: Abcd012+ -> Tabc!1234, which should fail INFO  tests.tickets.ticket48896_test:ticket48896_test.py:55 Exception (expected): CONSTRAINT_VIOLATION INFO  tests.tickets.ticket48896_test:ticket48896_test.py:63 PASSED INFO  tests.tickets.ticket48896_test:ticket48896_test.py:47 Binding as {uid=buser123,dc=example,dc=com, Abcd012+} INFO  tests.tickets.ticket48896_test:ticket48896_test.py:51 Replacing password: Abcd012+ -> Direc+ory389, which should be ok INFO  tests.tickets.ticket48896_test:ticket48896_test.py:63 PASSED INFO  tests.tickets.ticket48896_test:ticket48896_test.py:132 SUCCESS
Passed tickets/ticket48906_test.py::test_ticket48906_setup 0.09
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket48906_test.py:63 Bind as cn=Directory Manager INFO  lib389:ticket48906_test.py:83 ######################### SEARCH ALL ###################### INFO  lib389:ticket48906_test.py:84 Bind as cn=Directory Manager and add the READ/SEARCH SELFDN aci INFO  lib389:ticket48906_test.py:88 Returned 10 entries. INFO  lib389:ticket48906_test.py:92 10 person entries are successfully created under dc=example,dc=com.
Passed tickets/ticket48906_test.py::test_ticket48906_dblock_default 0.01
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket48906_test.py:149 ################################### INFO  lib389:ticket48906_test.py:150 ### INFO  lib389:ticket48906_test.py:151 ### Check that before any change config/monitor INFO  lib389:ticket48906_test.py:152 ### contains the default value INFO  lib389:ticket48906_test.py:153 ### INFO  lib389:ticket48906_test.py:154 ###################################
Passed tickets/ticket48906_test.py::test_ticket48906_dblock_ldap_update 3.32
------------------------------Captured stdout call------------------------------
line locks:10000 expected_value 10000 value 10000
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket48906_test.py:160 ################################### INFO  lib389:ticket48906_test.py:161 ### INFO  lib389:ticket48906_test.py:162 ### Check that after ldap update INFO  lib389:ticket48906_test.py:163 ### - monitor contains DEFAULT INFO  lib389:ticket48906_test.py:164 ### - configured contains DBLOCK_LDAP_UPDATE INFO  lib389:ticket48906_test.py:165 ### - After stop dse.ldif contains DBLOCK_LDAP_UPDATE INFO  lib389:ticket48906_test.py:166 ### - After stop guardian contains DEFAULT INFO  lib389:ticket48906_test.py:167 ### In fact guardian should differ from config to recreate the env INFO  lib389:ticket48906_test.py:168 ### Check that after restart (DBenv recreated) INFO  lib389:ticket48906_test.py:169 ### - monitor contains DBLOCK_LDAP_UPDATE INFO  lib389:ticket48906_test.py:170 ### - configured contains DBLOCK_LDAP_UPDATE INFO  lib389:ticket48906_test.py:171 ### - dse.ldif contains DBLOCK_LDAP_UPDATE INFO  lib389:ticket48906_test.py:172 ### INFO  lib389:ticket48906_test.py:173 ###################################
Passed tickets/ticket48906_test.py::test_ticket48906_dblock_edit_update 6.21
------------------------------Captured stdout call------------------------------
line locks:20000 expected_value 20000 value 20000 line locks:40000 expected_value 40000 value 40000
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket48906_test.py:191 ################################### INFO  lib389:ticket48906_test.py:192 ### INFO  lib389:ticket48906_test.py:193 ### Check that after stop INFO  lib389:ticket48906_test.py:194 ### - dse.ldif contains DBLOCK_LDAP_UPDATE INFO  lib389:ticket48906_test.py:195 ### - guardian contains DBLOCK_LDAP_UPDATE INFO  lib389:ticket48906_test.py:196 ### Check that edit dse+restart INFO  lib389:ticket48906_test.py:197 ### - monitor contains DBLOCK_EDIT_UPDATE INFO  lib389:ticket48906_test.py:198 ### - configured contains DBLOCK_EDIT_UPDATE INFO  lib389:ticket48906_test.py:199 ### Check that after stop INFO  lib389:ticket48906_test.py:200 ### - dse.ldif contains DBLOCK_EDIT_UPDATE INFO  lib389:ticket48906_test.py:201 ### - guardian contains DBLOCK_EDIT_UPDATE INFO  lib389:ticket48906_test.py:202 ### INFO  lib389:ticket48906_test.py:203 ###################################
Passed tickets/ticket48906_test.py::test_ticket48906_dblock_robust 5.26
------------------------------Captured stdout call------------------------------
line locks:40000 expected_value 40000 value 40000
-------------------------------Captured log call--------------------------------
INFO  lib389:ticket48906_test.py:245 ################################### INFO  lib389:ticket48906_test.py:246 ### INFO  lib389:ticket48906_test.py:247 ### Check that the following values are rejected INFO  lib389:ticket48906_test.py:248 ### - negative value INFO  lib389:ticket48906_test.py:249 ### - insuffisant value INFO  lib389:ticket48906_test.py:250 ### - invalid value INFO  lib389:ticket48906_test.py:251 ### Check that minimum value is accepted INFO  lib389:ticket48906_test.py:252 ### INFO  lib389:ticket48906_test.py:253 ###################################
Passed tickets/ticket48916_test.py::test_ticket48916 47.88
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 38794325-04e3-4851-9b6c-ae0421a4f700 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 7f366da0-b115-4e6b-bc34-e7bebd25fb74 / got description=38794325-04e3-4851-9b6c-ae0421a4f700) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48916_test:ticket48916_test.py:128 Test PASSED
Passed tickets/ticket48944_test.py::test_ticket48944 101.75
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39201, 'ldap-secureport': 63901, 'server-id': 'consumer1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39202, 'ldap-secureport': 63902, 'server-id': 'consumer2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 8843fae0-7e32-4836-913b-77e4bcfd4237 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 0622feac-2b91-43ca-a3f7-951840d2c7d6 / got description=8843fae0-7e32-4836-913b-77e4bcfd4237) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:175 Joining consumer consumer1 from master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 6fd7ed60-6398-4f22-9e82-6a588eba074f / got description=0622feac-2b91-43ca-a3f7-951840d2c7d6) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working INFO  lib389.replica:replica.py:2285 SUCCESS: joined consumer from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 INFO  lib389.topologies:topologies.py:175 Joining consumer consumer2 from master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 is NOT working (expect 95d691d1-02da-4940-a0a3-de51f4c9e3e9 / got description=6fd7ed60-6398-4f22-9e82-6a588eba074f) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 is working INFO  lib389.replica:replica.py:2285 SUCCESS: joined consumer from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 INFO  lib389.topologies:topologies.py:180 Ensuring consumer consumer1 from master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 already exists INFO  lib389.topologies:topologies.py:180 Ensuring consumer consumer2 from master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 already exists INFO  lib389.topologies:topologies.py:180 Ensuring consumer consumer1 from master2 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is was created INFO  lib389.topologies:topologies.py:180 Ensuring consumer consumer2 from master2 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39202 is was created
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48944_test:ticket48944_test.py:108 Ticket 48944 - On a read only replica invalid state info can accumulate INFO  tests.tickets.ticket48944_test:ticket48944_test.py:52 Enable account policy plugin and configure required attributes INFO  tests.tickets.ticket48944_test:ticket48944_test.py:54 Configure Account policy plugin on master1 INFO  tests.tickets.ticket48944_test:ticket48944_test.py:52 Enable account policy plugin and configure required attributes INFO  tests.tickets.ticket48944_test:ticket48944_test.py:54 Configure Account policy plugin on master2 INFO  tests.tickets.ticket48944_test:ticket48944_test.py:52 Enable account policy plugin and configure required attributes INFO  tests.tickets.ticket48944_test:ticket48944_test.py:69 Configure Account policy plugin on consumer1 INFO  tests.tickets.ticket48944_test:ticket48944_test.py:52 Enable account policy plugin and configure required attributes INFO  tests.tickets.ticket48944_test:ticket48944_test.py:69 Configure Account policy plugin on consumer2 INFO  tests.tickets.ticket48944_test:ticket48944_test.py:115 Sleep for 10secs for the server to come up INFO  tests.tickets.ticket48944_test:ticket48944_test.py:117 Add few entries to server and check if entries are replicated INFO  tests.tickets.ticket48944_test:ticket48944_test.py:132 Checking if entries are synced across masters and consumers INFO  tests.tickets.ticket48944_test:ticket48944_test.py:152 Start master2 to sync lastLoginTime attribute from master1 INFO  tests.tickets.ticket48944_test:ticket48944_test.py:155 Stop master1 INFO  tests.tickets.ticket48944_test:ticket48944_test.py:157 Bind as user1 to master2 and check if lastLoginTime attribute is greater than master1 INFO  tests.tickets.ticket48944_test:ticket48944_test.py:161 Start all servers except master1 INFO  tests.tickets.ticket48944_test:ticket48944_test.py:167 Check if consumers are updated with lastLoginTime attribute value from master2 INFO  tests.tickets.ticket48944_test:ticket48944_test.py:174 Check if lastLoginTime update in consumers not synced to master2 INFO  tests.tickets.ticket48944_test:ticket48944_test.py:185 Start master1 and check if its updating its older lastLoginTime attribute to consumers INFO  tests.tickets.ticket48944_test:ticket48944_test.py:194 Check if lastLoginTime update from master2 is synced to all masters and consumers INFO  tests.tickets.ticket48944_test:ticket48944_test.py:202 Checking consumer error logs for replica invalid state info
Passed tickets/ticket48956_test.py::test_ticket48956 38.58
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
------------------------------Captured stderr call------------------------------
Additional information: Invalid attribute in filter - results may not be complete. Additional information: Invalid attribute in filter - results may not be complete. Additional information: Invalid attribute in filter - results may not be complete. Additional information: Invalid attribute in filter - results may not be complete.
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48956_test:ticket48956_test.py:54 ######################### Adding Account Policy entry: cn=Account Inactivation Policy,dc=example,dc=com ###################### INFO  tests.tickets.ticket48956_test:ticket48956_test.py:61 ######################### Adding Test User entry: uid=ticket48956user,dc=example,dc=com ###################### INFO  tests.tickets.ticket48956_test:ticket48956_test.py:45 output: b'uid=ticket48956user,dc=example,dc=com - activated.\n' INFO  tests.tickets.ticket48956_test:ticket48956_test.py:45 output: b'uid=ticket48956user,dc=example,dc=com - inactivated (inactivity limit exceeded).\n' INFO  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 INFO  lib389:backend.py:290 Creating a local backend INFO  lib389:backend.py:76 List backend cn=ticket48956,cn=ldbm database,cn=plugins,cn=config INFO  lib389:__init__.py:1772 Found entry dn: cn=ticket48956,cn=ldbm database,cn=plugins,cn=config cn: ticket48956 nsslapd-cachememsize: 512000 nsslapd-cachesize: -1 nsslapd-directory: /var/lib/dirsrv/slapd-standalone1/db/ticket48956 nsslapd-dncachememsize: 16777216 nsslapd-readonly: off nsslapd-require-index: off nsslapd-require-internalop-index: off nsslapd-suffix: dc=this,dc=is,dc=a,dc=very,dc=long,dc=suffix,dc=so,dc=long,dc=suffix,dc=extremely,dc=long,dc=suffix objectClass: top objectClass: extensibleObject objectClass: nsBackendInstance INFO  lib389:mappingTree.py:154 Entry dn: cn="dc=this,dc=is,dc=a,dc=very,dc=long,dc=suffix,dc=so,dc=long,dc=suffix,dc=extremely,dc=long,dc=suffix",cn=mapping tree,cn=config cn: dc=this,dc=is,dc=a,dc=very,dc=long,dc=suffix,dc=so,dc=long,dc=suffix,dc=extremely,dc=long,dc=suffix nsslapd-backend: ticket48956 nsslapd-state: backend objectclass: top objectclass: extensibleObject objectclass: nsMappingTree INFO  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 INFO  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 ###################### INFO  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 ###################### INFO  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' INFO  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' INFO  tests.tickets.ticket48956_test:ticket48956_test.py:121 Test PASSED
Passed tickets/ticket48973_test.py::test_ticket48973_init 1.13
-------------------------------Captured log call--------------------------------
INFO  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.26
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48973_test:ticket48973_test.py:211 Search (homeDirectory=/home/xyz_0) INFO  tests.tickets.ticket48973_test:ticket48973_test.py:218 result=[24/Oct/2020:22:37:42.906237130 -0400] conn=2 op=102 RESULT err=0 tag=101 nentries=1 wtime=0.000123871 optime=0.001106868 etime=0.001226616 notes=U details="Partially Unindexed Filter"
Passed tickets/ticket48973_test.py::test_ticket48973_homeDirectory_caseExactIA5Match_caseIgnoreIA5Match_indexing 24.20
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket48973_test:ticket48973_test.py:273 index homeDirectory in caseExactIA5Match and caseIgnoreIA5Match INFO  lib389:tasks.py:798 Index task index_attrs_10242020_223755 completed successfully INFO  tests.tickets.ticket48973_test:ticket48973_test.py:284 Check indexing succeeded with no specified matching rule INFO  tests.tickets.ticket48973_test:ticket48973_test.py:173 Search (homeDirectory=/home/xyz_4) INFO  tests.tickets.ticket48973_test:ticket48973_test.py:184 result=[24/Oct/2020:22:37:57.141741889 -0400] conn=1 op=9 RESULT err=0 tag=101 nentries=1 wtime=0.000177410 optime=0.000392856 etime=0.000566712 INFO  tests.tickets.ticket48973_test:ticket48973_test.py:173 Search (homeDirectory:caseExactIA5Match:=/home/xyz_4) INFO  tests.tickets.ticket48973_test:ticket48973_test.py:184 result=[24/Oct/2020:22:38:01.157013668 -0400] conn=1 op=2 RESULT err=0 tag=101 nentries=1 wtime=0.000223681 optime=0.000579278 etime=0.000799715 INFO  tests.tickets.ticket48973_test:ticket48973_test.py:173 Search (homeDirectory:caseIgnoreIA5Match:=/home/xyz_4) INFO  tests.tickets.ticket48973_test:ticket48973_test.py:184 result=[24/Oct/2020:22:38:04.753482500 -0400] conn=1 op=2 RESULT err=0 tag=101 nentries=1 wtime=0.000221560 optime=0.000547512 etime=0.000765423 INFO  tests.tickets.ticket48973_test:ticket48973_test.py:173 Search (homeDirectory=/HOME/XYZ_4) INFO  tests.tickets.ticket48973_test:ticket48973_test.py:184 result=[24/Oct/2020:22:38:08.362086047 -0400] conn=1 op=2 RESULT err=0 tag=101 nentries=0 wtime=0.000250559 optime=0.000425155 etime=0.000672800 INFO  tests.tickets.ticket48973_test:ticket48973_test.py:173 Search (homeDirectory:caseExactIA5Match:=/HOME/XYZ_4) INFO  tests.tickets.ticket48973_test:ticket48973_test.py:184 result=[24/Oct/2020:22:38:12.004100134 -0400] conn=1 op=2 RESULT err=0 tag=101 nentries=0 wtime=0.000353489 optime=0.000537411 etime=0.000886215 INFO  tests.tickets.ticket48973_test:ticket48973_test.py:173 Search (homeDirectory:caseIgnoreIA5Match:=/HOME/XYZ_4) INFO  tests.tickets.ticket48973_test:ticket48973_test.py:184 result=[24/Oct/2020:22:38:15.645828665 -0400] conn=1 op=2 RESULT err=0 tag=101 nentries=1 wtime=0.000230611 optime=0.000610743 etime=0.000837754
Passed tickets/ticket49008_test.py::test_ticket49008 51.17
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39003, 'ldap-secureport': 63703, 'server-id': 'master3', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect c9841be6-9939-4aa9-8c56-2b8be363a2a0 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 3cbb4605-0db0-4670-acc9-d59b22d88c4b / got description=c9841be6-9939-4aa9-8c56-2b8be363a2a0) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:162 Joining master master3 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect a04c60cd-3b6a-426a-9f39-e4e7b2639fd8 / got description=3cbb4605-0db0-4670-acc9-d59b22d88c4b) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect f410662a-4f75-46f4-948a-1502f1db4904 / got description=a04c60cd-3b6a-426a-9f39-e4e7b2639fd8) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master3 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master3 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master2 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49008_test:ticket49008_test.py:115 ruv before fail: b'{replica 2 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002} 5f94e530000000020000 5f94e559000300020000' INFO  tests.tickets.ticket49008_test:ticket49008_test.py:116 ruv after fail: b'{replica 2 ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002} 5f94e530000000020000 5f94e559000300020000'
Passed tickets/ticket49020_test.py::test_ticket49020 33.70
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39003, 'ldap-secureport': 63703, 'server-id': 'master3', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 35247600-de29-44b3-a43f-61650ffbe806 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 30221111-4d96-4742-bad1-531c0d38a436 / got description=35247600-de29-44b3-a43f-61650ffbe806) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:162 Joining master master3 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect b8780f0f-0c5c-486f-bd69-794846c12cb7 / got description=30221111-4d96-4742-bad1-531c0d38a436) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect cda6f917-0a0c-4785-bc1e-89e54ac52490 / got description=b8780f0f-0c5c-486f-bd69-794846c12cb7) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master3 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master3 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master2 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1169 Starting total init cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config
Passed tickets/ticket49039_test.py::test_ticket49039 16.81
-----------------------------Captured stdout setup------------------------------
Instance slapd-standalone1 removed.
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket49039_test:ticket49039_test.py:112 Test Passed
Passed tickets/ticket49072_test.py::test_ticket49072_basedn 4.87
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket49072_test:ticket49072_test.py:40 Ticket 49072 memberof fixup task with invalid basedn... INFO  tests.tickets.ticket49072_test:ticket49072_test.py:59 output: b'Successfully added task entry "cn=memberOf_fixup_2020_10_24_22_41_31, cn=memberOf task, cn=tasks, cn=config"\n' INFO  tests.tickets.ticket49072_test:ticket49072_test.py:63 Error log out: ['[24/Oct/2020:22:41:31.186601856 -0400] - ERR - memberof-plugin - memberof_fixup_task_thread - Failed to get be backend from (dc=testdb,dc=com)\n']
Passed tickets/ticket49072_test.py::test_ticket49072_filter 20.31
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket49072_test:ticket49072_test.py:77 Ticket 49072 memberof fixup task with invalid filter... INFO  tests.tickets.ticket49072_test:ticket49072_test.py:78 Wait for 10 secs and check if task is completed INFO  tests.tickets.ticket49072_test:ticket49072_test.py:82 memberof task is still running, wait for +10 secs INFO  tests.tickets.ticket49072_test:ticket49072_test.py:100 output: b'Successfully added task entry "cn=memberOf_fixup_2020_10_24_22_41_51, cn=memberOf task, cn=tasks, cn=config"\n' INFO  tests.tickets.ticket49072_test:ticket49072_test.py:104 Error log out: ['[24/Oct/2020:22:41:51.599278244 -0400] - ERR - memberof-plugin - memberof_fix_memberof - Failed (Bad search filter)\n'] INFO  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.28
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed tickets/ticket49095_test.py::test_ticket49095 0.29
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket49095_test:ticket49095_test.py:79 Test Passed
Passed tickets/ticket49104_test.py::test_ticket49104_setup 40.88
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  lib389:tasks.py:498 Import task import_10242020_224257 for file /var/lib/dirsrv/slapd-standalone1/ldif/49104.ldif completed successfully
Passed tickets/ticket49104_test.py::test_ticket49104 0.21
------------------------------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.29
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket49122_test:ticket49122_test.py:57 Testing filter: nsrole=cn=empty,dc=example,dc=com INFO  tests.tickets.ticket49122_test:ticket49122_test.py:57 Testing filter: (nsrole=cn=empty,dc=example,dc=com) INFO  tests.tickets.ticket49122_test:ticket49122_test.py:57 Testing filter: (&(nsrole=cn=empty,dc=example,dc=com)) INFO  tests.tickets.ticket49122_test:ticket49122_test.py:57 Testing filter: (!(nsrole=cn=empty,dc=example,dc=com)) INFO  tests.tickets.ticket49122_test:ticket49122_test.py:57 Testing filter: (&(|(objectclass=person)(sn=app*))(userpassword=*)) INFO  tests.tickets.ticket49122_test:ticket49122_test.py:57 Testing filter: (&(|(objectclass=person)(nsrole=cn=empty,dc=example,dc=com))(userpassword=*)) INFO  tests.tickets.ticket49122_test:ticket49122_test.py:57 Testing filter: (&(|(nsrole=cn=empty,dc=example,dc=com)(sn=app*))(userpassword=*)) INFO  tests.tickets.ticket49122_test:ticket49122_test.py:57 Testing filter: (&(|(objectclass=person)(sn=app*))(nsrole=cn=empty,dc=example,dc=com)) INFO  tests.tickets.ticket49122_test:ticket49122_test.py:57 Testing filter: (&(|(&(cn=*)(objectclass=person)(nsrole=cn=empty,dc=example,dc=com)))(uid=*)) INFO  lib389:ticket49122_test.py:86 Test Passed
Passed tickets/ticket49180_test.py::test_ticket49180 51.49
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39003, 'ldap-secureport': 63703, 'server-id': 'master3', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39004, 'ldap-secureport': 63704, 'server-id': 'master4', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 3c82e7cf-6341-4156-ae21-e9f8ffdbaa98 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect c9bcfdfd-cdf1-4a73-8554-28265578d02b / got description=3c82e7cf-6341-4156-ae21-e9f8ffdbaa98) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:162 Joining master master3 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 4f49a0dc-6a83-487d-840e-84349456985c / got description=c9bcfdfd-cdf1-4a73-8554-28265578d02b) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect ac2d5ac4-928d-4738-b1cd-299cbdbe76ef / got description=4f49a0dc-6a83-487d-840e-84349456985c) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 INFO  lib389.topologies:topologies.py:162 Joining master master4 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect cba287fd-2243-425f-8b1b-c95889a7e2f0 / got description=ac2d5ac4-928d-4738-b1cd-299cbdbe76ef) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 2970cb78-68c3-4214-ac93-cfc455333c63 / got description=cba287fd-2243-425f-8b1b-c95889a7e2f0) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master3 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master4 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master3 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master4 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master2 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master4 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master4 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master4 to master2 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master4 to master3 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket49180_test:ticket49180_test.py:78 Running test_ticket49180... INFO  tests.tickets.ticket49180_test:ticket49180_test.py:80 Check that replication works properly on all masters INFO  tests.tickets.ticket49180_test:ticket49180_test.py:95 test_clean: disable master 4... INFO  tests.tickets.ticket49180_test:ticket49180_test.py:30 test_clean: remove all the agreements to master 4... INFO  lib389:agreement.py:1095 Agreement (cn=004,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config) was successfully removed INFO  lib389:agreement.py:1095 Agreement (cn=004,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config) was successfully removed INFO  lib389:agreement.py:1095 Agreement (cn=004,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config) was successfully removed INFO  tests.tickets.ticket49180_test:ticket49180_test.py:46 Restoring master 4... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is NOT working (expect 3811c4d1-b5ce-4270-b814-f7d2111bebc6 / got description=2970cb78-68c3-4214-ac93-cfc455333c63) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 6f16e768-42db-4c51-8c26-1a6a8628b718 / got description=3811c4d1-b5ce-4270-b814-f7d2111bebc6) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39004 already exists INFO  tests.tickets.ticket49180_test:ticket49180_test.py:59 Replication is working m1 -> m2. INFO  tests.tickets.ticket49180_test:ticket49180_test.py:59 Replication is working m1 -> m3. INFO  tests.tickets.ticket49180_test:ticket49180_test.py:59 Replication is working m1 -> m4. INFO  tests.tickets.ticket49180_test:ticket49180_test.py:67 Replication is working m4 -> m1. INFO  tests.tickets.ticket49180_test:ticket49180_test.py:73 Master 4 has been successfully restored. INFO  tests.tickets.ticket49180_test:ticket49180_test.py:106 Errors found on m1: 0 INFO  tests.tickets.ticket49180_test:ticket49180_test.py:111 Errors found on m2: 0 INFO  tests.tickets.ticket49180_test:ticket49180_test.py:116 Errors found on m3: 0
Passed tickets/ticket49184_test.py::test_ticket49184 5.42
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket49184_test:ticket49184_test.py:89 create users and group... INFO  tests.tickets.ticket49184_test:ticket49184_test.py:39 Adding members to the group... INFO  tests.tickets.ticket49184_test:ticket49184_test.py:39 Adding members to the group...
Passed tickets/ticket49227_test.py::test_ticket49227 23.60
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed tickets/ticket49249_test.py::test_ticket49249 0.33
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed tickets/ticket49273_test.py::test_49273_corrupt_dbversion 3.50
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed tickets/ticket49290_test.py::test_49290_range_unindexed_notes 4.50
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
------------------------------Captured stderr call------------------------------
[24/Oct/2020:22:47:34.749458447 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [24/Oct/2020:22:47:34.760458438 -0400] - INFO - bdb_instance_start - Import is running with nsslapd-db-private-import-mem on; No other process is allowed to access the database [24/Oct/2020:22:47:34.764791648 -0400] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7523217408, process usage 22835200 [24/Oct/2020:22:47:34.768927672 -0400] - INFO - check_and_set_import_cache - Import allocates 2938756KB import cache. [24/Oct/2020:22:47:35.041447652 -0400] - INFO - bdb_db2index - userRoot: Indexing attribute: modifytimestamp [24/Oct/2020:22:47:35.045972391 -0400] - ERR - libdb - BDB1566 txn_checkpoint interface requires an environment configured for the transaction subsystem [24/Oct/2020:22:47:35.049454165 -0400] - ERR - bdb_force_checkpoint - Checkpoint FAILED, error Invalid argument (22) [24/Oct/2020:22:47:35.056854799 -0400] - INFO - bdb_db2index - userRoot: Finished indexing. [24/Oct/2020:22:47:35.080648672 -0400] - INFO - bdb_pre_close - All database threads now stopped
Passed tickets/ticket49386_test.py::test_ticket49386 32.76
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
CRITICAL tests.tickets.ticket49386_test:ticket49386_test.py:28 Adding user (cn=user_0,ou=people,dc=example,dc=com): CRITICAL tests.tickets.ticket49386_test:ticket49386_test.py:28 Adding user (cn=user_1,ou=people,dc=example,dc=com): CRITICAL tests.tickets.ticket49386_test:ticket49386_test.py:28 Adding user (cn=user_2,ou=people,dc=example,dc=com): CRITICAL tests.tickets.ticket49386_test:ticket49386_test.py:28 Adding user (cn=user_3,ou=people,dc=example,dc=com): CRITICAL tests.tickets.ticket49386_test:ticket49386_test.py:28 Adding user (cn=user_4,ou=people,dc=example,dc=com): CRITICAL tests.tickets.ticket49386_test:ticket49386_test.py:28 Adding user (cn=user_5,ou=people,dc=example,dc=com): CRITICAL tests.tickets.ticket49386_test:ticket49386_test.py:28 Adding user (cn=user_6,ou=people,dc=example,dc=com): CRITICAL tests.tickets.ticket49386_test:ticket49386_test.py:28 Adding user (cn=user_7,ou=people,dc=example,dc=com): CRITICAL tests.tickets.ticket49386_test:ticket49386_test.py:28 Adding user (cn=user_8,ou=people,dc=example,dc=com): CRITICAL tests.tickets.ticket49386_test:ticket49386_test.py:28 Adding user (cn=user_9,ou=people,dc=example,dc=com): INFO  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' INFO  lib389:ticket49386_test.py:66 !!!!!!! b'cn=group_1,ou=Groups,dc=example,dc=com' INFO  lib389:ticket49386_test.py:67 !!!!!!! cn=group_1,ou=groups,dc=example,dc=com INFO  tests.tickets.ticket49386_test:ticket49386_test.py:130 memberof log found: [24/Oct/2020:22:48:36.930079493 -0400] - DEBUG - memberof-plugin - memberof_postop_modrdn: Skip modrdn operation because src/dst identical cn=group_1,ou=Groups,dc=example,dc=com
Passed tickets/ticket49441_test.py::test_ticket49441 8.33
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket49441_test:ticket49441_test.py:35 Position ldif files, and add indexes... INFO  tests.tickets.ticket49441_test:ticket49441_test.py:52 Import LDIF with large indexed binary attributes... ERROR  lib389:tasks.py:495 Error: import task import_10242020_224906 for file /var/lib/dirsrv/slapd-standalone1/ldifbinary.ldif exited with -23 INFO  tests.tickets.ticket49441_test:ticket49441_test.py:61 Verify server is still running... INFO  tests.tickets.ticket49441_test:ticket49441_test.py:68 Test PASSED
Passed tickets/ticket49460_test.py::test_ticket_49460 13.27
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39003, 'ldap-secureport': 63703, 'server-id': 'master3', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 680b206e-94c9-41a4-af56-9ee520375868 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 89405100-24d6-4823-aff6-754721d597ab / got description=680b206e-94c9-41a4-af56-9ee520375868) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:162 Joining master master3 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 577f1d2a-d66e-48ce-9870-b3e719253df8 / got description=89405100-24d6-4823-aff6-754721d597ab) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 322d755f-b554-463b-add8-a8859d38c6da / got description=577f1d2a-d66e-48ce-9870-b3e719253df8) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master3 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master3 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master2 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created
-------------------------------Captured log call--------------------------------
CRITICAL tests.tickets.ticket49460_test:ticket49460_test.py:26 Adding user (cn=user11,ou=people,dc=example,dc=com): CRITICAL tests.tickets.ticket49460_test:ticket49460_test.py:26 Adding user (cn=user21,ou=people,dc=example,dc=com): CRITICAL 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.03
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
CRITICAL tests.tickets.ticket49471_test:ticket49471_test.py:28 Adding user (cn=user_1,ou=people,dc=example,dc=com):
Passed tickets/ticket49540_test.py::test_ticket49540 19.91
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket49540_test:ticket49540_test.py:28 index homeDirectory INFO  lib389:tasks.py:798 Index task index_attrs_10242020_225421 completed successfully INFO  tests.tickets.ticket49540_test:ticket49540_test.py:62 check_task_status =========> 0 th loop INFO  tests.tickets.ticket49540_test:ticket49540_test.py:71 cn=index_attrs_10242020_225421,cn=index,cn=tasks,cn=config ---> NO STATUS INFO  tests.tickets.ticket49540_test:ticket49540_test.py:83 =========> Great it was expected in the middle of index INFO  tests.tickets.ticket49540_test:ticket49540_test.py:62 check_task_status =========> 1 th loop INFO  tests.tickets.ticket49540_test:ticket49540_test.py:71 cn=index_attrs_10242020_225421,cn=index,cn=tasks,cn=config ---> NO STATUS INFO  tests.tickets.ticket49540_test:ticket49540_test.py:83 =========> Great it was expected in the middle of index INFO  tests.tickets.ticket49540_test:ticket49540_test.py:62 check_task_status =========> 2 th loop INFO  tests.tickets.ticket49540_test:ticket49540_test.py:71 cn=index_attrs_10242020_225421,cn=index,cn=tasks,cn=config ---> NO STATUS INFO  tests.tickets.ticket49540_test:ticket49540_test.py:83 =========> Great it was expected in the middle of index INFO  tests.tickets.ticket49540_test:ticket49540_test.py:62 check_task_status =========> 3 th loop INFO  tests.tickets.ticket49540_test:ticket49540_test.py:71 cn=index_attrs_10242020_225421,cn=index,cn=tasks,cn=config ---> NO STATUS INFO  tests.tickets.ticket49540_test:ticket49540_test.py:83 =========> Great it was expected in the middle of index INFO  tests.tickets.ticket49540_test:ticket49540_test.py:62 check_task_status =========> 4 th loop INFO  tests.tickets.ticket49540_test:ticket49540_test.py:71 cn=index_attrs_10242020_225421,cn=index,cn=tasks,cn=config ---> NO STATUS INFO  tests.tickets.ticket49540_test:ticket49540_test.py:83 =========> Great it was expected in the middle of index INFO  tests.tickets.ticket49540_test:ticket49540_test.py:62 check_task_status =========> 5 th loop INFO  tests.tickets.ticket49540_test:ticket49540_test.py:71 cn=index_attrs_10242020_225421,cn=index,cn=tasks,cn=config ---> NO STATUS INFO  tests.tickets.ticket49540_test:ticket49540_test.py:83 =========> Great it was expected in the middle of index INFO  tests.tickets.ticket49540_test:ticket49540_test.py:62 check_task_status =========> 6 th loop INFO  tests.tickets.ticket49540_test:ticket49540_test.py:68 cn=index_attrs_10242020_225421,cn=index,cn=tasks,cn=config ---> b'userRoot: Finished indexing.' INFO  tests.tickets.ticket49540_test:ticket49540_test.py:62 check_task_status =========> 7 th loop INFO  tests.tickets.ticket49540_test:ticket49540_test.py:68 cn=index_attrs_10242020_225421,cn=index,cn=tasks,cn=config ---> b'userRoot: Finished indexing.' INFO  tests.tickets.ticket49540_test:ticket49540_test.py:62 check_task_status =========> 8 th loop INFO  tests.tickets.ticket49540_test:ticket49540_test.py:68 cn=index_attrs_10242020_225421,cn=index,cn=tasks,cn=config ---> b'userRoot: Finished indexing.' INFO  tests.tickets.ticket49540_test:ticket49540_test.py:62 check_task_status =========> 9 th loop INFO  tests.tickets.ticket49540_test:ticket49540_test.py:68 cn=index_attrs_10242020_225421,cn=index,cn=tasks,cn=config ---> b'userRoot: Finished indexing.'
Passed tickets/ticket49623_2_test.py::test_modrdn_loop 0.07
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology.
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket49623_2_test:ticket49623_2_test.py:64 Check the log messages for cenotaph error
Passed tickets/ticket49658_test.py::test_ticket49658_init 5.56
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39003, 'ldap-secureport': 63703, 'server-id': 'master3', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:148 Creating replication topology. INFO  lib389.topologies:topologies.py:162 Joining master master2 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is NOT working (expect 60540be7-dc97-413a-881b-5490d64510e2 / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect c8dcdc35-a7ad-49b3-8a4e-fa8c975cc5e0 / got description=60540be7-dc97-413a-881b-5490d64510e2) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 INFO  lib389.topologies:topologies.py:162 Joining master master3 to master1 ... INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is NOT working (expect 967072da-0134-425d-b6d8-f29822299f5d / got description=c8dcdc35-a7ad-49b3-8a4e-fa8c975cc5e0) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is working INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is NOT working (expect 9d567622-41ff-4b98-a778-273f61728869 / got description=967072da-0134-425d-b6d8-f29822299f5d) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 is working INFO  lib389.replica:replica.py:2170 SUCCESS: joined master from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master2 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master1 to master3 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master2 to master3 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 is was created INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master1 ... INFO  lib389.replica:replica.py:2355 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 already exists INFO  lib389.topologies:topologies.py:170 Ensuring master master3 to master2 ... INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39003 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39002 is was created
-------------------------------Captured log call--------------------------------
CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=0,ou=distinguished,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=0,ou=distinguished,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=1,ou=distinguished,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=1,ou=distinguished,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=2,ou=distinguished,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=2,ou=distinguished,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=3,ou=distinguished,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=3,ou=distinguished,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=4,ou=distinguished,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=4,ou=distinguished,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=5,ou=distinguished,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=5,ou=distinguished,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=6,ou=distinguished,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=6,ou=distinguished,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=7,ou=distinguished,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=7,ou=distinguished,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=8,ou=distinguished,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=8,ou=distinguished,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=9,ou=distinguished,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=9,ou=distinguished,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=10,ou=distinguished,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=10,ou=distinguished,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=11,ou=distinguished,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=11,ou=distinguished,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=12,ou=distinguished,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=12,ou=distinguished,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=13,ou=distinguished,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=13,ou=distinguished,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=14,ou=distinguished,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=14,ou=distinguished,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=15,ou=distinguished,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=15,ou=distinguished,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=16,ou=distinguished,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=16,ou=distinguished,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=17,ou=distinguished,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=17,ou=distinguished,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=18,ou=distinguished,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=18,ou=distinguished,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:54 Adding user (employeeNumber=19,ou=distinguished,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:151 Adding employeeNumber=19,ou=distinguished,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_0,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_0,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_1,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_1,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_2,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_2,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_3,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_3,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_4,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_4,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_5,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_5,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_6,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_6,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_7,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_7,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_8,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_8,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_9,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_9,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_10,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_10,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_11,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_11,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_12,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_12,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_13,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_13,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_14,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_14,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_15,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_15,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_16,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_16,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_17,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_17,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_18,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_18,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_19,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_19,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_20,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_20,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_21,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_21,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_22,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_22,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_23,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_23,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_24,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_24,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_25,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_25,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_26,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_26,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_27,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_27,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_28,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_28,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_29,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_29,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_30,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_30,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_31,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_31,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_32,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_32,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_33,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_33,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_34,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_34,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_35,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_35,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_36,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_36,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_37,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_37,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_38,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_38,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_39,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_39,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_40,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_40,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_41,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_41,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_42,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_42,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_43,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_43,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_44,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_44,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_45,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_45,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_46,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_46,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_47,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_47,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_48,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_48,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_49,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_49,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_50,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_50,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_51,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_51,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_52,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_52,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_53,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_53,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_54,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_54,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_55,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_55,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_56,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_56,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_57,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_57,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_58,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_58,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_59,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_59,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_60,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_60,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_61,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_61,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_62,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_62,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_63,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_63,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_64,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_64,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_65,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_65,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_66,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_66,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_67,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_67,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_68,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_68,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_69,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_69,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_70,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_70,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_71,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_71,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_72,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_72,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_73,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_73,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_74,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_74,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_75,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_75,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_76,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_76,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_77,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_77,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_78,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_78,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_79,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_79,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_80,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_80,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_81,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_81,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_82,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_82,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_83,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_83,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_84,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_84,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_85,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_85,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_86,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_86,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_87,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_87,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_88,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_88,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_89,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_89,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_90,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_90,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_91,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_91,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_92,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_92,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_93,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_93,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_94,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_94,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_95,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_95,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_96,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_96,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_97,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_97,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_98,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_98,ou=regular,ou=people,dc=example,dc=com on M3 CRITICAL tests.tickets.ticket49658_test:ticket49658_test.py:39 Adding user (uid=user_99,ou=regular,ou=people,dc=example,dc=com): INFO  tests.tickets.ticket49658_test:ticket49658_test.py:159 Adding uid=user_99,ou=regular,ou=people,dc=example,dc=com on M3
Passed tickets/ticket49658_test.py::test_ticket49658_0 33.57
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:289 Search M1 employeeNumber=b'0' (vs. b'0') INFO  tests.tickets.ticket49658_test:ticket49658_test.py:295 Search M2 employeeNumber=b'0' (vs. b'0') INFO  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.68
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:395 Search M1 employeeNumber=b'1' (vs. b'1') INFO  tests.tickets.ticket49658_test:ticket49658_test.py:401 Search M2 employeeNumber=b'1' (vs. b'1') INFO  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.83
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:501 Search M1 employeeNumber=b'2' (vs. b'2') INFO  tests.tickets.ticket49658_test:ticket49658_test.py:507 Search M2 employeeNumber=b'2' (vs. b'2') INFO  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.57
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:607 Search M1 employeeNumber=b'3' (vs. b'3') INFO  tests.tickets.ticket49658_test:ticket49658_test.py:613 Search M2 employeeNumber=b'3' (vs. b'3') INFO  tests.tickets.ticket49658_test:ticket49658_test.py:621 Search M3 employeeNumber=b'3' (vs. b'3')
Passed tickets/ticket49658_test.py::test_ticket49658_4 33.57
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:713 Search M1 employeeNumber=b'4' (vs. b'4') INFO  tests.tickets.ticket49658_test:ticket49658_test.py:719 Search M2 employeeNumber=b'4' (vs. b'4') INFO  tests.tickets.ticket49658_test:ticket49658_test.py:727 Search M3 employeeNumber=b'4' (vs. b'4')
Passed tickets/ticket49658_test.py::test_ticket49658_5 33.72
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:819 Search M1 employeeNumber=b'5' (vs. b'5') INFO  tests.tickets.ticket49658_test:ticket49658_test.py:825 Search M2 employeeNumber=b'5' (vs. b'5') INFO  tests.tickets.ticket49658_test:ticket49658_test.py:833 Search M3 employeeNumber=b'5' (vs. b'5')
Passed tickets/ticket49658_test.py::test_ticket49658_6 33.60
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:934 Search M1 employeeNumber=b'6.2' (vs. 6.2) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:940 Search M2 employeeNumber=b'6.2' (vs. 6.2) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:948 Search M3 employeeNumber=b'6.2' (vs. 6.2)
Passed tickets/ticket49658_test.py::test_ticket49658_7 33.56
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:1042 Search M1 employeeNumber=b'7.2' (vs. 7.2) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:1048 Search M2 employeeNumber=b'7.2' (vs. 7.2) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:1056 Search M3 employeeNumber=b'7.2' (vs. 7.2)
Passed tickets/ticket49658_test.py::test_ticket49658_8 33.64
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:1150 Search M1 employeeNumber=b'8.2' (vs. 8.2) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:1156 Search M2 employeeNumber=b'8.2' (vs. 8.2) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:1164 Search M3 employeeNumber=b'8.2' (vs. 8.2)
Passed tickets/ticket49658_test.py::test_ticket49658_9 33.62
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:1259 Search M1 employeeNumber=b'9.2' (vs. 9.2) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:1265 Search M2 employeeNumber=b'9.2' (vs. 9.2) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:1273 Search M3 employeeNumber=b'9.2' (vs. 9.2)
Passed tickets/ticket49658_test.py::test_ticket49658_10 33.52
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:1369 Search M1 employeeNumber=b'10.2' (vs. 10.2) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:1375 Search M2 employeeNumber=b'10.2' (vs. 10.2) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:1383 Search M3 employeeNumber=b'10.2' (vs. 10.2)
Passed tickets/ticket49658_test.py::test_ticket49658_11 33.57
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:1479 Search M1 employeeNumber=b'11.1' (vs. 11.1) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:1485 Search M2 employeeNumber=b'11.1' (vs. 11.1) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:1493 Search M3 employeeNumber=b'11.1' (vs. 11.1)
Passed tickets/ticket49658_test.py::test_ticket49658_12 33.57
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:1594 Search M1 employeeNumber=b'12.1' (vs. 12.1) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:1600 Search M2 employeeNumber=b'12.1' (vs. 12.1) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:1608 Search M3 employeeNumber=b'12.1' (vs. 12.1)
Passed tickets/ticket49658_test.py::test_ticket49658_13 33.67
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:1709 Search M1 employeeNumber=b'13.1' (vs. 13.1) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:1715 Search M2 employeeNumber=b'13.1' (vs. 13.1) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:1723 Search M3 employeeNumber=b'13.1' (vs. 13.1)
Passed tickets/ticket49658_test.py::test_ticket49658_14 33.57
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:1825 Search M1 employeeNumber=b'14.1' (vs. 14.1) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:1831 Search M2 employeeNumber=b'14.1' (vs. 14.1) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:1839 Search M3 employeeNumber=b'14.1' (vs. 14.1)
Passed tickets/ticket49658_test.py::test_ticket49658_15 33.59
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:1940 Search M1 employeeNumber=b'15.1' (vs. 15.1) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:1946 Search M2 employeeNumber=b'15.1' (vs. 15.1) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:1954 Search M3 employeeNumber=b'15.1' (vs. 15.1)
Passed tickets/ticket49658_test.py::test_ticket49658_16 37.63
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:2076 Search M1 employeeNumber=b'1.1' (vs. 1.1) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:2082 Search M2 employeeNumber=b'1.1' (vs. 1.1) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:2090 Search M3 employeeNumber=b'1.1' (vs. 1.1)
Passed tickets/ticket49658_test.py::test_ticket49658_17 37.61
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:2183 Search M1 employeeNumber=b'2.2' (vs. 2.2) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:2189 Search M2 employeeNumber=b'2.2' (vs. 2.2) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:2197 Search M3 employeeNumber=b'2.2' (vs. 2.2)
Passed tickets/ticket49658_test.py::test_ticket49658_18 37.62
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:2289 Search M1 employeeNumber=b'3.2' (vs. 3.2) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:2295 Search M2 employeeNumber=b'3.2' (vs. 3.2) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:2303 Search M3 employeeNumber=b'3.2' (vs. 3.2)
Passed tickets/ticket49658_test.py::test_ticket49658_19 38.64
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:2405 Search M1 employeeNumber=b'4.1' (vs. 4.1) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:2411 Search M2 employeeNumber=b'4.1' (vs. 4.1) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:2419 Search M3 employeeNumber=b'4.1' (vs. 4.1)
Passed tickets/ticket49658_test.py::test_ticket49658_20 38.63
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:2520 Search M1 employeeNumber=b'5.1' (vs. 5.1) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:2526 Search M2 employeeNumber=b'5.1' (vs. 5.1) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:2534 Search M3 employeeNumber=b'5.1' (vs. 5.1)
Passed tickets/ticket49658_test.py::test_ticket49658_21 38.58
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:2635 Search M1 employeeNumber=b'6.1' (vs. 6.1) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:2641 Search M2 employeeNumber=b'6.1' (vs. 6.1) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:2649 Search M3 employeeNumber=b'6.1' (vs. 6.1)
Passed tickets/ticket49658_test.py::test_ticket49658_22 38.65
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:2750 Search M1 employeeNumber=b'7.1' (vs. 7.1) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:2756 Search M2 employeeNumber=b'7.1' (vs. 7.1) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:2764 Search M3 employeeNumber=b'7.1' (vs. 7.1)
Passed tickets/ticket49658_test.py::test_ticket49658_23 39.68
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:2873 Search M1 employeeNumber=b'8.2' (vs. 8.2) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:2879 Search M2 employeeNumber=b'8.2' (vs. 8.2) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:2887 Search M3 employeeNumber=b'8.2' (vs. 8.2)
Passed tickets/ticket49658_test.py::test_ticket49658_24 39.66
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:2996 Search M1 employeeNumber=b'9.2' (vs. 9.2) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:3002 Search M2 employeeNumber=b'9.2' (vs. 9.2) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:3010 Search M3 employeeNumber=b'9.2' (vs. 9.2)
Passed tickets/ticket49658_test.py::test_ticket49658_25 39.64
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:3119 Search M1 employeeNumber=b'10.2' (vs. 10.2) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:3125 Search M2 employeeNumber=b'10.2' (vs. 10.2) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:3133 Search M3 employeeNumber=b'10.2' (vs. 10.2)
Passed tickets/ticket49658_test.py::test_ticket49658_26 39.60
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:3242 Search M1 employeeNumber=b'11.2' (vs. 11.2) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:3248 Search M2 employeeNumber=b'11.2' (vs. 11.2) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:3256 Search M3 employeeNumber=b'11.2' (vs. 11.2)
Passed tickets/ticket49658_test.py::test_ticket49658_27 39.62
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:3365 Search M1 employeeNumber=b'12.2' (vs. 12.2) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:3371 Search M2 employeeNumber=b'12.2' (vs. 12.2) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:3379 Search M3 employeeNumber=b'12.2' (vs. 12.2)
Passed tickets/ticket49658_test.py::test_ticket49658_28 39.60
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:3488 Search M1 employeeNumber=b'13.2' (vs. 13.2) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:3494 Search M2 employeeNumber=b'13.2' (vs. 13.2) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:3502 Search M3 employeeNumber=b'13.2' (vs. 13.2)
Passed tickets/ticket49658_test.py::test_ticket49658_29 39.65
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:3612 Search M1 employeeNumber=b'14.2' (vs. 14.2) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:3618 Search M2 employeeNumber=b'14.2' (vs. 14.2) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:3626 Search M3 employeeNumber=b'14.2' (vs. 14.2)
Passed tickets/ticket49658_test.py::test_ticket49658_30 39.69
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:3735 Search M1 employeeNumber=b'15.2' (vs. 15.2) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:3741 Search M2 employeeNumber=b'15.2' (vs. 15.2) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:3749 Search M3 employeeNumber=b'15.2' (vs. 15.2)
Passed tickets/ticket49658_test.py::test_ticket49658_31 40.62
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:3866 Search M1 employeeNumber=b'16.1' (vs. 16.1) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:3872 Search M2 employeeNumber=b'16.1' (vs. 16.1) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:3880 Search M3 employeeNumber=b'16.1' (vs. 16.1)
Passed tickets/ticket49658_test.py::test_ticket49658_32 40.62
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:3998 Search M1 employeeNumber=b'17.1' (vs. 17.1) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:4004 Search M2 employeeNumber=b'17.1' (vs. 17.1) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:4012 Search M3 employeeNumber=b'17.1' (vs. 17.1)
Passed tickets/ticket49658_test.py::test_ticket49658_33 40.66
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:4122 Search M1 employeeNumber=b'18.1' (vs. 18.1) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:4128 Search M2 employeeNumber=b'18.1' (vs. 18.1) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:4136 Search M3 employeeNumber=b'18.1' (vs. 18.1)
Passed tickets/ticket49658_test.py::test_ticket49658_34 40.51
-------------------------------Captured log call--------------------------------
INFO  lib389:agreement.py:1194 Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1194 Pausing replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=001,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  lib389:agreement.py:1220 Resuming replication cn=003,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config INFO  tests.tickets.ticket49658_test:ticket49658_test.py:4246 Search M1 employeeNumber=b'19.1' (vs. 19.1) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:4252 Search M2 employeeNumber=b'19.1' (vs. 19.1) INFO  tests.tickets.ticket49658_test:ticket49658_test.py:4260 Search M3 employeeNumber=b'19.1' (vs. 19.1)
Passed tickets/ticket49788_test.py::test_ticket49781 0.61
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed tickets/ticket50078_test.py::test_ticket50078 4.36
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39101, 'ldap-secureport': 63801, 'server-id': 'hub1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 39201, 'ldap-secureport': 63901, 'server-id': 'consumer1', 'suffix': 'dc=example,dc=com'} was created. INFO  lib389.topologies:topologies.py:515 Creating replication topology. INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39101 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39101 is was created INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39101 is NOT working (expect 10425340-cebf-4cc7-990e-84dc7ca6a02e / got description=None) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39101 is working INFO  lib389.replica:replica.py:2228 SUCCESS: joined consumer from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39101 INFO  lib389.replica:replica.py:2101 SUCCESS: bootstrap to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 completed INFO  lib389.replica:replica.py:2382 SUCCESS: Agreement from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39101 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is was created INFO  lib389.replica:replica.py:2285 SUCCESS: joined consumer from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39101 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 INFO  lib389.replica:replica.py:2515 Retry: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is NOT working (expect 8022cd9e-4376-49b1-aea6-0497249ace9b / got description=10425340-cebf-4cc7-990e-84dc7ca6a02e) INFO  lib389.replica:replica.py:2513 SUCCESS: Replication from ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39001 to ldap://ci-vm-10-0-138-103.hosted.upshift.rdu2.redhat.com:39201 is working
-------------------------------Captured log call--------------------------------
INFO  tests.tickets.ticket50078_test:ticket50078_test.py:31 Replication is working. INFO  tests.tickets.ticket50078_test:ticket50078_test.py:47 Rename the test entry test_user1... INFO  tests.tickets.ticket50078_test:ticket50078_test.py:52 Replication is working.
Passed tickets/ticket50234_test.py::test_ticket50234 0.64
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed tickets/ticket548_test.py::test_ticket548_test_with_no_policy 0.09
-------------------------------Captured log setup-------------------------------
INFO  lib389.topologies:topologies.py:115 Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.
Passed tickets/ticket548_test.py::test_ticket548_test_global_policy 1.82
No log output captured.
Passed tickets/ticket548_test.py::test_ticket548_test_subtree_policy 3.31
No log output captured.