Report generated on 23-Sep-2018 at 21:45:37 by pytest-html v1.19.0
389-ds-base | 1.4.0.16-20180923gitefa39cb.fc28 |
Packages | {'pytest': '3.8.1', 'py': '1.6.0', 'pluggy': '0.7.1'} |
Platform | Linux-4.17.19-200.fc28.x86_64-x86_64-with-fedora-28-Twenty_Eight |
Plugins | {'metadata': '1.7.0', 'html': '1.19.0'} |
Python | 3.6.6 |
cyrus-sasl | 2.1.27-0.2rc7.fc28 |
nspr | 4.20.0-1.fc28 |
nss | 3.39.0-1.0.fc28 |
openldap | 2.4.46-3.fc28 |
801 tests ran in 8652.70 seconds.
(Un)check the boxes to filter the results.
732 passed, 2 skipped, 49 failed, 5 errors, 14 expected failures, 6 unexpected passesResult | Test | Duration | Links |
---|---|---|---|
No results found. Try to check the filters | |||
Error | suites/gssapi/simple_gssapi_test.py::test_gssapi_bind::setup | 3.92 | |
request = <SubRequest 'topology_st_gssapi' for <Function 'test_gssapi_bind'>> @pytest.fixture(scope="module") def topology_st_gssapi(request): """Create a DS standalone instance with GSSAPI enabled. This will alter the instance to remove the secure port, to allow GSSAPI to function. """ hostname = socket.gethostname().split('.', 1) # Assert we have a domain setup in some kind. assert len(hostname) == 2 REALM = hostname[1].upper() topology = create_topology({ReplicaRole.STANDALONE: 1}) # Fix the hostname. topology.standalone.host = socket.gethostname() krb = MitKrb5(realm=REALM, debug=DEBUGGING) # Destroy existing realm. > if krb.check_realm(): /usr/lib/python3.6/site-packages/lib389/topologies.py:278: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.6/site-packages/lib389/mit_krb5.py:67: in check_realm env=self.krb_env, stdout=PIPE, stderr=PIPE) /usr/lib64/python3.6/subprocess.py:709: in __init__ restore_signals, start_new_session) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <subprocess.Popen object at 0x7f3dfc4b7e80> args = ['/usr/sbin/kadmin.local', '-r', 'EXAMPLE.COM', '-q', 'list_principals'] executable = b'/usr/sbin/kadmin.local', preexec_fn = None, close_fds = True pass_fds = (), cwd = None, env = {}, startupinfo = None, creationflags = 0 shell = False, p2cread = -1, p2cwrite = -1, c2pread = 10, c2pwrite = 11 errread = 12, errwrite = 13, restore_signals = True, start_new_session = False def _execute_child(self, args, executable, preexec_fn, close_fds, pass_fds, cwd, env, startupinfo, creationflags, shell, p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite, restore_signals, start_new_session): """Execute program (POSIX version)""" if isinstance(args, (str, bytes)): args = [args] else: args = list(args) if shell: args = ["/bin/sh", "-c"] + args if executable: args[0] = executable if executable is None: executable = args[0] orig_executable = executable # For transferring possible exec failure from child to parent. # Data format: "exception name:hex errno:description" # Pickle is not used; it is complex and involves memory allocation. errpipe_read, errpipe_write = os.pipe() # errpipe_write must not be in the standard io 0, 1, or 2 fd range. low_fds_to_close = [] while errpipe_write < 3: low_fds_to_close.append(errpipe_write) errpipe_write = os.dup(errpipe_write) for low_fd in low_fds_to_close: os.close(low_fd) try: try: # We must avoid complex work that could involve # malloc or free in the child process to avoid # potential deadlocks, thus we do all this here. # and pass it to fork_exec() if env is not None: env_list = [] for k, v in env.items(): k = os.fsencode(k) if b'=' in k: raise ValueError("illegal environment variable name") env_list.append(k + b'=' + os.fsencode(v)) else: env_list = None # Use execv instead of execve. executable = os.fsencode(executable) if os.path.dirname(executable): executable_list = (executable,) else: # This matches the behavior of os._execvpe(). executable_list = tuple( os.path.join(os.fsencode(dir), executable) for dir in os.get_exec_path(env)) fds_to_keep = set(pass_fds) fds_to_keep.add(errpipe_write) self.pid = _posixsubprocess.fork_exec( args, executable_list, close_fds, tuple(sorted(map(int, fds_to_keep))), cwd, env_list, p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite, errpipe_read, errpipe_write, restore_signals, start_new_session, preexec_fn) self._child_created = True finally: # be sure the FD is closed no matter what os.close(errpipe_write) # self._devnull is not always defined. devnull_fd = getattr(self, '_devnull', None) if p2cread != -1 and p2cwrite != -1 and p2cread != devnull_fd: os.close(p2cread) if c2pwrite != -1 and c2pread != -1 and c2pwrite != devnull_fd: os.close(c2pwrite) if errwrite != -1 and errread != -1 and errwrite != devnull_fd: os.close(errwrite) if devnull_fd is not None: os.close(devnull_fd) # Prevent a double close of these fds from __init__ on error. self._closed_child_pipe_fds = True # Wait for exec to fail or succeed; possibly raising an # exception (limited in size) errpipe_data = bytearray() while True: part = os.read(errpipe_read, 50000) errpipe_data += part if not part or len(errpipe_data) > 50000: break finally: # be sure the FD is closed no matter what os.close(errpipe_read) if errpipe_data: try: pid, sts = os.waitpid(self.pid, 0) if pid == self.pid: self._handle_exitstatus(sts) else: self.returncode = sys.maxsize except ChildProcessError: pass try: exception_name, hex_errno, err_msg = ( errpipe_data.split(b':', 2)) # The encoding here should match the encoding # written in by the subprocess implementations # like _posixsubprocess err_msg = err_msg.decode() except ValueError: exception_name = b'SubprocessError' hex_errno = b'0' err_msg = 'Bad exception data from child: {!r}'.format( bytes(errpipe_data)) child_exception_type = getattr( builtins, exception_name.decode('ascii'), SubprocessError) if issubclass(child_exception_type, OSError) and hex_errno: errno_num = int(hex_errno, 16) child_exec_never_called = (err_msg == "noexec") if child_exec_never_called: err_msg = "" # The error must be from chdir(cwd). err_filename = cwd else: err_filename = orig_executable if errno_num != 0: err_msg = os.strerror(errno_num) if errno_num == errno.ENOENT: err_msg += ': ' + repr(err_filename) > raise child_exception_type(errno_num, err_msg, err_filename) E FileNotFoundError: [Errno 2] No such file or directory: '/usr/sbin/kadmin.local': '/usr/sbin/kadmin.local' /usr/lib64/python3.6/subprocess.py:1344: FileNotFoundError ---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Error | suites/gssapi/simple_gssapi_test.py::test_invalid_sasl_map::setup | 0.00 | |
tp = <class 'FileNotFoundError'>, value = None, tb = None def reraise(tp, value, tb=None): try: if value is None: value = tp() if value.__traceback__ is not tb: > raise value.with_traceback(tb) /usr/lib/python3.6/site-packages/six.py:692: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.6/site-packages/lib389/topologies.py:278: in topology_st_gssapi if krb.check_realm(): /usr/lib/python3.6/site-packages/lib389/mit_krb5.py:67: in check_realm env=self.krb_env, stdout=PIPE, stderr=PIPE) /usr/lib64/python3.6/subprocess.py:709: in __init__ restore_signals, start_new_session) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <subprocess.Popen object at 0x7f3dfc4b7e80> args = ['/usr/sbin/kadmin.local', '-r', 'EXAMPLE.COM', '-q', 'list_principals'] executable = b'/usr/sbin/kadmin.local', preexec_fn = None, close_fds = True pass_fds = (), cwd = None, env = {}, startupinfo = None, creationflags = 0 shell = False, p2cread = -1, p2cwrite = -1, c2pread = 10, c2pwrite = 11 errread = 12, errwrite = 13, restore_signals = True, start_new_session = False def _execute_child(self, args, executable, preexec_fn, close_fds, pass_fds, cwd, env, startupinfo, creationflags, shell, p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite, restore_signals, start_new_session): """Execute program (POSIX version)""" if isinstance(args, (str, bytes)): args = [args] else: args = list(args) if shell: args = ["/bin/sh", "-c"] + args if executable: args[0] = executable if executable is None: executable = args[0] orig_executable = executable # For transferring possible exec failure from child to parent. # Data format: "exception name:hex errno:description" # Pickle is not used; it is complex and involves memory allocation. errpipe_read, errpipe_write = os.pipe() # errpipe_write must not be in the standard io 0, 1, or 2 fd range. low_fds_to_close = [] while errpipe_write < 3: low_fds_to_close.append(errpipe_write) errpipe_write = os.dup(errpipe_write) for low_fd in low_fds_to_close: os.close(low_fd) try: try: # We must avoid complex work that could involve # malloc or free in the child process to avoid # potential deadlocks, thus we do all this here. # and pass it to fork_exec() if env is not None: env_list = [] for k, v in env.items(): k = os.fsencode(k) if b'=' in k: raise ValueError("illegal environment variable name") env_list.append(k + b'=' + os.fsencode(v)) else: env_list = None # Use execv instead of execve. executable = os.fsencode(executable) if os.path.dirname(executable): executable_list = (executable,) else: # This matches the behavior of os._execvpe(). executable_list = tuple( os.path.join(os.fsencode(dir), executable) for dir in os.get_exec_path(env)) fds_to_keep = set(pass_fds) fds_to_keep.add(errpipe_write) self.pid = _posixsubprocess.fork_exec( args, executable_list, close_fds, tuple(sorted(map(int, fds_to_keep))), cwd, env_list, p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite, errpipe_read, errpipe_write, restore_signals, start_new_session, preexec_fn) self._child_created = True finally: # be sure the FD is closed no matter what os.close(errpipe_write) # self._devnull is not always defined. devnull_fd = getattr(self, '_devnull', None) if p2cread != -1 and p2cwrite != -1 and p2cread != devnull_fd: os.close(p2cread) if c2pwrite != -1 and c2pread != -1 and c2pwrite != devnull_fd: os.close(c2pwrite) if errwrite != -1 and errread != -1 and errwrite != devnull_fd: os.close(errwrite) if devnull_fd is not None: os.close(devnull_fd) # Prevent a double close of these fds from __init__ on error. self._closed_child_pipe_fds = True # Wait for exec to fail or succeed; possibly raising an # exception (limited in size) errpipe_data = bytearray() while True: part = os.read(errpipe_read, 50000) errpipe_data += part if not part or len(errpipe_data) > 50000: break finally: # be sure the FD is closed no matter what os.close(errpipe_read) if errpipe_data: try: pid, sts = os.waitpid(self.pid, 0) if pid == self.pid: self._handle_exitstatus(sts) else: self.returncode = sys.maxsize except ChildProcessError: pass try: exception_name, hex_errno, err_msg = ( errpipe_data.split(b':', 2)) # The encoding here should match the encoding # written in by the subprocess implementations # like _posixsubprocess err_msg = err_msg.decode() except ValueError: exception_name = b'SubprocessError' hex_errno = b'0' err_msg = 'Bad exception data from child: {!r}'.format( bytes(errpipe_data)) child_exception_type = getattr( builtins, exception_name.decode('ascii'), SubprocessError) if issubclass(child_exception_type, OSError) and hex_errno: errno_num = int(hex_errno, 16) child_exec_never_called = (err_msg == "noexec") if child_exec_never_called: err_msg = "" # The error must be from chdir(cwd). err_filename = cwd else: err_filename = orig_executable if errno_num != 0: err_msg = os.strerror(errno_num) if errno_num == errno.ENOENT: err_msg += ': ' + repr(err_filename) > raise child_exception_type(errno_num, err_msg, err_filename) E FileNotFoundError: [Errno 2] No such file or directory: '/usr/sbin/kadmin.local': '/usr/sbin/kadmin.local' /usr/lib64/python3.6/subprocess.py:1344: FileNotFoundError | |||
Error | suites/gssapi/simple_gssapi_test.py::test_missing_user::setup | 0.00 | |
tp = <class 'FileNotFoundError'>, value = None, tb = None def reraise(tp, value, tb=None): try: if value is None: value = tp() if value.__traceback__ is not tb: > raise value.with_traceback(tb) /usr/lib/python3.6/site-packages/six.py:692: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.6/site-packages/lib389/topologies.py:278: in topology_st_gssapi if krb.check_realm(): /usr/lib/python3.6/site-packages/lib389/mit_krb5.py:67: in check_realm env=self.krb_env, stdout=PIPE, stderr=PIPE) /usr/lib64/python3.6/subprocess.py:709: in __init__ restore_signals, start_new_session) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <subprocess.Popen object at 0x7f3dfc4b7e80> args = ['/usr/sbin/kadmin.local', '-r', 'EXAMPLE.COM', '-q', 'list_principals'] executable = b'/usr/sbin/kadmin.local', preexec_fn = None, close_fds = True pass_fds = (), cwd = None, env = {}, startupinfo = None, creationflags = 0 shell = False, p2cread = -1, p2cwrite = -1, c2pread = 10, c2pwrite = 11 errread = 12, errwrite = 13, restore_signals = True, start_new_session = False def _execute_child(self, args, executable, preexec_fn, close_fds, pass_fds, cwd, env, startupinfo, creationflags, shell, p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite, restore_signals, start_new_session): """Execute program (POSIX version)""" if isinstance(args, (str, bytes)): args = [args] else: args = list(args) if shell: args = ["/bin/sh", "-c"] + args if executable: args[0] = executable if executable is None: executable = args[0] orig_executable = executable # For transferring possible exec failure from child to parent. # Data format: "exception name:hex errno:description" # Pickle is not used; it is complex and involves memory allocation. errpipe_read, errpipe_write = os.pipe() # errpipe_write must not be in the standard io 0, 1, or 2 fd range. low_fds_to_close = [] while errpipe_write < 3: low_fds_to_close.append(errpipe_write) errpipe_write = os.dup(errpipe_write) for low_fd in low_fds_to_close: os.close(low_fd) try: try: # We must avoid complex work that could involve # malloc or free in the child process to avoid # potential deadlocks, thus we do all this here. # and pass it to fork_exec() if env is not None: env_list = [] for k, v in env.items(): k = os.fsencode(k) if b'=' in k: raise ValueError("illegal environment variable name") env_list.append(k + b'=' + os.fsencode(v)) else: env_list = None # Use execv instead of execve. executable = os.fsencode(executable) if os.path.dirname(executable): executable_list = (executable,) else: # This matches the behavior of os._execvpe(). executable_list = tuple( os.path.join(os.fsencode(dir), executable) for dir in os.get_exec_path(env)) fds_to_keep = set(pass_fds) fds_to_keep.add(errpipe_write) self.pid = _posixsubprocess.fork_exec( args, executable_list, close_fds, tuple(sorted(map(int, fds_to_keep))), cwd, env_list, p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite, errpipe_read, errpipe_write, restore_signals, start_new_session, preexec_fn) self._child_created = True finally: # be sure the FD is closed no matter what os.close(errpipe_write) # self._devnull is not always defined. devnull_fd = getattr(self, '_devnull', None) if p2cread != -1 and p2cwrite != -1 and p2cread != devnull_fd: os.close(p2cread) if c2pwrite != -1 and c2pread != -1 and c2pwrite != devnull_fd: os.close(c2pwrite) if errwrite != -1 and errread != -1 and errwrite != devnull_fd: os.close(errwrite) if devnull_fd is not None: os.close(devnull_fd) # Prevent a double close of these fds from __init__ on error. self._closed_child_pipe_fds = True # Wait for exec to fail or succeed; possibly raising an # exception (limited in size) errpipe_data = bytearray() while True: part = os.read(errpipe_read, 50000) errpipe_data += part if not part or len(errpipe_data) > 50000: break finally: # be sure the FD is closed no matter what os.close(errpipe_read) if errpipe_data: try: pid, sts = os.waitpid(self.pid, 0) if pid == self.pid: self._handle_exitstatus(sts) else: self.returncode = sys.maxsize except ChildProcessError: pass try: exception_name, hex_errno, err_msg = ( errpipe_data.split(b':', 2)) # The encoding here should match the encoding # written in by the subprocess implementations # like _posixsubprocess err_msg = err_msg.decode() except ValueError: exception_name = b'SubprocessError' hex_errno = b'0' err_msg = 'Bad exception data from child: {!r}'.format( bytes(errpipe_data)) child_exception_type = getattr( builtins, exception_name.decode('ascii'), SubprocessError) if issubclass(child_exception_type, OSError) and hex_errno: errno_num = int(hex_errno, 16) child_exec_never_called = (err_msg == "noexec") if child_exec_never_called: err_msg = "" # The error must be from chdir(cwd). err_filename = cwd else: err_filename = orig_executable if errno_num != 0: err_msg = os.strerror(errno_num) if errno_num == errno.ENOENT: err_msg += ': ' + repr(err_filename) > raise child_exception_type(errno_num, err_msg, err_filename) E FileNotFoundError: [Errno 2] No such file or directory: '/usr/sbin/kadmin.local': '/usr/sbin/kadmin.local' /usr/lib64/python3.6/subprocess.py:1344: FileNotFoundError | |||
Error | suites/gssapi/simple_gssapi_test.py::test_support_mech::setup | 0.00 | |
tp = <class 'FileNotFoundError'>, value = None, tb = None def reraise(tp, value, tb=None): try: if value is None: value = tp() if value.__traceback__ is not tb: > raise value.with_traceback(tb) /usr/lib/python3.6/site-packages/six.py:692: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.6/site-packages/lib389/topologies.py:278: in topology_st_gssapi if krb.check_realm(): /usr/lib/python3.6/site-packages/lib389/mit_krb5.py:67: in check_realm env=self.krb_env, stdout=PIPE, stderr=PIPE) /usr/lib64/python3.6/subprocess.py:709: in __init__ restore_signals, start_new_session) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <subprocess.Popen object at 0x7f3dfc4b7e80> args = ['/usr/sbin/kadmin.local', '-r', 'EXAMPLE.COM', '-q', 'list_principals'] executable = b'/usr/sbin/kadmin.local', preexec_fn = None, close_fds = True pass_fds = (), cwd = None, env = {}, startupinfo = None, creationflags = 0 shell = False, p2cread = -1, p2cwrite = -1, c2pread = 10, c2pwrite = 11 errread = 12, errwrite = 13, restore_signals = True, start_new_session = False def _execute_child(self, args, executable, preexec_fn, close_fds, pass_fds, cwd, env, startupinfo, creationflags, shell, p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite, restore_signals, start_new_session): """Execute program (POSIX version)""" if isinstance(args, (str, bytes)): args = [args] else: args = list(args) if shell: args = ["/bin/sh", "-c"] + args if executable: args[0] = executable if executable is None: executable = args[0] orig_executable = executable # For transferring possible exec failure from child to parent. # Data format: "exception name:hex errno:description" # Pickle is not used; it is complex and involves memory allocation. errpipe_read, errpipe_write = os.pipe() # errpipe_write must not be in the standard io 0, 1, or 2 fd range. low_fds_to_close = [] while errpipe_write < 3: low_fds_to_close.append(errpipe_write) errpipe_write = os.dup(errpipe_write) for low_fd in low_fds_to_close: os.close(low_fd) try: try: # We must avoid complex work that could involve # malloc or free in the child process to avoid # potential deadlocks, thus we do all this here. # and pass it to fork_exec() if env is not None: env_list = [] for k, v in env.items(): k = os.fsencode(k) if b'=' in k: raise ValueError("illegal environment variable name") env_list.append(k + b'=' + os.fsencode(v)) else: env_list = None # Use execv instead of execve. executable = os.fsencode(executable) if os.path.dirname(executable): executable_list = (executable,) else: # This matches the behavior of os._execvpe(). executable_list = tuple( os.path.join(os.fsencode(dir), executable) for dir in os.get_exec_path(env)) fds_to_keep = set(pass_fds) fds_to_keep.add(errpipe_write) self.pid = _posixsubprocess.fork_exec( args, executable_list, close_fds, tuple(sorted(map(int, fds_to_keep))), cwd, env_list, p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite, errpipe_read, errpipe_write, restore_signals, start_new_session, preexec_fn) self._child_created = True finally: # be sure the FD is closed no matter what os.close(errpipe_write) # self._devnull is not always defined. devnull_fd = getattr(self, '_devnull', None) if p2cread != -1 and p2cwrite != -1 and p2cread != devnull_fd: os.close(p2cread) if c2pwrite != -1 and c2pread != -1 and c2pwrite != devnull_fd: os.close(c2pwrite) if errwrite != -1 and errread != -1 and errwrite != devnull_fd: os.close(errwrite) if devnull_fd is not None: os.close(devnull_fd) # Prevent a double close of these fds from __init__ on error. self._closed_child_pipe_fds = True # Wait for exec to fail or succeed; possibly raising an # exception (limited in size) errpipe_data = bytearray() while True: part = os.read(errpipe_read, 50000) errpipe_data += part if not part or len(errpipe_data) > 50000: break finally: # be sure the FD is closed no matter what os.close(errpipe_read) if errpipe_data: try: pid, sts = os.waitpid(self.pid, 0) if pid == self.pid: self._handle_exitstatus(sts) else: self.returncode = sys.maxsize except ChildProcessError: pass try: exception_name, hex_errno, err_msg = ( errpipe_data.split(b':', 2)) # The encoding here should match the encoding # written in by the subprocess implementations # like _posixsubprocess err_msg = err_msg.decode() except ValueError: exception_name = b'SubprocessError' hex_errno = b'0' err_msg = 'Bad exception data from child: {!r}'.format( bytes(errpipe_data)) child_exception_type = getattr( builtins, exception_name.decode('ascii'), SubprocessError) if issubclass(child_exception_type, OSError) and hex_errno: errno_num = int(hex_errno, 16) child_exec_never_called = (err_msg == "noexec") if child_exec_never_called: err_msg = "" # The error must be from chdir(cwd). err_filename = cwd else: err_filename = orig_executable if errno_num != 0: err_msg = os.strerror(errno_num) if errno_num == errno.ENOENT: err_msg += ': ' + repr(err_filename) > raise child_exception_type(errno_num, err_msg, err_filename) E FileNotFoundError: [Errno 2] No such file or directory: '/usr/sbin/kadmin.local': '/usr/sbin/kadmin.local' /usr/lib64/python3.6/subprocess.py:1344: FileNotFoundError | |||
Error | suites/gssapi/simple_gssapi_test.py::test_rejected_mech::setup | 0.00 | |
tp = <class 'FileNotFoundError'>, value = None, tb = None def reraise(tp, value, tb=None): try: if value is None: value = tp() if value.__traceback__ is not tb: > raise value.with_traceback(tb) /usr/lib/python3.6/site-packages/six.py:692: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.6/site-packages/lib389/topologies.py:278: in topology_st_gssapi if krb.check_realm(): /usr/lib/python3.6/site-packages/lib389/mit_krb5.py:67: in check_realm env=self.krb_env, stdout=PIPE, stderr=PIPE) /usr/lib64/python3.6/subprocess.py:709: in __init__ restore_signals, start_new_session) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <subprocess.Popen object at 0x7f3dfc4b7e80> args = ['/usr/sbin/kadmin.local', '-r', 'EXAMPLE.COM', '-q', 'list_principals'] executable = b'/usr/sbin/kadmin.local', preexec_fn = None, close_fds = True pass_fds = (), cwd = None, env = {}, startupinfo = None, creationflags = 0 shell = False, p2cread = -1, p2cwrite = -1, c2pread = 10, c2pwrite = 11 errread = 12, errwrite = 13, restore_signals = True, start_new_session = False def _execute_child(self, args, executable, preexec_fn, close_fds, pass_fds, cwd, env, startupinfo, creationflags, shell, p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite, restore_signals, start_new_session): """Execute program (POSIX version)""" if isinstance(args, (str, bytes)): args = [args] else: args = list(args) if shell: args = ["/bin/sh", "-c"] + args if executable: args[0] = executable if executable is None: executable = args[0] orig_executable = executable # For transferring possible exec failure from child to parent. # Data format: "exception name:hex errno:description" # Pickle is not used; it is complex and involves memory allocation. errpipe_read, errpipe_write = os.pipe() # errpipe_write must not be in the standard io 0, 1, or 2 fd range. low_fds_to_close = [] while errpipe_write < 3: low_fds_to_close.append(errpipe_write) errpipe_write = os.dup(errpipe_write) for low_fd in low_fds_to_close: os.close(low_fd) try: try: # We must avoid complex work that could involve # malloc or free in the child process to avoid # potential deadlocks, thus we do all this here. # and pass it to fork_exec() if env is not None: env_list = [] for k, v in env.items(): k = os.fsencode(k) if b'=' in k: raise ValueError("illegal environment variable name") env_list.append(k + b'=' + os.fsencode(v)) else: env_list = None # Use execv instead of execve. executable = os.fsencode(executable) if os.path.dirname(executable): executable_list = (executable,) else: # This matches the behavior of os._execvpe(). executable_list = tuple( os.path.join(os.fsencode(dir), executable) for dir in os.get_exec_path(env)) fds_to_keep = set(pass_fds) fds_to_keep.add(errpipe_write) self.pid = _posixsubprocess.fork_exec( args, executable_list, close_fds, tuple(sorted(map(int, fds_to_keep))), cwd, env_list, p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite, errpipe_read, errpipe_write, restore_signals, start_new_session, preexec_fn) self._child_created = True finally: # be sure the FD is closed no matter what os.close(errpipe_write) # self._devnull is not always defined. devnull_fd = getattr(self, '_devnull', None) if p2cread != -1 and p2cwrite != -1 and p2cread != devnull_fd: os.close(p2cread) if c2pwrite != -1 and c2pread != -1 and c2pwrite != devnull_fd: os.close(c2pwrite) if errwrite != -1 and errread != -1 and errwrite != devnull_fd: os.close(errwrite) if devnull_fd is not None: os.close(devnull_fd) # Prevent a double close of these fds from __init__ on error. self._closed_child_pipe_fds = True # Wait for exec to fail or succeed; possibly raising an # exception (limited in size) errpipe_data = bytearray() while True: part = os.read(errpipe_read, 50000) errpipe_data += part if not part or len(errpipe_data) > 50000: break finally: # be sure the FD is closed no matter what os.close(errpipe_read) if errpipe_data: try: pid, sts = os.waitpid(self.pid, 0) if pid == self.pid: self._handle_exitstatus(sts) else: self.returncode = sys.maxsize except ChildProcessError: pass try: exception_name, hex_errno, err_msg = ( errpipe_data.split(b':', 2)) # The encoding here should match the encoding # written in by the subprocess implementations # like _posixsubprocess err_msg = err_msg.decode() except ValueError: exception_name = b'SubprocessError' hex_errno = b'0' err_msg = 'Bad exception data from child: {!r}'.format( bytes(errpipe_data)) child_exception_type = getattr( builtins, exception_name.decode('ascii'), SubprocessError) if issubclass(child_exception_type, OSError) and hex_errno: errno_num = int(hex_errno, 16) child_exec_never_called = (err_msg == "noexec") if child_exec_never_called: err_msg = "" # The error must be from chdir(cwd). err_filename = cwd else: err_filename = orig_executable if errno_num != 0: err_msg = os.strerror(errno_num) if errno_num == errno.ENOENT: err_msg += ': ' + repr(err_filename) > raise child_exception_type(errno_num, err_msg, err_filename) E FileNotFoundError: [Errno 2] No such file or directory: '/usr/sbin/kadmin.local': '/usr/sbin/kadmin.local' /usr/lib64/python3.6/subprocess.py:1344: FileNotFoundError | |||
Failed | suites/ds_tools/replcheck_test.py::test_inconsistencies | 1.02 | |
topo_tls_ldapi = <lib389.topologies.TopologyMain object at 0x7f3dfc9cd8d0> def test_inconsistencies(topo_tls_ldapi): """Check that the report mentions inconsistencies with attributes :id: c8fe3e84-b346-4969-8f5d-3462b643a1d2 :setup: Two master replication :steps: 1. Add an entry to master and wait for replication 2. Pause replication between master and replica 3. Set different description attr values to master and replica 4. Add telephoneNumber attribute to master and not to replica 5. Generate the report 6. Check that attribute values are mentioned in the report 7. Generate the report with -i option to ignore some attributes 8. Check that attribute values are mentioned in the report :expectedresults: 1. It should be successful 2. It should be successful 3. It should be successful 4. It should be successful 5. It should be successful 6. The attribute values should be mentioned in the report 7. It should be successful 8. The attribute values should not be mentioned in the report """ m1 = topo_tls_ldapi.ms["master1"] m2 = topo_tls_ldapi.ms["master2"] attr_m1 = "m1_inconsistency" attr_m2 = "m2_inconsistency" attr_m1_only = "123123123" try: users_m1 = UserAccounts(m1, DEFAULT_SUFFIX) users_m2 = UserAccounts(m2, DEFAULT_SUFFIX) user_m1 = users_m1.create(properties=TEST_USER_PROPERTIES) time.sleep(1) > user_m2 = users_m2.get(user_m1.rdn) suites/ds_tools/replcheck_test.py:327: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.idm.user.UserAccounts object at 0x7f3dfc136438> selector = 'testuser', dn = None, json = False def get(self, selector=[], dn=None, json=False): """Get a child entry (DSLdapObject, Replica, etc.) with dn or selector using a base DN and objectClasses of our object (DSLdapObjects, Replicas, etc.) Note that * is not a valid selector, you should use "list()" instead. :param dn: DN of wanted entry :type dn: str :param selector: An additional filter to search for, i.e. 'backend_name'. The attributes selected are based on object type, ie user will search for uid and cn. :type dn: str :returns: A child entry """ results = [] if dn is not None: results = self._get_dn(dn) else: results = self._get_selector(selector) if len(results) == 0: > raise ldap.NO_SUCH_OBJECT("No object exists given the filter criteria %s" % selector) E ldap.NO_SUCH_OBJECT: No object exists given the filter criteria testuser /usr/lib/python3.6/site-packages/lib389/_mapped_object.py:905: NO_SUCH_OBJECT | |||
Failed | suites/paged_results/paged_results_test.py::test_search_dns_ip_aci[ip = "10.8.243.217"] | 3.01 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f3df84f75f8> create_user = <lib389.idm.user.UserAccount object at 0x7f3df84f7208> aci_subject = 'ip = "10.8.243.217"' @pytest.mark.parametrize('aci_subject', ('dns = "{}"'.format(HOSTNAME), 'ip = "{}"'.format(IP_ADDRESS))) def test_search_dns_ip_aci(topology_st, create_user, aci_subject): """Verify that after performing multiple simple paged searches to completion on the suffix with DNS or IP based ACI :id: bbfddc46-a8c8-49ae-8c90-7265d05b22a9 :setup: Standalone instance, test user for binding, varying number of users for the search base :steps: 1. Back up and remove all previous ACI from suffix 2. Add an anonymous ACI for DNS check 3. Bind as test user 4. Search through added users with a simple paged control 5. Perform steps 4 three times in a row 6. Return ACI to the initial state 7. Go through all steps once again, but use IP subject dn instead of DNS :expectedresults: 1. Operation should be successful 2. Anonymous ACI should be successfully added 3. Bind should be successful 4. No error happens, all users should be found and sorted 5. Results should remain the same 6. ACI should be successfully returned 7. Results should be the same with ACI with IP subject dn """ users_num = 100 page_size = 5 users_list = add_users(topology_st, users_num, DEFAULT_SUFFIX) search_flt = r'(uid=test*)' searchreq_attrlist = ['dn', 'sn'] try: log.info('Back up current suffix ACI') acis_bck = topology_st.standalone.aci.list(DEFAULT_SUFFIX, ldap.SCOPE_BASE) log.info('Add test ACI') ACI_TARGET = '(targetattr != "userPassword")' ACI_ALLOW = '(version 3.0;acl "Anonymous access within domain"; allow (read,compare,search)' ACI_SUBJECT = '(userdn = "ldap:///anyone") and (%s);)' % aci_subject ACI_BODY = ensure_bytes(ACI_TARGET + ACI_ALLOW + ACI_SUBJECT) topology_st.standalone.modify_s(DEFAULT_SUFFIX, [(ldap.MOD_REPLACE, 'aci', ACI_BODY)]) log.info('Set user bind') conn = create_user.bind(TEST_USER_PWD) log.info('Create simple paged results control instance') req_ctrl = SimplePagedResultsControl(True, size=page_size, cookie='') controls = [req_ctrl] log.info('Initiate three searches with a paged results control') for ii in range(3): log.info('%d search' % (ii + 1)) all_results = paged_search(conn, DEFAULT_SUFFIX, controls, search_flt, searchreq_attrlist) log.info('%d results' % len(all_results)) > assert len(all_results) == len(users_list) E assert 0 == 100 E + where 0 = len([]) E + and 100 = len([<lib389.idm.user.UserAccount object at 0x7f3df832bdd8>, <lib389.idm.user.UserAccount object at 0x7f3de8b2fd30>, <lib3...>, <lib389.idm.user.UserAccount object at 0x7f3df8338b38>, <lib389.idm.user.UserAccount object at 0x7f3dfc40dda0>, ...]) suites/paged_results/paged_results_test.py:564: AssertionError ------------------------------ Captured log call ------------------------------- paged_results_test.py 131 INFO Adding 100 users paged_results_test.py 542 INFO Back up current suffix ACI paged_results_test.py 545 INFO Add test ACI paged_results_test.py 551 INFO Set user bind paged_results_test.py 554 INFO Create simple paged results control instance paged_results_test.py 558 INFO Initiate three searches with a paged results control paged_results_test.py 560 INFO 1 search paged_results_test.py 194 INFO 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 0x7f3dea6b0b70>]. paged_results_test.py 197 INFO Getting page 0 paged_results_test.py 563 INFO 0 results paged_results_test.py 568 INFO Restore ACI paged_results_test.py 153 INFO Deleting 100 users | |||
Failed | suites/plugins/rootdn_plugin_test.py::test_rootdn_access_day_of_week | 0.04 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f3df9f5f908> rootdn_setup = None def test_rootdn_access_day_of_week(topology_st, rootdn_setup): """Test the days of week feature :id: a0ef30e5-538b-46fa-9762-01a4435a15e1 :setup: Standalone instance, rootdn plugin set up :steps: 1. Set the deny days 2. Bind as Root DN 3. Set the allow days 4. Bind as Root DN 5. Cleanup - undo the changes we made so the next test has a clean slate :expectedresults: 1. Success 2. Should fail 3. Success 4. Success 5. Success """ log.info('Running test_rootdn_access_day_of_week...') days = ('Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat') day = int(time.strftime("%w", time.gmtime())) if day == 6: # Handle the roll over from Saturday into Sunday deny_days = days[1] + ', ' + days[2] allow_days = days[6] + ',' + days[0] elif day > 3: deny_days = days[0] + ', ' + days[1] allow_days = days[day] + ',' + days[day - 1] else: deny_days = days[4] + ',' + days[5] allow_days = days[day] + ',' + days[day + 1] log.info('Today: ' + days[day]) log.info('Allowed days: ' + allow_days) log.info('Deny days: ' + deny_days) # # Set the deny days # try: topology_st.standalone.modify_s(PLUGIN_DN, [(ldap.MOD_REPLACE, 'rootdn-days-allowed', ensure_bytes(deny_days))]) except ldap.LDAPError as e: log.fatal('test_rootdn_access_day_of_week: Failed to set the deny days: error {}' .format(e)) assert False # # Bind as Root DN - should fail # try: topology_st.standalone.simple_bind_s(DN_DM, PASSWORD) succeeded = True except ldap.LDAPError as e: succeeded = False if succeeded: log.fatal('test_rootdn_access_day_of_week: Root DN was incorrectly able to bind') assert False # # Set the allow days # try: topology_st.standalone.simple_bind_s(USER1_DN, PASSWORD) except ldap.LDAPError as e: log.fatal('test_rootdn_access_day_of_week: : failed to bind as user1') assert False try: topology_st.standalone.modify_s(PLUGIN_DN, [(ldap.MOD_REPLACE, 'rootdn-days-allowed', ensure_bytes(allow_days))]) except ldap.LDAPError as e: log.fatal('test_rootdn_access_day_of_week: Failed to set the deny days: error {}' .format(e)) assert False try: > topology_st.standalone.simple_bind_s(DN_DM, PASSWORD) suites/plugins/rootdn_plugin_test.py:263: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = ('cn=Directory Manager', 'password'), kwargs = {} def inner(*args, **kwargs): 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/lib/python3.6/site-packages/lib389/__init__.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3dfbdb49b0>, who = 'cn=Directory Manager' cred = 'password', serverctrls = None, clientctrls = None def simple_bind_s(self,who=None,cred=None,serverctrls=None,clientctrls=None): """ simple_bind_s([who='' [,cred='']]) -> 4-tuple """ msgid = self.simple_bind(who,cred,serverctrls,clientctrls) > resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:444: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = (18,), kwargs = {'all': 1, 'timeout': -1} def inner(*args, **kwargs): 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/lib/python3.6/site-packages/lib389/__init__.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3dfbdb49b0>, msgid = 18, 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/lib64/python3.6/site-packages/ldap/ldapobject.py:749: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = (18, 1, -1) kwargs = {'add_ctrls': 0, 'add_extop': 0, 'add_intermediates': 0, 'resp_ctrl_classes': None} def inner(*args, **kwargs): 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/lib/python3.6/site-packages/lib389/__init__.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3dfbdb49b0>, msgid = 18, 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/lib64/python3.6/site-packages/ldap/ldapobject.py:756: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = (<built-in method result4 of LDAP object at 0x7f3dfbd55530>, 18, 1, -1, 0, 0, ...) kwargs = {} def inner(*args, **kwargs): 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/lib/python3.6/site-packages/lib389/__init__.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3dfbdb49b0> func = <built-in method result4 of LDAP object at 0x7f3dfbd55530> args = (18, 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/lib64/python3.6/site-packages/ldap/ldapobject.py:329: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ exc_type = <class 'ldap.UNWILLING_TO_PERFORM'> exc_value = UNWILLING_TO_PERFORM({'desc': 'Server is unwilling to perform', 'info': 'RootDN access control violation'},) exc_traceback = <traceback object at 0x7f3dfc48ee48> 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/lib64/python3.6/site-packages/ldap/compat.py:44: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3dfbdb49b0> func = <built-in method result4 of LDAP object at 0x7f3dfbd55530> args = (18, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None exc_type = None, exc_value = None, exc_traceback = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E ldap.UNWILLING_TO_PERFORM: {'desc': 'Server is unwilling to perform', 'info': 'RootDN access control violation'} /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:313: UNWILLING_TO_PERFORM During handling of the above exception, another exception occurred: topology_st = <lib389.topologies.TopologyMain object at 0x7f3df9f5f908> rootdn_setup = None def test_rootdn_access_day_of_week(topology_st, rootdn_setup): """Test the days of week feature :id: a0ef30e5-538b-46fa-9762-01a4435a15e1 :setup: Standalone instance, rootdn plugin set up :steps: 1. Set the deny days 2. Bind as Root DN 3. Set the allow days 4. Bind as Root DN 5. Cleanup - undo the changes we made so the next test has a clean slate :expectedresults: 1. Success 2. Should fail 3. Success 4. Success 5. Success """ log.info('Running test_rootdn_access_day_of_week...') days = ('Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat') day = int(time.strftime("%w", time.gmtime())) if day == 6: # Handle the roll over from Saturday into Sunday deny_days = days[1] + ', ' + days[2] allow_days = days[6] + ',' + days[0] elif day > 3: deny_days = days[0] + ', ' + days[1] allow_days = days[day] + ',' + days[day - 1] else: deny_days = days[4] + ',' + days[5] allow_days = days[day] + ',' + days[day + 1] log.info('Today: ' + days[day]) log.info('Allowed days: ' + allow_days) log.info('Deny days: ' + deny_days) # # Set the deny days # try: topology_st.standalone.modify_s(PLUGIN_DN, [(ldap.MOD_REPLACE, 'rootdn-days-allowed', ensure_bytes(deny_days))]) except ldap.LDAPError as e: log.fatal('test_rootdn_access_day_of_week: Failed to set the deny days: error {}' .format(e)) assert False # # Bind as Root DN - should fail # try: topology_st.standalone.simple_bind_s(DN_DM, PASSWORD) succeeded = True except ldap.LDAPError as e: succeeded = False if succeeded: log.fatal('test_rootdn_access_day_of_week: Root DN was incorrectly able to bind') assert False # # Set the allow days # try: topology_st.standalone.simple_bind_s(USER1_DN, PASSWORD) except ldap.LDAPError as e: log.fatal('test_rootdn_access_day_of_week: : failed to bind as user1') assert False try: topology_st.standalone.modify_s(PLUGIN_DN, [(ldap.MOD_REPLACE, 'rootdn-days-allowed', ensure_bytes(allow_days))]) except ldap.LDAPError as e: log.fatal('test_rootdn_access_day_of_week: Failed to set the deny days: error {}' .format(e)) assert False try: topology_st.standalone.simple_bind_s(DN_DM, PASSWORD) except ldap.LDAPError as e: log.fatal('test_rootdn_access_day_of_week: Root DN bind failed unexpectedly failed: error {}' .format(e)) > assert False E assert False suites/plugins/rootdn_plugin_test.py:267: AssertionError ------------------------------ Captured log call ------------------------------- rootdn_plugin_test.py 201 INFO Running test_rootdn_access_day_of_week... rootdn_plugin_test.py 217 INFO Today: Mon rootdn_plugin_test.py 218 INFO Allowed days: Mon,Tue rootdn_plugin_test.py 219 INFO Deny days: Thu,Fri rootdn_plugin_test.py 266 CRITICAL test_rootdn_access_day_of_week: Root DN bind failed unexpectedly failed: error {'desc': 'Server is unwilling to perform', 'info': 'RootDN access control violation'} | |||
Failed | suites/plugins/rootdn_plugin_test.py::test_rootdn_access_denied_ip | 8.79 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f3df9f5f908> rootdn_setup = None def test_rootdn_access_denied_ip(topology_st, rootdn_setup): """Test denied IP feature - we can just test denying 127.0.0.1 :id: a0ef30e5-538b-46fa-9762-01a4435a15e2 :setup: Standalone instance, rootdn plugin set up :steps: 1. Set rootdn-deny-ip to '127.0.0.1' and '::1' 2. Bind as Root DN 3. Change the denied IP so root DN succeeds 4. Bind as Root DN 5. Cleanup - undo the changes we made so the next test has a clean slate :expectedresults: 1. Success 2. Should fail 3. Success 4. Success 5. Success """ log.info('Running test_rootdn_access_denied_ip...') try: topology_st.standalone.modify_s(PLUGIN_DN, [(ldap.MOD_REPLACE, 'rootdn-deny-ip', b'127.0.0.1'), (ldap.MOD_ADD, 'rootdn-deny-ip', b'::1')]) except ldap.LDAPError as e: log.fatal('test_rootdn_access_denied_ip: Failed to set rootDN plugin config: error {}' .format(e)) assert False # # Bind as Root DN - should fail # try: conn = ldap.initialize('ldap://{}:{}'.format(LOCALHOST_IP, topology_st.standalone.port)) topology_st.standalone.restart() conn.simple_bind_s(DN_DM, PASSWORD) succeeded = True except ldap.LDAPError as e: succeeded = False if succeeded: log.fatal('test_rootdn_access_denied_ip: Root DN was incorrectly able to bind') assert False # # Change the denied IP so root DN succeeds # try: topology_st.standalone.simple_bind_s(USER1_DN, PASSWORD) except ldap.LDAPError as e: log.fatal('test_rootdn_access_denied_ip: failed to bind as user1') assert False try: topology_st.standalone.modify_s(PLUGIN_DN, [(ldap.MOD_REPLACE, 'rootdn-deny-ip', b'255.255.255.255')]) except ldap.LDAPError as e: log.fatal('test_rootdn_access_denied_ip: Failed to set rootDN plugin config: error {}' .format(e)) assert False try: > topology_st.standalone.simple_bind_s(DN_DM, PASSWORD) suites/plugins/rootdn_plugin_test.py:352: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = ('cn=Directory Manager', 'password'), kwargs = {} def inner(*args, **kwargs): 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/lib/python3.6/site-packages/lib389/__init__.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3dfbdb49b0>, who = 'cn=Directory Manager' cred = 'password', serverctrls = None, clientctrls = None def simple_bind_s(self,who=None,cred=None,serverctrls=None,clientctrls=None): """ simple_bind_s([who='' [,cred='']]) -> 4-tuple """ msgid = self.simple_bind(who,cred,serverctrls,clientctrls) > resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:444: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = (4,), kwargs = {'all': 1, 'timeout': -1} def inner(*args, **kwargs): 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/lib/python3.6/site-packages/lib389/__init__.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3dfbdb49b0>, 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/lib64/python3.6/site-packages/ldap/ldapobject.py:749: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = (4, 1, -1) kwargs = {'add_ctrls': 0, 'add_extop': 0, 'add_intermediates': 0, 'resp_ctrl_classes': None} def inner(*args, **kwargs): 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/lib/python3.6/site-packages/lib389/__init__.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3dfbdb49b0>, 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/lib64/python3.6/site-packages/ldap/ldapobject.py:756: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = (<built-in method result4 of LDAP object at 0x7f3dfbd55508>, 4, 1, -1, 0, 0, ...) kwargs = {} def inner(*args, **kwargs): 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/lib/python3.6/site-packages/lib389/__init__.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3dfbdb49b0> func = <built-in method result4 of LDAP object at 0x7f3dfbd55508> 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/lib64/python3.6/site-packages/ldap/ldapobject.py:329: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ exc_type = <class 'ldap.UNWILLING_TO_PERFORM'> exc_value = UNWILLING_TO_PERFORM({'desc': 'Server is unwilling to perform', 'info': 'RootDN access control violation'},) exc_traceback = <traceback object at 0x7f3dfc34ca88> 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/lib64/python3.6/site-packages/ldap/compat.py:44: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3dfbdb49b0> func = <built-in method result4 of LDAP object at 0x7f3dfbd55508> 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: {'desc': 'Server is unwilling to perform', 'info': 'RootDN access control violation'} /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:313: UNWILLING_TO_PERFORM During handling of the above exception, another exception occurred: topology_st = <lib389.topologies.TopologyMain object at 0x7f3df9f5f908> rootdn_setup = None def test_rootdn_access_denied_ip(topology_st, rootdn_setup): """Test denied IP feature - we can just test denying 127.0.0.1 :id: a0ef30e5-538b-46fa-9762-01a4435a15e2 :setup: Standalone instance, rootdn plugin set up :steps: 1. Set rootdn-deny-ip to '127.0.0.1' and '::1' 2. Bind as Root DN 3. Change the denied IP so root DN succeeds 4. Bind as Root DN 5. Cleanup - undo the changes we made so the next test has a clean slate :expectedresults: 1. Success 2. Should fail 3. Success 4. Success 5. Success """ log.info('Running test_rootdn_access_denied_ip...') try: topology_st.standalone.modify_s(PLUGIN_DN, [(ldap.MOD_REPLACE, 'rootdn-deny-ip', b'127.0.0.1'), (ldap.MOD_ADD, 'rootdn-deny-ip', b'::1')]) except ldap.LDAPError as e: log.fatal('test_rootdn_access_denied_ip: Failed to set rootDN plugin config: error {}' .format(e)) assert False # # Bind as Root DN - should fail # try: conn = ldap.initialize('ldap://{}:{}'.format(LOCALHOST_IP, topology_st.standalone.port)) topology_st.standalone.restart() conn.simple_bind_s(DN_DM, PASSWORD) succeeded = True except ldap.LDAPError as e: succeeded = False if succeeded: log.fatal('test_rootdn_access_denied_ip: Root DN was incorrectly able to bind') assert False # # Change the denied IP so root DN succeeds # try: topology_st.standalone.simple_bind_s(USER1_DN, PASSWORD) except ldap.LDAPError as e: log.fatal('test_rootdn_access_denied_ip: failed to bind as user1') assert False try: topology_st.standalone.modify_s(PLUGIN_DN, [(ldap.MOD_REPLACE, 'rootdn-deny-ip', b'255.255.255.255')]) except ldap.LDAPError as e: log.fatal('test_rootdn_access_denied_ip: Failed to set rootDN plugin config: error {}' .format(e)) assert False try: topology_st.standalone.simple_bind_s(DN_DM, PASSWORD) except ldap.LDAPError as e: log.fatal('test_rootdn_access_denied_ip: Root DN bind failed unexpectedly failed: error {}' .format(e)) > assert False E assert False suites/plugins/rootdn_plugin_test.py:356: AssertionError ------------------------------ Captured log call ------------------------------- rootdn_plugin_test.py 308 INFO Running test_rootdn_access_denied_ip... rootdn_plugin_test.py 355 CRITICAL test_rootdn_access_denied_ip: Root DN bind failed unexpectedly failed: error {'desc': 'Server is unwilling to perform', 'info': 'RootDN access control violation'} | |||
Failed | suites/plugins/rootdn_plugin_test.py::test_rootdn_access_denied_host | 0.04 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f3df9f5f908> rootdn_setup = None def test_rootdn_access_denied_host(topology_st, rootdn_setup): """Test denied Host feature - we can just test denying localhost :id: a0ef30e5-538b-46fa-9762-01a4435a15e3 :setup: Standalone instance, rootdn plugin set up :steps: 1. Set rootdn-deny-host to hostname (localhost if not accessable) 2. Bind as Root DN 3. Change the denied host so root DN succeeds 4. Bind as Root DN 5. Cleanup - undo the changes we made so the next test has a clean slate :expectedresults: 1. Success 2. Should fail 3. Success 4. Success 5. Success """ log.info('Running test_rootdn_access_denied_host...') hostname = socket.gethostname() localhost = DirSrvTools.getLocalhost() try: topology_st.standalone.modify_s(PLUGIN_DN, [(ldap.MOD_ADD, 'rootdn-deny-host', ensure_bytes(hostname))]) if localhost != hostname: topology_st.standalone.modify_s(PLUGIN_DN, [(ldap.MOD_ADD, 'rootdn-deny-host', ensure_bytes(localhost))]) except ldap.LDAPError as e: log.fatal('test_rootdn_access_denied_host: Failed to set deny host: error {}' .format(e)) assert False # # Bind as Root DN - should fail # try: topology_st.standalone.simple_bind_s(DN_DM, PASSWORD) succeeded = True except ldap.LDAPError as e: succeeded = False if succeeded: log.fatal('test_rootdn_access_denied_host: Root DN was incorrectly able to bind') assert False # # Change the denied host so root DN succeeds # try: topology_st.standalone.simple_bind_s(USER1_DN, PASSWORD) except ldap.LDAPError as e: log.fatal('test_rootdn_access_denied_host: : failed to bind as user1') assert False try: topology_st.standalone.modify_s(PLUGIN_DN, [(ldap.MOD_REPLACE, 'rootdn-deny-host', b'i.dont.exist.com')]) except ldap.LDAPError as e: log.fatal('test_rootdn_access_denied_host: Failed to set rootDN plugin config: error {}' .format(e)) assert False try: > topology_st.standalone.simple_bind_s(DN_DM, PASSWORD) suites/plugins/rootdn_plugin_test.py:443: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = ('cn=Directory Manager', 'password'), kwargs = {} def inner(*args, **kwargs): 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/lib/python3.6/site-packages/lib389/__init__.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3dfbdb49b0>, who = 'cn=Directory Manager' cred = 'password', serverctrls = None, clientctrls = None def simple_bind_s(self,who=None,cred=None,serverctrls=None,clientctrls=None): """ simple_bind_s([who='' [,cred='']]) -> 4-tuple """ msgid = self.simple_bind(who,cred,serverctrls,clientctrls) > resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:444: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = (10,), kwargs = {'all': 1, 'timeout': -1} def inner(*args, **kwargs): 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/lib/python3.6/site-packages/lib389/__init__.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3dfbdb49b0>, msgid = 10, 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/lib64/python3.6/site-packages/ldap/ldapobject.py:749: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = (10, 1, -1) kwargs = {'add_ctrls': 0, 'add_extop': 0, 'add_intermediates': 0, 'resp_ctrl_classes': None} def inner(*args, **kwargs): 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/lib/python3.6/site-packages/lib389/__init__.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3dfbdb49b0>, msgid = 10, 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/lib64/python3.6/site-packages/ldap/ldapobject.py:756: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = (<built-in method result4 of LDAP object at 0x7f3dfbd55508>, 10, 1, -1, 0, 0, ...) kwargs = {} def inner(*args, **kwargs): 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/lib/python3.6/site-packages/lib389/__init__.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3dfbdb49b0> func = <built-in method result4 of LDAP object at 0x7f3dfbd55508> args = (10, 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/lib64/python3.6/site-packages/ldap/ldapobject.py:329: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ exc_type = <class 'ldap.UNWILLING_TO_PERFORM'> exc_value = UNWILLING_TO_PERFORM({'desc': 'Server is unwilling to perform', 'info': 'RootDN access control violation'},) exc_traceback = <traceback object at 0x7f3df9cfcac8> 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/lib64/python3.6/site-packages/ldap/compat.py:44: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3dfbdb49b0> func = <built-in method result4 of LDAP object at 0x7f3dfbd55508> args = (10, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None exc_type = None, exc_value = None, exc_traceback = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E ldap.UNWILLING_TO_PERFORM: {'desc': 'Server is unwilling to perform', 'info': 'RootDN access control violation'} /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:313: UNWILLING_TO_PERFORM During handling of the above exception, another exception occurred: topology_st = <lib389.topologies.TopologyMain object at 0x7f3df9f5f908> rootdn_setup = None def test_rootdn_access_denied_host(topology_st, rootdn_setup): """Test denied Host feature - we can just test denying localhost :id: a0ef30e5-538b-46fa-9762-01a4435a15e3 :setup: Standalone instance, rootdn plugin set up :steps: 1. Set rootdn-deny-host to hostname (localhost if not accessable) 2. Bind as Root DN 3. Change the denied host so root DN succeeds 4. Bind as Root DN 5. Cleanup - undo the changes we made so the next test has a clean slate :expectedresults: 1. Success 2. Should fail 3. Success 4. Success 5. Success """ log.info('Running test_rootdn_access_denied_host...') hostname = socket.gethostname() localhost = DirSrvTools.getLocalhost() try: topology_st.standalone.modify_s(PLUGIN_DN, [(ldap.MOD_ADD, 'rootdn-deny-host', ensure_bytes(hostname))]) if localhost != hostname: topology_st.standalone.modify_s(PLUGIN_DN, [(ldap.MOD_ADD, 'rootdn-deny-host', ensure_bytes(localhost))]) except ldap.LDAPError as e: log.fatal('test_rootdn_access_denied_host: Failed to set deny host: error {}' .format(e)) assert False # # Bind as Root DN - should fail # try: topology_st.standalone.simple_bind_s(DN_DM, PASSWORD) succeeded = True except ldap.LDAPError as e: succeeded = False if succeeded: log.fatal('test_rootdn_access_denied_host: Root DN was incorrectly able to bind') assert False # # Change the denied host so root DN succeeds # try: topology_st.standalone.simple_bind_s(USER1_DN, PASSWORD) except ldap.LDAPError as e: log.fatal('test_rootdn_access_denied_host: : failed to bind as user1') assert False try: topology_st.standalone.modify_s(PLUGIN_DN, [(ldap.MOD_REPLACE, 'rootdn-deny-host', b'i.dont.exist.com')]) except ldap.LDAPError as e: log.fatal('test_rootdn_access_denied_host: Failed to set rootDN plugin config: error {}' .format(e)) assert False try: topology_st.standalone.simple_bind_s(DN_DM, PASSWORD) except ldap.LDAPError as e: log.fatal('test_rootdn_access_denied_host: Root DN bind failed unexpectedly failed: error {}' .format(e)) > assert False E assert False suites/plugins/rootdn_plugin_test.py:447: AssertionError ------------------------------ Captured log call ------------------------------- rootdn_plugin_test.py 397 INFO Running test_rootdn_access_denied_host... rootdn_plugin_test.py 446 CRITICAL test_rootdn_access_denied_host: Root DN bind failed unexpectedly failed: error {'desc': 'Server is unwilling to perform', 'info': 'RootDN access control violation'} | |||
Failed | suites/plugins/rootdn_plugin_test.py::test_rootdn_access_allowed_ip | 3.24 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f3df9f5f908> rootdn_setup = None def test_rootdn_access_allowed_ip(topology_st, rootdn_setup): """Test allowed ip feature :id: a0ef30e5-538b-46fa-9762-01a4435a15e4 :setup: Standalone instance, rootdn plugin set up :steps: 1. Set allowed ip to 255.255.255.255 - blocks the Root DN 2. Bind as Root DN 3. Allow localhost 4. Bind as Root DN 5. Cleanup - undo the changes we made so the next test has a clean slate :expectedresults: 1. Success 2. Should fail 3. Success 4. Success 5. Success """ log.info('Running test_rootdn_access_allowed_ip...') # # Set allowed ip to 255.255.255.255 - blocks the Root DN # try: conn = ldap.initialize('ldap://{}:{}'.format(LOCALHOST_IP, topology_st.standalone.port)) > topology_st.standalone.restart() suites/plugins/rootdn_plugin_test.py:495: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3dfbdb49b0>, timeout = 120, post_open = True def restart(self, timeout=120, post_open=True): ''' It restarts an instance and rebind it. Its final state after rebind (open) is DIRSRV_STATE_ONLINE. @param self @param timeout (in sec) to wait for successful stop @return None @raise None ''' self.stop(timeout) time.sleep(1) > self.start(timeout, post_open) /usr/lib/python3.6/site-packages/lib389/__init__.py:1334: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3dfbdb49b0>, timeout = 120, post_open = True def start(self, timeout=120, post_open=True): ''' It starts an instance and rebind it. Its final state after rebind (open) is DIRSRV_STATE_ONLINE @param self @param timeout (in sec) to wait for successful start @return None @raise None ''' if self.status() is True: return if self.with_systemd() and not self.containerised: # Do systemd things here ... subprocess.check_call(["/usr/bin/systemctl", "start", "dirsrv@%s" % self.serverid]) else: # Start the process. # Wait for it to terminate # This means the server is probably ready to go .... env = {} if self.has_asan(): self.log.warning("WARNING: Starting instance with ASAN options. This is probably not what you want. Please contact support.") self.log.info("INFO: ASAN options will be copied from your environment") env['ASAN_SYMBOLIZER_PATH'] = "/usr/bin/llvm-symbolizer" env['ASAN_OPTIONS'] = "symbolize=1 detect_deadlocks=1 log_path=%s/ns-slapd-%s.asan" % (self.ds_paths.run_dir, self.serverid) env.update(os.environ) output = None try: output = subprocess.check_output(["%s/ns-slapd" % self.get_sbin_dir(), "-D", self.ds_paths.config_dir, "-i", self.ds_paths.pid_file], env=env, stderr=subprocess.STDOUT) except subprocess.CalledProcessError: self.log.error(output) count = timeout pid = pid_from_file(self.ds_paths.pid_file) while (pid is None) and count > 0: count -= 1 time.sleep(1) pid = pid_from_file(self.ds_paths.pid_file) if pid == 0 or pid is None: raise ValueError # Wait while not pid_exists(pid) and count > 0: # It looks like DS changes the value in here at some point ... # It's probably a DS bug, but if we "keep checking" the file, eventually # we get the main server pid, and it's ready to go. pid = pid_from_file(self.ds_paths.pid_file) time.sleep(1) count -= 1 if not pid_exists(pid): raise Exception("Failed to start DS") if post_open: > self.open() /usr/lib/python3.6/site-packages/lib389/__init__.py:1244: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3dfbdb49b0> uri = 'ldap://server.example.com:38901', saslmethod = None, sasltoken = None certdir = '/etc/dirsrv/slapd-standalone1', starttls = False, connOnly = False reqcert = 1, usercert = None, userkey = None def open(self, uri=None, saslmethod=None, sasltoken=None, certdir=None, starttls=False, connOnly=False, reqcert=ldap.OPT_X_TLS_HARD, usercert=None, userkey=None): ''' It opens a ldap bound connection to dirsrv so that online administrative tasks are possible. It binds with the binddn property, then it initializes various fields from DirSrv (via __initPart2) The state changes -> DIRSRV_STATE_ONLINE @param self @param saslmethod - None, or GSSAPI @param sasltoken - The ldap.sasl token type to bind with. @param certdir - Certificate directory for TLS @return None @raise LDAPError ''' # Force our state offline to prevent paths from trying to search # cn=config while we startup. self.state = DIRSRV_STATE_OFFLINE if not uri: uri = self.toLDAPURL() self.log.debug('open(): Connecting to uri %s', uri) if hasattr(ldap, 'PYLDAP_VERSION') and MAJOR >= 3: super(DirSrv, self).__init__(uri, bytes_mode=False, trace_level=TRACE_LEVEL) else: super(DirSrv, self).__init__(uri, trace_level=TRACE_LEVEL) if certdir is None and self.isLocal: certdir = self.get_cert_dir() self.log.debug("Using dirsrv ca certificate %s", certdir) if certdir is not None: """ We have a certificate directory, so lets start up TLS negotiations """ # Note this sets LDAP.OPT not SELF. Because once self has opened # it can NOT change opts AT ALL. self.set_option(ldap.OPT_X_TLS_CACERTDIR, ensure_str(certdir)) self.log.debug("Using external ca certificate %s", certdir) if userkey is not None: # Note this sets LDAP.OPT not SELF. Because once self has opened # it can NOT change opts AT ALL. self.log.debug("Using user private key %s", userkey) self.set_option(ldap.OPT_X_TLS_KEYFILE, ensure_str(userkey)) if usercert is not None: self.log.debug("Using user certificate %s", usercert) self.set_option(ldap.OPT_X_TLS_CERTFILE, ensure_str(usercert)) if certdir is not None: self.log.debug("Using external ca certificate %s", certdir) self.set_option(ldap.OPT_X_TLS_CACERTDIR, ensure_str(certdir)) if certdir or starttls: try: # Note this sets LDAP.OPT not SELF. Because once self has opened # it can NOT change opts on reused (ie restart) self.set_option(ldap.OPT_X_TLS_REQUIRE_CERT, reqcert) self.log.debug("Using certificate policy %s", reqcert) self.log.debug("ldap.OPT_X_TLS_REQUIRE_CERT = %s", reqcert) except ldap.LDAPError as e: self.log.fatal('TLS negotiation failed: %s', e) raise e # Tell python ldap to make a new TLS context with this information. self.set_option(ldap.OPT_X_TLS_NEWCTX, 0) if starttls and not uri.startswith('ldaps'): self.start_tls_s() if saslmethod and sasltoken is not None: # Just pass the sasltoken in! self.sasl_interactive_bind_s("", sasltoken) elif saslmethod and saslmethod.lower() == 'gssapi': """ Perform kerberos/gssapi authentication """ sasl_auth = ldap.sasl.gssapi("") self.sasl_interactive_bind_s("", sasl_auth) elif saslmethod == 'EXTERNAL': # Do nothing. sasl_auth = ldap.sasl.external() self.sasl_interactive_bind_s("", sasl_auth) elif saslmethod: # Unknown or unsupported method self.log.debug('Unsupported SASL method: %s', saslmethod) raise ldap.UNWILLING_TO_PERFORM elif self.can_autobind(): # Connect via ldapi, and autobind. # do nothing: the bind is complete. if self.verbose: self.log.info("open(): Using root autobind ...") sasl_auth = ldap.sasl.external() self.sasl_interactive_bind_s("", sasl_auth) else: """ Do a simple bind """ try: self.simple_bind_s(ensure_str(self.binddn), self.bindpw) except ldap.SERVER_DOWN as e: # TODO add server info in exception self.log.debug("Cannot connect to %r", uri) raise e except ldap.LDAPError as e: self.log.debug("Error: Failed to authenticate: %s", e) > raise e /usr/lib/python3.6/site-packages/lib389/__init__.py:1154: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3dfbdb49b0> uri = 'ldap://server.example.com:38901', saslmethod = None, sasltoken = None certdir = '/etc/dirsrv/slapd-standalone1', starttls = False, connOnly = False reqcert = 1, usercert = None, userkey = None def open(self, uri=None, saslmethod=None, sasltoken=None, certdir=None, starttls=False, connOnly=False, reqcert=ldap.OPT_X_TLS_HARD, usercert=None, userkey=None): ''' It opens a ldap bound connection to dirsrv so that online administrative tasks are possible. It binds with the binddn property, then it initializes various fields from DirSrv (via __initPart2) The state changes -> DIRSRV_STATE_ONLINE @param self @param saslmethod - None, or GSSAPI @param sasltoken - The ldap.sasl token type to bind with. @param certdir - Certificate directory for TLS @return None @raise LDAPError ''' # Force our state offline to prevent paths from trying to search # cn=config while we startup. self.state = DIRSRV_STATE_OFFLINE if not uri: uri = self.toLDAPURL() self.log.debug('open(): Connecting to uri %s', uri) if hasattr(ldap, 'PYLDAP_VERSION') and MAJOR >= 3: super(DirSrv, self).__init__(uri, bytes_mode=False, trace_level=TRACE_LEVEL) else: super(DirSrv, self).__init__(uri, trace_level=TRACE_LEVEL) if certdir is None and self.isLocal: certdir = self.get_cert_dir() self.log.debug("Using dirsrv ca certificate %s", certdir) if certdir is not None: """ We have a certificate directory, so lets start up TLS negotiations """ # Note this sets LDAP.OPT not SELF. Because once self has opened # it can NOT change opts AT ALL. self.set_option(ldap.OPT_X_TLS_CACERTDIR, ensure_str(certdir)) self.log.debug("Using external ca certificate %s", certdir) if userkey is not None: # Note this sets LDAP.OPT not SELF. Because once self has opened # it can NOT change opts AT ALL. self.log.debug("Using user private key %s", userkey) self.set_option(ldap.OPT_X_TLS_KEYFILE, ensure_str(userkey)) if usercert is not None: self.log.debug("Using user certificate %s", usercert) self.set_option(ldap.OPT_X_TLS_CERTFILE, ensure_str(usercert)) if certdir is not None: self.log.debug("Using external ca certificate %s", certdir) self.set_option(ldap.OPT_X_TLS_CACERTDIR, ensure_str(certdir)) if certdir or starttls: try: # Note this sets LDAP.OPT not SELF. Because once self has opened # it can NOT change opts on reused (ie restart) self.set_option(ldap.OPT_X_TLS_REQUIRE_CERT, reqcert) self.log.debug("Using certificate policy %s", reqcert) self.log.debug("ldap.OPT_X_TLS_REQUIRE_CERT = %s", reqcert) except ldap.LDAPError as e: self.log.fatal('TLS negotiation failed: %s', e) raise e # Tell python ldap to make a new TLS context with this information. self.set_option(ldap.OPT_X_TLS_NEWCTX, 0) if starttls and not uri.startswith('ldaps'): self.start_tls_s() if saslmethod and sasltoken is not None: # Just pass the sasltoken in! self.sasl_interactive_bind_s("", sasltoken) elif saslmethod and saslmethod.lower() == 'gssapi': """ Perform kerberos/gssapi authentication """ sasl_auth = ldap.sasl.gssapi("") self.sasl_interactive_bind_s("", sasl_auth) elif saslmethod == 'EXTERNAL': # Do nothing. sasl_auth = ldap.sasl.external() self.sasl_interactive_bind_s("", sasl_auth) elif saslmethod: # Unknown or unsupported method self.log.debug('Unsupported SASL method: %s', saslmethod) raise ldap.UNWILLING_TO_PERFORM elif self.can_autobind(): # Connect via ldapi, and autobind. # do nothing: the bind is complete. if self.verbose: self.log.info("open(): Using root autobind ...") sasl_auth = ldap.sasl.external() self.sasl_interactive_bind_s("", sasl_auth) else: """ Do a simple bind """ try: > self.simple_bind_s(ensure_str(self.binddn), self.bindpw) /usr/lib/python3.6/site-packages/lib389/__init__.py:1147: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = ('cn=Directory Manager', 'password'), kwargs = {} def inner(*args, **kwargs): 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/lib/python3.6/site-packages/lib389/__init__.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3dfbdb49b0>, who = 'cn=Directory Manager' cred = 'password', serverctrls = None, clientctrls = None def simple_bind_s(self,who=None,cred=None,serverctrls=None,clientctrls=None): """ simple_bind_s([who='' [,cred='']]) -> 4-tuple """ msgid = self.simple_bind(who,cred,serverctrls,clientctrls) > resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:444: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = (1,), kwargs = {'all': 1, 'timeout': -1} def inner(*args, **kwargs): 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/lib/python3.6/site-packages/lib389/__init__.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3dfbdb49b0>, msgid = 1, 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/lib64/python3.6/site-packages/ldap/ldapobject.py:749: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = (1, 1, -1) kwargs = {'add_ctrls': 0, 'add_extop': 0, 'add_intermediates': 0, 'resp_ctrl_classes': None} def inner(*args, **kwargs): 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/lib/python3.6/site-packages/lib389/__init__.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3dfbdb49b0>, msgid = 1, 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/lib64/python3.6/site-packages/ldap/ldapobject.py:756: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = (<built-in method result4 of LDAP object at 0x7f3df9ef7a80>, 1, 1, -1, 0, 0, ...) kwargs = {} def inner(*args, **kwargs): 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/lib/python3.6/site-packages/lib389/__init__.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3dfbdb49b0> func = <built-in method result4 of LDAP object at 0x7f3df9ef7a80> 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) 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/lib64/python3.6/site-packages/ldap/ldapobject.py:329: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ exc_type = <class 'ldap.UNWILLING_TO_PERFORM'> exc_value = UNWILLING_TO_PERFORM({'desc': 'Server is unwilling to perform', 'info': 'RootDN access control violation'},) exc_traceback = <traceback object at 0x7f3dfc507c48> 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/lib64/python3.6/site-packages/ldap/compat.py:44: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3dfbdb49b0> func = <built-in method result4 of LDAP object at 0x7f3df9ef7a80> args = (1, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None exc_type = None, exc_value = None, exc_traceback = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E ldap.UNWILLING_TO_PERFORM: {'desc': 'Server is unwilling to perform', 'info': 'RootDN access control violation'} /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:313: UNWILLING_TO_PERFORM During handling of the above exception, another exception occurred: topology_st = <lib389.topologies.TopologyMain object at 0x7f3df9f5f908> rootdn_setup = None def test_rootdn_access_allowed_ip(topology_st, rootdn_setup): """Test allowed ip feature :id: a0ef30e5-538b-46fa-9762-01a4435a15e4 :setup: Standalone instance, rootdn plugin set up :steps: 1. Set allowed ip to 255.255.255.255 - blocks the Root DN 2. Bind as Root DN 3. Allow localhost 4. Bind as Root DN 5. Cleanup - undo the changes we made so the next test has a clean slate :expectedresults: 1. Success 2. Should fail 3. Success 4. Success 5. Success """ log.info('Running test_rootdn_access_allowed_ip...') # # Set allowed ip to 255.255.255.255 - blocks the Root DN # try: conn = ldap.initialize('ldap://{}:{}'.format(LOCALHOST_IP, topology_st.standalone.port)) topology_st.standalone.restart() topology_st.standalone.modify_s(PLUGIN_DN, [(ldap.MOD_REPLACE, 'rootdn-allow-ip', b'255.255.255.255')]) except ldap.LDAPError as e: log.fatal('test_rootdn_access_allowed_ip: Failed to set allowed host: error {}' .format(e)) > assert False E assert False suites/plugins/rootdn_plugin_test.py:500: AssertionError ------------------------------ Captured log call ------------------------------- rootdn_plugin_test.py 488 INFO Running test_rootdn_access_allowed_ip... rootdn_plugin_test.py 499 CRITICAL test_rootdn_access_allowed_ip: Failed to set allowed host: error {'desc': 'Server is unwilling to perform', 'info': 'RootDN access control violation'} | |||
Failed | suites/plugins/rootdn_plugin_test.py::test_rootdn_access_allowed_host | 0.04 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f3df9f5f908> rootdn_setup = None def test_rootdn_access_allowed_host(topology_st, rootdn_setup): """Test allowed host feature :id: a0ef30e5-538b-46fa-9762-01a4435a15e5 :setup: Standalone instance, rootdn plugin set up :steps: 1. Set allowed host to an unknown host - blocks the Root DN 2. Bind as Root DN 3. Allow localhost 4. Bind as Root DN 5. Cleanup - undo the changes we made so the next test has a clean slate :expectedresults: 1. Success 2. Should fail 3. Success 4. Success 5. Success """ log.info('Running test_rootdn_access_allowed_host...') # # Set allowed host to an unknown host - blocks the Root DN # try: topology_st.standalone.modify_s(PLUGIN_DN, [(ldap.MOD_REPLACE, 'rootdn-allow-host', b'i.dont.exist.com')]) except ldap.LDAPError as e: log.fatal('test_rootdn_access_allowed_host: Failed to set allowed host: error {}' .format(e)) assert False # # Bind as Root DN - should fail # try: topology_st.standalone.simple_bind_s(DN_DM, PASSWORD) succeeded = True except ldap.LDAPError as e: succeeded = False if succeeded: log.fatal('test_rootdn_access_allowed_host: Root DN was incorrectly able to bind') assert False # # Allow localhost # try: topology_st.standalone.simple_bind_s(USER1_DN, PASSWORD) except ldap.LDAPError as e: log.fatal('test_rootdn_access_allowed_host: : failed to bind as user1') assert False hostname = socket.gethostname() localhost = DirSrvTools.getLocalhost() try: topology_st.standalone.modify_s(PLUGIN_DN, [(ldap.MOD_DELETE, 'rootdn-allow-host', None)]) topology_st.standalone.modify_s(PLUGIN_DN, [(ldap.MOD_ADD, 'rootdn-allow-host', ensure_bytes(localhost))]) if hostname != localhost: topology_st.standalone.modify_s(PLUGIN_DN, [(ldap.MOD_ADD, 'rootdn-allow-host', ensure_bytes(hostname))]) except ldap.LDAPError as e: log.fatal('test_rootdn_access_allowed_host: Failed to set allowed host: error {}' .format(e)) assert False try: > topology_st.standalone.simple_bind_s(DN_DM, PASSWORD) suites/plugins/rootdn_plugin_test.py:633: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = ('cn=Directory Manager', 'password'), kwargs = {} def inner(*args, **kwargs): 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/lib/python3.6/site-packages/lib389/__init__.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3dfbdb49b0>, who = 'cn=Directory Manager' cred = 'password', serverctrls = None, clientctrls = None def simple_bind_s(self,who=None,cred=None,serverctrls=None,clientctrls=None): """ simple_bind_s([who='' [,cred='']]) -> 4-tuple """ msgid = self.simple_bind(who,cred,serverctrls,clientctrls) > resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:444: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = (8,), kwargs = {'all': 1, 'timeout': -1} def inner(*args, **kwargs): 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/lib/python3.6/site-packages/lib389/__init__.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3dfbdb49b0>, msgid = 8, 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/lib64/python3.6/site-packages/ldap/ldapobject.py:749: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = (8, 1, -1) kwargs = {'add_ctrls': 0, 'add_extop': 0, 'add_intermediates': 0, 'resp_ctrl_classes': None} def inner(*args, **kwargs): 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/lib/python3.6/site-packages/lib389/__init__.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3dfbdb49b0>, msgid = 8, 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/lib64/python3.6/site-packages/ldap/ldapobject.py:756: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = (<built-in method result4 of LDAP object at 0x7f3df9ef7a80>, 8, 1, -1, 0, 0, ...) kwargs = {} def inner(*args, **kwargs): 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/lib/python3.6/site-packages/lib389/__init__.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3dfbdb49b0> func = <built-in method result4 of LDAP object at 0x7f3df9ef7a80> args = (8, 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/lib64/python3.6/site-packages/ldap/ldapobject.py:329: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ exc_type = <class 'ldap.UNWILLING_TO_PERFORM'> exc_value = UNWILLING_TO_PERFORM({'desc': 'Server is unwilling to perform', 'info': 'RootDN access control violation'},) exc_traceback = <traceback object at 0x7f3dfc10e7c8> 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/lib64/python3.6/site-packages/ldap/compat.py:44: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3dfbdb49b0> func = <built-in method result4 of LDAP object at 0x7f3df9ef7a80> args = (8, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None exc_type = None, exc_value = None, exc_traceback = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E ldap.UNWILLING_TO_PERFORM: {'desc': 'Server is unwilling to perform', 'info': 'RootDN access control violation'} /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:313: UNWILLING_TO_PERFORM During handling of the above exception, another exception occurred: topology_st = <lib389.topologies.TopologyMain object at 0x7f3df9f5f908> rootdn_setup = None def test_rootdn_access_allowed_host(topology_st, rootdn_setup): """Test allowed host feature :id: a0ef30e5-538b-46fa-9762-01a4435a15e5 :setup: Standalone instance, rootdn plugin set up :steps: 1. Set allowed host to an unknown host - blocks the Root DN 2. Bind as Root DN 3. Allow localhost 4. Bind as Root DN 5. Cleanup - undo the changes we made so the next test has a clean slate :expectedresults: 1. Success 2. Should fail 3. Success 4. Success 5. Success """ log.info('Running test_rootdn_access_allowed_host...') # # Set allowed host to an unknown host - blocks the Root DN # try: topology_st.standalone.modify_s(PLUGIN_DN, [(ldap.MOD_REPLACE, 'rootdn-allow-host', b'i.dont.exist.com')]) except ldap.LDAPError as e: log.fatal('test_rootdn_access_allowed_host: Failed to set allowed host: error {}' .format(e)) assert False # # Bind as Root DN - should fail # try: topology_st.standalone.simple_bind_s(DN_DM, PASSWORD) succeeded = True except ldap.LDAPError as e: succeeded = False if succeeded: log.fatal('test_rootdn_access_allowed_host: Root DN was incorrectly able to bind') assert False # # Allow localhost # try: topology_st.standalone.simple_bind_s(USER1_DN, PASSWORD) except ldap.LDAPError as e: log.fatal('test_rootdn_access_allowed_host: : failed to bind as user1') assert False hostname = socket.gethostname() localhost = DirSrvTools.getLocalhost() try: topology_st.standalone.modify_s(PLUGIN_DN, [(ldap.MOD_DELETE, 'rootdn-allow-host', None)]) topology_st.standalone.modify_s(PLUGIN_DN, [(ldap.MOD_ADD, 'rootdn-allow-host', ensure_bytes(localhost))]) if hostname != localhost: topology_st.standalone.modify_s(PLUGIN_DN, [(ldap.MOD_ADD, 'rootdn-allow-host', ensure_bytes(hostname))]) except ldap.LDAPError as e: log.fatal('test_rootdn_access_allowed_host: Failed to set allowed host: error {}' .format(e)) assert False try: topology_st.standalone.simple_bind_s(DN_DM, PASSWORD) except ldap.LDAPError as e: log.fatal('test_rootdn_access_allowed_host: Root DN bind failed unexpectedly failed: error {}' .format(e)) > assert False E assert False suites/plugins/rootdn_plugin_test.py:637: AssertionError ------------------------------ Captured log call ------------------------------- rootdn_plugin_test.py 580 INFO Running test_rootdn_access_allowed_host... rootdn_plugin_test.py 636 CRITICAL test_rootdn_access_allowed_host: Root DN bind failed unexpectedly failed: error {'desc': 'Server is unwilling to perform', 'info': 'RootDN access control violation'} | |||
Failed | suites/sasl/regression_test.py::test_openldap_no_nss_crypto | 50.98 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f3deb460e80> def test_openldap_no_nss_crypto(topology_m2): """Check that we allow usage of OpenLDAP libraries that don't use NSS for crypto :id: 0a622f3d-8ba5-4df2-a1de-1fb2237da40a :setup: Replication with two masters: master_1 ----- startTLS -----> master_2; master_1 <-- TLS_clientAuth -- master_2; nsslapd-extract-pemfiles set to 'on' on both masters without specifying cert names :steps: 1. Add 5 users to master 1 and 2 2. Check that the users were successfully replicated 3. Relocate PEM files on master 1 4. Check PEM files in master 1 config directory 5. Add 5 users more to master 1 and 2 6. Check that the users were successfully replicated 7. Export userRoot on master 1 :expectedresults: 1. Users should be successfully added 2. Users should be successfully replicated 3. Operation should be successful 4. PEM files should be found 5. Users should be successfully added 6. Users should be successfully replicated 7. Operation should be successful """ log.info("Ticket 47536 - Allow usage of OpenLDAP libraries that don't use NSS for crypto") create_keys_certs(topology_m2) > config_tls_agreements(topology_m2) suites/sasl/regression_test.py:400: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ suites/sasl/regression_test.py:316: in config_tls_agreements rentry = m1.search_s(replmgr, ldap.SCOPE_BASE, 'objectclass=*') /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:852: in search_s return self.search_ext_s(base,scope,filterstr,attrlist,attrsonly,None,None,timeout=self.timeout) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:846: in search_ext_s return self.result(msgid,all=1,timeout=timeout)[1] /usr/lib/python3.6/site-packages/lib389/__init__.py:133: in inner objtype, data = f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:738: in result resp_type, resp_data, resp_msgid = self.result2(msgid,all,timeout) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:742: in result2 resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all,timeout) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:749: in result3 resp_ctrl_classes=resp_ctrl_classes /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:756: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:329: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/lib64/python3.6/site-packages/ldap/compat.py:44: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3deb3f1908> func = <built-in method result4 of LDAP object at 0x7f3deb25f738> 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.NO_SUCH_OBJECT: {'desc': 'No such object'} /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:313: NO_SUCH_OBJECT ---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. topologies.py 106 INFO Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. topologies.py 139 INFO Creating replication topology. topologies.py 153 INFO Joining master master2 to master1 ... replica.py 1500 INFO SUCCESS: bootstrap to ldap://server.example.com:39002 completed replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 is was created replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 is was created replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39001 to ldap://server.example.com:39002 is working replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39002 to ldap://server.example.com:39001 is working replica.py 1569 INFO SUCCESS: joined master from ldap://server.example.com:39001 to ldap://server.example.com:39002 topologies.py 161 INFO Ensuring master master1 to master2 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 already exists topologies.py 161 INFO Ensuring master master2 to master1 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 already exists----------------------------- Captured stdout call ----------------------------- 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]? pk12util: PKCS12 EXPORT SUCCESSFUL pk12util: PKCS12 IMPORT SUCCESSFUL ----------------------------- Captured stderr call ----------------------------- Generating key. This may take a few moments... ------------------------------ Captured log call ------------------------------- regression_test.py 397 INFO Ticket 47536 - Allow usage of OpenLDAP libraries that don't use NSS for crypto regression_test.py 127 INFO ######################### Creating SSL Keys and Certs ###################### regression_test.py 130 INFO ##### Ensure that nsslapd-extract-pemfiles is 'off' on master1 regression_test.py 132 INFO ##### restart master1 regression_test.py 130 INFO ##### Ensure that nsslapd-extract-pemfiles is 'off' on master2 regression_test.py 132 INFO ##### restart master2 regression_test.py 140 INFO ##### shutdown master1 regression_test.py 143 INFO ##### Creating a password file regression_test.py 152 INFO ##### create the pin file regression_test.py 163 INFO ##### Creating a noise file regression_test.py 172 INFO ##### Create key3.db and cert8.db database (master1): ['certutil', '-N', '-d', '/etc/dirsrv/slapd-master1', '-f', '/etc/dirsrv/slapd-master1/pwdfile.txt'] regression_test.py 111 INFO OUT: regression_test.py 117 INFO ERR: regression_test.py 176 INFO ##### Creating encryption key for CA (master1): ['certutil', '-G', '-d', '/etc/dirsrv/slapd-master1', '-z', '/etc/dirsrv/slapd-master1/noise.txt', '-f', '/etc/dirsrv/slapd-master1/pwdfile.txt'] regression_test.py 111 INFO OUT: regression_test.py 117 INFO ERR: regression_test.py 182 INFO ##### Creating self-signed CA certificate (master1) -- nickname CAcertificate regression_test.py 190 INFO ##### Creating Server certificate -- nickname Server-Cert1: ['certutil', '-S', '-n', 'Server-Cert1', '-s', 'CN=server.example.com,OU=389 Directory Server', '-c', 'CAcertificate', '-t', ',,', '-m', '1001', '-v', '120', '-d', '/etc/dirsrv/slapd-master1', '-z', '/etc/dirsrv/slapd-master1/noise.txt', '-f', '/etc/dirsrv/slapd-master1/pwdfile.txt'] regression_test.py 111 INFO OUT: regression_test.py 117 INFO ERR: regression_test.py 198 INFO ##### Creating Server certificate -- nickname Server-Cert2: ['certutil', '-S', '-n', 'Server-Cert2', '-s', 'CN=server.example.com,OU=390 Directory Server', '-c', 'CAcertificate', '-t', ',,', '-m', '1002', '-v', '120', '-d', '/etc/dirsrv/slapd-master1', '-z', '/etc/dirsrv/slapd-master1/noise.txt', '-f', '/etc/dirsrv/slapd-master1/pwdfile.txt'] regression_test.py 111 INFO OUT: regression_test.py 117 INFO ERR: regression_test.py 203 INFO ##### start master1 regression_test.py 206 INFO ##### enable SSL in master1 with all ciphers regression_test.py 46 INFO ######################### Enabling SSL LDAPSPORT 41636 ###################### regression_test.py 210 INFO ##### Check the cert db: ['certutil', '-L', '-d', '/etc/dirsrv/slapd-master1'] regression_test.py 111 INFO OUT: regression_test.py 116 INFO regression_test.py 116 INFO Certificate Nickname Trust Attributes regression_test.py 116 INFO SSL,S/MIME,JAR/XPI regression_test.py 116 INFO regression_test.py 116 INFO CAcertificate CTu,u,u regression_test.py 116 INFO Server-Cert1 u,u,u regression_test.py 116 INFO Server-Cert2 u,u,u regression_test.py 117 INFO ERR: regression_test.py 213 INFO ##### restart master1 regression_test.py 216 INFO ##### Check PEM files of master1 (before setting nsslapd-extract-pemfiles regression_test.py 66 INFO ######################### Check PEM files (CAcertificate, Server-Cert1, Server-Cert1-Key) not in /etc/dirsrv/slapd-master1 ###################### regression_test.py 80 INFO /etc/dirsrv/slapd-master1/CAcertificate.pem is correctly not generated. regression_test.py 93 INFO /etc/dirsrv/slapd-master1/Server-Cert1.pem is correctly not generated. regression_test.py 106 INFO /etc/dirsrv/slapd-master1/Server-Cert1-Key.pem is correctly not generated. regression_test.py 219 INFO ##### Set on to nsslapd-extract-pemfiles regression_test.py 222 INFO ##### restart master1 regression_test.py 225 INFO ##### Check PEM files of master1 (after setting nsslapd-extract-pemfiles regression_test.py 66 INFO ######################### Check PEM files (CAcertificate, Server-Cert1, Server-Cert1-Key) in /etc/dirsrv/slapd-master1 ###################### regression_test.py 71 INFO /etc/dirsrv/slapd-master1/CAcertificate.pem is successfully generated. regression_test.py 84 INFO /etc/dirsrv/slapd-master1/Server-Cert1.pem is successfully generated. regression_test.py 97 INFO /etc/dirsrv/slapd-master1/Server-Cert1-Key.pem is successfully generated. regression_test.py 232 INFO ##### Extract PK12 file for master2: pk12util -o /tmp/Server-Cert2.pk12 -n "Server-Cert2" -d /etc/dirsrv/slapd-master1 -w /etc/dirsrv/slapd-master1/pwdfile.txt -k /etc/dirsrv/slapd-master1/pwdfile.txt regression_test.py 235 INFO ##### Check PK12 files regression_test.py 237 INFO /tmp/Server-Cert2.pk12 is successfully extracted. regression_test.py 242 INFO ##### stop master2 regression_test.py 245 INFO ##### Initialize Cert DB for master2 regression_test.py 247 INFO ##### Create key3.db and cert8.db database (master2): ['certutil', '-N', '-d', '/etc/dirsrv/slapd-master2', '-f', '/etc/dirsrv/slapd-master1/pwdfile.txt'] regression_test.py 111 INFO OUT: regression_test.py 117 INFO ERR: regression_test.py 250 INFO ##### Import certs to master2 regression_test.py 251 INFO Importing CAcertificate regression_test.py 255 INFO ##### Importing Server-Cert2 to master2: pk12util -i /tmp/Server-Cert2.pk12 -n "Server-Cert2" -d /etc/dirsrv/slapd-master2 -w /etc/dirsrv/slapd-master1/pwdfile.txt -k /etc/dirsrv/slapd-master1/pwdfile.txt regression_test.py 257 INFO copy /etc/dirsrv/slapd-master1/pin.txt to /etc/dirsrv/slapd-master2/pin.txt regression_test.py 261 INFO ##### start master2 regression_test.py 264 INFO ##### enable SSL in master2 with all ciphers regression_test.py 46 INFO ######################### Enabling SSL LDAPSPORT 42636 ###################### regression_test.py 267 INFO ##### restart master2 regression_test.py 270 INFO ##### Check PEM files of master2 (before setting nsslapd-extract-pemfiles regression_test.py 66 INFO ######################### Check PEM files (CAcertificate, Server-Cert2, Server-Cert2-Key) not in /etc/dirsrv/slapd-master2 ###################### regression_test.py 80 INFO /etc/dirsrv/slapd-master2/CAcertificate.pem is correctly not generated. regression_test.py 93 INFO /etc/dirsrv/slapd-master2/Server-Cert2.pem is correctly not generated. regression_test.py 106 INFO /etc/dirsrv/slapd-master2/Server-Cert2-Key.pem is correctly not generated. regression_test.py 273 INFO ##### Set on to nsslapd-extract-pemfiles regression_test.py 276 INFO ##### restart master2 regression_test.py 279 INFO ##### Check PEM files of master2 (after setting nsslapd-extract-pemfiles regression_test.py 66 INFO ######################### Check PEM files (CAcertificate, Server-Cert2, Server-Cert2-Key) in /etc/dirsrv/slapd-master2 ###################### regression_test.py 71 INFO /etc/dirsrv/slapd-master2/CAcertificate.pem is successfully generated. regression_test.py 84 INFO /etc/dirsrv/slapd-master2/Server-Cert2.pem is successfully generated. regression_test.py 97 INFO /etc/dirsrv/slapd-master2/Server-Cert2-Key.pem is successfully generated. regression_test.py 282 INFO ##### restart master1 regression_test.py 285 INFO ######################### Creating SSL Keys and Certs Done ###################### regression_test.py 289 INFO ######################### Configure SSL/TLS agreements ###################### regression_test.py 290 INFO ######################## master1 -- startTLS -> master2 ##################### regression_test.py 291 INFO ##################### master1 <- tls_clientAuth -- master2 ################## regression_test.py 293 INFO ##### Update the agreement of master1 regression_test.py 299 INFO ##### Add the cert to the repl manager on master1 regression_test.py 313 INFO ##### master2 Server Cert in base64 format: MIICxzCCAa+gAwIBAgICA+owDQYJKoZIhvcNAQELBQAwETEPMA0GA1UEAxMGQ0FjZXJ0MB4XDTE4MDkyNDAwNDg1MVoXDTI4MDkyNDAwNDg1MVowPDEdMBsGA1UECxMUMzkwIERpcmVjdG9yeSBTZXJ2ZXIxGzAZBgNVBAMTEnNlcnZlci5leGFtcGxlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ+F4P0QlSImhd3NVGyPGfWbik/NC3Lf9q4hxpoJj4WLPmeoDhF8Cv9RpJLwB0KPypasMS+4IWcn8De7dPP2QWX/mkBqTQ/hbBVq9/sL7cdx6A7AEj39C1Vro/tp22Ais5fnmVBsJX9ZQ6sp2VVP6fRzvR5UOFdHlDXYE3+jK6CMcB2b/zZBPbRi60uy2ibapktnrV61Nphp1ubUXTZ98cdeai5YLQSutLCGUrr5u6O8Df53uK40Jk2sR2nuRLg1Wy62iAu2bvglhS4p9BFyctzF7rfaPnAhh72Md7QdOUwuTmty/BqI4fqmqgjjhRBv9xer4RnS01B3xL/F9wu3yPECAwEAATANBgkqhkiG9w0BAQsFAAOCAQEACoPha3dmwgQ8w9XrAI5pcoFoMP9WZRuD7VJDYDjKDPxgghKmnyqrYuIfSpcFnNr7D6Io1xw4onCZTbdtsqNJ++szbWFacBOS5OPG9L20m4qMkU5b0P1g3CleqvscRVLv0bcZsp5NR6zM36R0l7m+LZz+sG0IXSeFI7XQlLtd0qmNQUpp8bPTukSkNysN4W8zXvnUGxqjISzO0WIv1B8+PIfKbUWWzPKP42PUH0PrPyVMZQNuamc+lbfDL4TdxyqOYP4zLeR9M9PigCLZGu07WIXRmIk93l5qxJy3/z0OzdBzI7cj5i1cl81C7EdCJj34oWACMBPfZi09/gQB+eAKuA== | |||
Failed | tickets/ticket47462_test.py::test_ticket47462 | 0.00 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f3deaf465f8> def test_ticket47462(topology_m2): """ Test that AES properly replaces DES during an update/restart, and that replication also works correctly. """ # # First set config as if it's an older version. Set DES to use # libdes-plugin, MMR to depend on DES, delete the existing AES plugin, # and set a DES password for the replication agreement. # # Add an extra attribute to the DES plugin args # try: topology_m2.ms["master1"].modify_s(DES_PLUGIN, > [(ldap.MOD_REPLACE, 'nsslapd-pluginEnabled', 'on')]) tickets/ticket47462_test.py:47: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:629: in modify_s return self.modify_ext_s(dn,modlist,None,None) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:601: in modify_ext_s msgid = self.modify_ext(dn,modlist,serverctrls,clientctrls) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:598: in modify_ext return self._ldap_call(self._l.modify_ext,dn,modlist,RequestControlTuples(serverctrls),RequestControlTuples(clientctrls)) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3deaf68748> func = <built-in method modify_ext of LDAP object at 0x7f3deb2aaf58> args = ('cn=DES,cn=Password Storage Schemes,cn=plugins,cn=config', [(2, 'nsslapd-pluginEnabled', 'on')], 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', 'o') /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:313: TypeError ---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. topologies.py 106 INFO Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. topologies.py 139 INFO Creating replication topology. topologies.py 153 INFO Joining master master2 to master1 ... replica.py 1500 INFO SUCCESS: bootstrap to ldap://server.example.com:39002 completed replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 is was created replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 is was created replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39001 to ldap://server.example.com:39002 is working replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39002 to ldap://server.example.com:39001 is working replica.py 1569 INFO SUCCESS: joined master from ldap://server.example.com:39001 to ldap://server.example.com:39002 topologies.py 161 INFO Ensuring master master1 to master2 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 already exists topologies.py 161 INFO Ensuring master master2 to master1 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 already exists | |||
Failed | tickets/ticket47838_test.py::test_47838_init | 4.21 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f3dfc104d30> def test_47838_init(topology_st): """ Generate self signed cert and import it to the DS cert db. Enable SSL """ _header(topology_st, 'Testing Ticket 47838 - harden the list of ciphers available by default') onss_version = os.popen("rpm -q nss | awk -F'-' '{print $2}'", "r") global nss_version nss_version = onss_version.readline() nss_ssl = NssSsl(dbpath=topology_st.standalone.get_cert_dir()) nss_ssl.reinit() nss_ssl.create_rsa_ca() nss_ssl.create_rsa_key_and_cert() log.info("\n######################### enable SSL in the directory server with all ciphers ######################\n") topology_st.standalone.simple_bind_s(DN_DM, PASSWORD) topology_st.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3', b'off'), (ldap.MOD_REPLACE, 'nsTLS1', b'on'), (ldap.MOD_REPLACE, 'nsSSLClientAuth', b'allowed'), (ldap.MOD_REPLACE, 'allowWeakCipher', b'on'), (ldap.MOD_REPLACE, 'nsSSL3Ciphers', b'+all')]) topology_st.standalone.modify_s(CONFIG_DN, [(ldap.MOD_REPLACE, 'nsslapd-security', b'on'), (ldap.MOD_REPLACE, 'nsslapd-ssl-check-hostname', b'off'), (ldap.MOD_REPLACE, 'nsslapd-secureport', ensure_bytes(MY_SECURE_PORT))]) topology_st.standalone.add_s(Entry((RSA_DN, {'objectclass': "top nsEncryptionModule".split(), 'cn': RSA, 'nsSSLPersonalitySSL': SERVERCERT, 'nsSSLToken': 'internal (software)', > 'nsSSLActivation': 'on'}))) tickets/ticket47838_test.py:85: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.6/site-packages/lib389/__init__.py:161: in inner return f(ent.dn, ent.toTupleList(), *args[2:]) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:428: in add_s return self.add_ext_s(dn,modlist,None,None) /usr/lib/python3.6/site-packages/lib389/__init__.py:163: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:414: in add_ext_s resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:749: in result3 resp_ctrl_classes=resp_ctrl_classes /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:756: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:329: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/lib64/python3.6/site-packages/ldap/compat.py:44: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3deafe3b00> func = <built-in method result4 of LDAP object at 0x7f3deaff86c0> args = (6, 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: {'desc': 'Already exists'} /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:313: ALREADY_EXISTS ---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.------------------------------ Captured log call ------------------------------- ticket47838_test.py 48 INFO ############################################### ticket47838_test.py 49 INFO ####### ticket47838_test.py 50 INFO ####### Testing Ticket 47838 - harden the list of ciphers available by default ticket47838_test.py 51 INFO ####### ticket47838_test.py 52 INFO ############################################### ticket47838_test.py 69 INFO ######################### enable SSL in the directory server with all ciphers ###################### | |||
Failed | tickets/ticket47838_test.py::test_47838_run_4 | 9.48 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f3dfc104d30> def test_47838_run_4(topology_st): """ Check no nsSSL3Ciphers Default ciphers are enabled. default allowWeakCipher """ _header(topology_st, 'Test Case 5 - Check no nsSSL3Ciphers (default setting) 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.47838_3' % (topology_st.standalone.errlog, topology_st.standalone.errlog)) os.system('touch %s' % (topology_st.standalone.errlog)) time.sleep(1) topology_st.standalone.start(timeout=120) enabled = os.popen('egrep "SSL info:" %s | egrep \": enabled\" | wc -l' % topology_st.standalone.errlog) disabled = os.popen('egrep "SSL info:" %s | egrep \": disabled\" | wc -l' % topology_st.standalone.errlog) ecount = int(enabled.readline().rstrip()) dcount = int(disabled.readline().rstrip()) log.info("Enabled ciphers: %d" % ecount) log.info("Disabled ciphers: %d" % dcount) global plus_all_ecount global plus_all_dcount if nss_version >= NSS330: > assert ecount == 28 E assert 24 == 28 tickets/ticket47838_test.py:283: AssertionError ------------------------------ Captured log call ------------------------------- ticket47838_test.py 48 INFO ############################################### ticket47838_test.py 49 INFO ####### ticket47838_test.py 50 INFO ####### Test Case 5 - Check no nsSSL3Ciphers (default setting) with default allowWeakCipher ticket47838_test.py 51 INFO ####### ticket47838_test.py 52 INFO ############################################### ticket47838_test.py 267 INFO ######################### Restarting the server ###################### ticket47838_test.py 278 INFO Enabled ciphers: 24 ticket47838_test.py 279 INFO Disabled ciphers: 47 | |||
Failed | tickets/ticket47838_test.py::test_47838_run_5 | 4.48 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f3dfc104d30> def test_47838_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.47838_4' % (topology_st.standalone.errlog, topology_st.standalone.errlog)) os.system('touch %s' % (topology_st.standalone.errlog)) time.sleep(1) topology_st.standalone.start(timeout=120) enabled = os.popen('egrep "SSL info:" %s | egrep \": enabled\" | wc -l' % topology_st.standalone.errlog) disabled = os.popen('egrep "SSL info:" %s | egrep \": disabled\" | wc -l' % topology_st.standalone.errlog) ecount = int(enabled.readline().rstrip()) dcount = int(disabled.readline().rstrip()) log.info("Enabled ciphers: %d" % ecount) log.info("Disabled ciphers: %d" % dcount) global plus_all_ecount global plus_all_dcount if nss_version >= NSS330: > assert ecount == 28 E assert 24 == 28 tickets/ticket47838_test.py:326: AssertionError ------------------------------ Captured log call ------------------------------- ticket47838_test.py 48 INFO ############################################### ticket47838_test.py 49 INFO ####### ticket47838_test.py 50 INFO ####### Test Case 6 - Check default nsSSL3Ciphers (default setting) with default allowWeakCipher ticket47838_test.py 51 INFO ####### ticket47838_test.py 52 INFO ############################################### ticket47838_test.py 309 INFO ######################### Restarting the server ###################### ticket47838_test.py 321 INFO Enabled ciphers: 24 ticket47838_test.py 322 INFO Disabled ciphers: 47 | |||
Failed | tickets/ticket47838_test.py::test_47838_run_8 | 4.52 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f3dfc104d30> def test_47838_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.47838_7' % (topology_st.standalone.errlog, topology_st.standalone.errlog)) os.system('touch %s' % (topology_st.standalone.errlog)) time.sleep(1) topology_st.standalone.start(timeout=120) enabled = os.popen('egrep "SSL info:" %s | egrep \": enabled\" | wc -l' % topology_st.standalone.errlog) disabled = os.popen('egrep "SSL info:" %s | egrep \": disabled\" | wc -l' % topology_st.standalone.errlog) ecount = int(enabled.readline().rstrip()) dcount = int(disabled.readline().rstrip()) log.info("Enabled ciphers: %d" % ecount) log.info("Disabled ciphers: %d" % dcount) global plus_all_ecount global plus_all_dcount if nss_version >= NSS330: > assert ecount == 28 E assert 24 == 28 tickets/ticket47838_test.py:439: AssertionError ------------------------------ Captured log call ------------------------------- ticket47838_test.py 48 INFO ############################################### ticket47838_test.py 49 INFO ####### ticket47838_test.py 50 INFO ####### Test Case 9 - Check default nsSSL3Ciphers (default setting + allowWeakCipher: off) ticket47838_test.py 51 INFO ####### ticket47838_test.py 52 INFO ############################################### ticket47838_test.py 422 INFO ######################### Restarting the server ###################### ticket47838_test.py 434 INFO Enabled ciphers: 24 ticket47838_test.py 435 INFO Disabled ciphers: 47 | |||
Failed | tickets/ticket47838_test.py::test_47838_run_9 | 4.45 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f3dfc104d30> def test_47838_run_9(topology_st): """ Check no nsSSL3Ciphers Default ciphers are enabled. allowWeakCipher: on nsslapd-errorlog-level: 0 """ _header(topology_st, 'Test Case 10 - Check no nsSSL3Ciphers (default setting) with no errorlog-level & allowWeakCipher on') topology_st.standalone.simple_bind_s(DN_DM, PASSWORD) topology_st.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3Ciphers', None), (ldap.MOD_REPLACE, 'allowWeakCipher', b'on')]) topology_st.standalone.modify_s(CONFIG_DN, [(ldap.MOD_REPLACE, 'nsslapd-errorlog-level', None)]) log.info("\n######################### Restarting the server ######################\n") topology_st.standalone.stop(timeout=10) os.system('mv %s %s.47838_8' % (topology_st.standalone.errlog, topology_st.standalone.errlog)) os.system('touch %s' % (topology_st.standalone.errlog)) time.sleep(1) topology_st.standalone.start(timeout=120) enabled = os.popen('egrep "SSL info:" %s | egrep \": enabled\" | wc -l' % topology_st.standalone.errlog) disabled = os.popen('egrep "SSL info:" %s | egrep \": disabled\" | wc -l' % topology_st.standalone.errlog) ecount = int(enabled.readline().rstrip()) dcount = int(disabled.readline().rstrip()) log.info("Enabled ciphers: %d" % ecount) log.info("Disabled ciphers: %d" % dcount) if nss_version >= NSS330: > assert ecount == 33 E assert 24 == 33 tickets/ticket47838_test.py:484: AssertionError ------------------------------ Captured log call ------------------------------- ticket47838_test.py 48 INFO ############################################### ticket47838_test.py 49 INFO ####### ticket47838_test.py 50 INFO ####### Test Case 10 - Check no nsSSL3Ciphers (default setting) with no errorlog-level & allowWeakCipher on ticket47838_test.py 51 INFO ####### ticket47838_test.py 52 INFO ############################################### ticket47838_test.py 469 INFO ######################### Restarting the server ###################### ticket47838_test.py 481 INFO Enabled ciphers: 24 ticket47838_test.py 482 INFO Disabled ciphers: 0 | |||
Failed | tickets/ticket47950_test.py::test_ticket47950 | 0.00 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f3deaeab3c8> def test_ticket47950(topology_st): """ Testing nsslapd-plugin-binddn-tracking does not cause issues around access control and reconfiguring replication/repl agmt. """ log.info('Testing Ticket 47950 - Testing nsslapd-plugin-binddn-tracking') # # Turn on bind dn tracking # try: > topology_st.standalone.modify_s("cn=config", [(ldap.MOD_REPLACE, 'nsslapd-plugin-binddn-tracking', 'on')]) tickets/ticket47950_test.py:39: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:629: in modify_s return self.modify_ext_s(dn,modlist,None,None) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:601: in modify_ext_s msgid = self.modify_ext(dn,modlist,serverctrls,clientctrls) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:598: in modify_ext return self._ldap_call(self._l.modify_ext,dn,modlist,RequestControlTuples(serverctrls),RequestControlTuples(clientctrls)) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3deb0f9b38> func = <built-in method modify_ext of LDAP object at 0x7f3deac1d788> args = ('cn=config', [(2, 'nsslapd-plugin-binddn-tracking', 'on')], 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', 'o') /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:313: TypeError ---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Failed | tickets/ticket47966_test.py::test_ticket47966 | 0.00 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f3deaeeb7b8> def test_ticket47966(topology_m2): ''' Testing bulk import when the backend with VLV was recreated. If the test passes without the server crash, 47966 is verified. ''' log.info('Testing Ticket 47966 - [VLV] slapd crashes during Dogtag clone reinstallation') M1 = topology_m2.ms["master1"] M2 = topology_m2.ms["master2"] m1_m2_agmt = M1.agreement.list(suffix=DEFAULT_SUFFIX)[0].dn log.info('0. Create a VLV index on Master 2.') # get the backend entry be = M2.replica.conn.backend.list(suffix=DEFAULT_SUFFIX) if not be: log.fatal("ticket47966: enable to retrieve the backend for %s" % DEFAULT_SUFFIX) raise ValueError("no backend for suffix %s" % DEFAULT_SUFFIX) bent = be[0] beName = bent.getValue('cn') beDn = "cn=%s,cn=ldbm database,cn=plugins,cn=config" % beName # generate vlvSearch entry vlvSrchDn = "cn=vlvSrch,%s" % beDn log.info('0-1. vlvSearch dn: %s' % vlvSrchDn) vlvSrchEntry = Entry(vlvSrchDn) vlvSrchEntry.setValues('objectclass', 'top', 'vlvSearch') vlvSrchEntry.setValues('cn', 'vlvSrch') vlvSrchEntry.setValues('vlvBase', DEFAULT_SUFFIX) vlvSrchEntry.setValues('vlvFilter', '(|(objectclass=*)(objectclass=ldapsubentry))') vlvSrchEntry.setValues('vlvScope', '2') > M2.add_s(vlvSrchEntry) tickets/ticket47966_test.py:50: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.6/site-packages/lib389/__init__.py:161: in inner return f(ent.dn, ent.toTupleList(), *args[2:]) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:428: in add_s return self.add_ext_s(dn,modlist,None,None) /usr/lib/python3.6/site-packages/lib389/__init__.py:163: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:414: in add_ext_s resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:749: in result3 resp_ctrl_classes=resp_ctrl_classes /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:756: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:329: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/lib64/python3.6/site-packages/ldap/compat.py:44: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3deb18b588> func = <built-in method result4 of LDAP object at 0x7f3deaeac3a0> args = (29, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None exc_type = None, exc_value = None, exc_traceback = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E ldap.NO_SUCH_OBJECT: {'desc': 'No such object'} /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:313: NO_SUCH_OBJECT ---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. topologies.py 106 INFO Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. topologies.py 139 INFO Creating replication topology. topologies.py 153 INFO Joining master master2 to master1 ... replica.py 1500 INFO SUCCESS: bootstrap to ldap://server.example.com:39002 completed replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 is was created replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 is was created replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39001 to ldap://server.example.com:39002 is working replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39002 to ldap://server.example.com:39001 is working replica.py 1569 INFO SUCCESS: joined master from ldap://server.example.com:39001 to ldap://server.example.com:39002 topologies.py 161 INFO Ensuring master master1 to master2 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 already exists topologies.py 161 INFO Ensuring master master2 to master1 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 already exists------------------------------ Captured log call ------------------------------- ticket47966_test.py 26 INFO Testing Ticket 47966 - [VLV] slapd crashes during Dogtag clone reinstallation ticket47966_test.py 31 INFO 0. Create a VLV index on Master 2. backend.py 74 INFO List backend with suffix=dc=example,dc=com ticket47966_test.py 43 INFO 0-1. vlvSearch dn: cn=vlvSrch,cn=b'userRoot',cn=ldbm database,cn=plugins,cn=config | |||
Failed | tickets/ticket47988_test.py::test_ticket47988_init | 4.86 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f3deae827b8> 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:155: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.6/site-packages/lib389/__init__.py:1204: in start "dirsrv@%s" % self.serverid]) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ popenargs = (['/usr/bin/systemctl', 'start', 'dirsrv@master1'],), kwargs = {} retcode = 1, cmd = ['/usr/bin/systemctl', 'start', 'dirsrv@master1'] def check_call(*popenargs, **kwargs): """Run command with arguments. Wait for command to complete. If the exit code was zero then return, otherwise raise CalledProcessError. The CalledProcessError object will have the return code in the returncode attribute. The arguments are the same as for the call function. Example: check_call(["ls", "-l"]) """ retcode = call(*popenargs, **kwargs) if retcode: cmd = kwargs.get("args") if cmd is None: cmd = popenargs[0] > raise CalledProcessError(retcode, cmd) E subprocess.CalledProcessError: Command '['/usr/bin/systemctl', 'start', 'dirsrv@master1']' returned non-zero exit status 1. /usr/lib64/python3.6/subprocess.py:291: CalledProcessError ---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. topologies.py 106 INFO Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. topologies.py 139 INFO Creating replication topology. topologies.py 153 INFO Joining master master2 to master1 ... replica.py 1500 INFO SUCCESS: bootstrap to ldap://server.example.com:39002 completed replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 is was created replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 is was created replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39001 to ldap://server.example.com:39002 is working replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39002 to ldap://server.example.com:39001 is working replica.py 1569 INFO SUCCESS: joined master from ldap://server.example.com:39001 to ldap://server.example.com:39002 topologies.py 161 INFO Ensuring master master1 to master2 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 already exists topologies.py 161 INFO Ensuring master master2 to master1 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 already exists----------------------------- Captured stderr call ----------------------------- Job for dirsrv@master1.service failed because the control process exited with error code. See "systemctl status dirsrv@master1.service" and "journalctl -xe" for details. ------------------------------ Captured log call ------------------------------- ticket47988_test.py 62 INFO ############################################### ticket47988_test.py 63 INFO ####### ticket47988_test.py 64 INFO ####### test_ticket47988_init ticket47988_test.py 65 INFO ####### ticket47988_test.py 66 INFO ################################################### ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/02common.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/50ns-admin.ldif ticket47988_test.py 96 INFO replace /etc/dirsrv/slapd-master1/schema/99user.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/60nss-ldap.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/60autofs.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/50ns-web.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/60samba.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/10dna-plugin.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/05rfc4523.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/60basev2.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/10automember-plugin.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/05rfc2927.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/10mep-plugin.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/60ipadns.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/10rfc2307.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/50ns-mail.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/05rfc4524.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/60trust.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/60ipaconfig.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/50ns-directory.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/60eduperson.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/60mozilla.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/65ipasudo.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/60rfc3712.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/60rfc2739.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/50ns-value.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/60acctpolicy.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/01core389.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/60sabayon.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/60pam-plugin.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/00core.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/25java-object.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/60sudo.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/70ipaotp.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/60pureftpd.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/61kerberos-ipav3.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/60kerberos.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/60basev3.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/06inetorgperson.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/30ns-common.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/28pilot.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/20subscriber.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/50ns-certificate.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master1/schema/60posix-winsync-plugin.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/02common.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/50ns-admin.ldif ticket47988_test.py 96 INFO replace /etc/dirsrv/slapd-master2/schema/99user.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/60nss-ldap.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/60autofs.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/50ns-web.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/60samba.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/10dna-plugin.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/05rfc4523.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/60basev2.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/10automember-plugin.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/05rfc2927.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/10mep-plugin.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/60ipadns.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/10rfc2307.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/50ns-mail.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/05rfc4524.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/60trust.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/60ipaconfig.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/50ns-directory.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/60eduperson.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/60mozilla.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/65ipasudo.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/60rfc3712.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/60rfc2739.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/50ns-value.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/60acctpolicy.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/01core389.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/60sabayon.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/60pam-plugin.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/00core.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/25java-object.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/60sudo.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/70ipaotp.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/60pureftpd.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/61kerberos-ipav3.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/60kerberos.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/60basev3.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/06inetorgperson.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/30ns-common.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/28pilot.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/20subscriber.ldif ticket47988_test.py 100 INFO add /etc/dirsrv/slapd-master2/schema/50ns-certificate.ldif ticket47988_test.py 100 INFO 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 0x7f3deae827b8> 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:232: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /export/tests/tickets/ticket47988_test.py:182: in _do_update_entry supplier.modify_s(entryDN, mod) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:629: in modify_s return self.modify_ext_s(dn,modlist,None,None) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:602: in modify_ext_s resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:749: in result3 resp_ctrl_classes=resp_ctrl_classes /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:756: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:329: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/lib64/python3.6/site-packages/ldap/compat.py:44: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3deaff92b0> func = <built-in method result4 of LDAP object at 0x7f3deaeac288> args = (31, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None exc_type = None, exc_value = None, exc_traceback = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E ldap.SERVER_DOWN: {'desc': "Can't contact LDAP server"} /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:313: SERVER_DOWN ------------------------------ Captured log call ------------------------------- ticket47988_test.py 62 INFO ############################################### ticket47988_test.py 63 INFO ####### ticket47988_test.py 64 INFO ####### test_ticket47988_1 ticket47988_test.py 65 INFO ####### ticket47988_test.py 66 INFO ################################################### | |||
Failed | tickets/ticket47988_test.py::test_ticket47988_2 | 0.00 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f3deae827b8> 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:244: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.6/site-packages/lib389/schema.py:539: in get_schema_csn "objectclass=*", ['nsSchemaCSN']) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:852: in search_s return self.search_ext_s(base,scope,filterstr,attrlist,attrsonly,None,None,timeout=self.timeout) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:846: in search_ext_s return self.result(msgid,all=1,timeout=timeout)[1] /usr/lib/python3.6/site-packages/lib389/__init__.py:133: in inner objtype, data = f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:738: in result resp_type, resp_data, resp_msgid = self.result2(msgid,all,timeout) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:742: in result2 resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all,timeout) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:749: in result3 resp_ctrl_classes=resp_ctrl_classes /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:756: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:329: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/lib64/python3.6/site-packages/ldap/compat.py:44: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3deaff9518> func = <built-in method result4 of LDAP object at 0x7f3deb0b18f0> args = (67, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None exc_type = None, exc_value = None, exc_traceback = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E ldap.SERVER_DOWN: {'desc': "Can't contact LDAP server"} /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:313: SERVER_DOWN ------------------------------ Captured log call ------------------------------- ticket47988_test.py 62 INFO ############################################### ticket47988_test.py 63 INFO ####### ticket47988_test.py 64 INFO ####### test_ticket47988_2 ticket47988_test.py 65 INFO ####### ticket47988_test.py 66 INFO ################################################### | |||
Failed | tickets/ticket47988_test.py::test_ticket47988_3 | 0.00 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f3deae827b8> 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:281: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /export/tests/tickets/ticket47988_test.py:220: in _resume_M2_to_M1 ents = topology_m2.ms["master2"].agreement.list(suffix=SUFFIX) /usr/lib/python3.6/site-packages/lib389/agreement.py:851: in list replica_entries = self.conn.replica.list(suffix) /usr/lib/python3.6/site-packages/lib389/replica.py:168: in list ents = self.conn.search_s(base, ldap.SCOPE_SUBTREE, filtr) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:852: in search_s return self.search_ext_s(base,scope,filterstr,attrlist,attrsonly,None,None,timeout=self.timeout) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:845: in search_ext_s msgid = self.search_ext(base,scope,filterstr,attrlist,attrsonly,serverctrls,clientctrls,timeout,sizelimit) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:841: in search_ext timeout,sizelimit, /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:329: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/lib64/python3.6/site-packages/ldap/compat.py:44: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3deaff92b0> func = <built-in method search_ext of LDAP object at 0x7f3deaeac288> args = ('cn=mapping tree,cn=config', 2, '(&(objectclass=nsds5Replica)(nsDS5ReplicaRoot=dc=example,dc=com))', None, 0, None, ...) kwargs = {}, diagnostic_message_success = None, exc_type = None exc_value = None, exc_traceback = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E ldap.SERVER_DOWN: {'desc': "Can't contact LDAP server"} /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:313: SERVER_DOWN ------------------------------ Captured log call ------------------------------- ticket47988_test.py 62 INFO ############################################### ticket47988_test.py 63 INFO ####### ticket47988_test.py 64 INFO ####### test_ticket47988_3 ticket47988_test.py 65 INFO ####### ticket47988_test.py 66 INFO ################################################### ticket47988_test.py 219 INFO ######################### resume RA M2->M1 ###################### | |||
Failed | tickets/ticket47988_test.py::test_ticket47988_4 | 0.00 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f3deae827b8> 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:293: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.6/site-packages/lib389/schema.py:539: in get_schema_csn "objectclass=*", ['nsSchemaCSN']) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:852: in search_s return self.search_ext_s(base,scope,filterstr,attrlist,attrsonly,None,None,timeout=self.timeout) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:845: in search_ext_s msgid = self.search_ext(base,scope,filterstr,attrlist,attrsonly,serverctrls,clientctrls,timeout,sizelimit) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:841: in search_ext timeout,sizelimit, /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:329: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/lib64/python3.6/site-packages/ldap/compat.py:44: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3deaff9518> func = <built-in method search_ext of LDAP object at 0x7f3deb0b18f0> args = ('cn=schema', 0, 'objectclass=*', ['nsSchemaCSN'], 0, None, ...) kwargs = {}, diagnostic_message_success = None, exc_type = None exc_value = None, exc_traceback = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E ldap.SERVER_DOWN: {'desc': "Can't contact LDAP server"} /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:313: SERVER_DOWN ------------------------------ Captured log call ------------------------------- ticket47988_test.py 62 INFO ############################################### ticket47988_test.py 63 INFO ####### ticket47988_test.py 64 INFO ####### test_ticket47988_4 ticket47988_test.py 65 INFO ####### ticket47988_test.py 66 INFO ################################################### | |||
Failed | tickets/ticket47988_test.py::test_ticket47988_5 | 0.00 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f3deae827b8> 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:311: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /export/tests/tickets/ticket47988_test.py:182: in _do_update_entry supplier.modify_s(entryDN, mod) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:629: in modify_s return self.modify_ext_s(dn,modlist,None,None) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:601: in modify_ext_s msgid = self.modify_ext(dn,modlist,serverctrls,clientctrls) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:598: in modify_ext return self._ldap_call(self._l.modify_ext,dn,modlist,RequestControlTuples(serverctrls),RequestControlTuples(clientctrls)) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:329: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/lib64/python3.6/site-packages/ldap/compat.py:44: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3deaff9518> func = <built-in method modify_ext of LDAP object at 0x7f3deb0b18f0> args = ('cn=other_entry0,dc=example,dc=com', [(2, 'telephonenumber', b'103')], None, None) kwargs = {}, diagnostic_message_success = None, exc_type = None exc_value = None, exc_traceback = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E ldap.SERVER_DOWN: {'desc': "Can't contact LDAP server"} /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:313: SERVER_DOWN ------------------------------ Captured log call ------------------------------- ticket47988_test.py 62 INFO ############################################### ticket47988_test.py 63 INFO ####### ticket47988_test.py 64 INFO ####### test_ticket47988_5 ticket47988_test.py 65 INFO ####### ticket47988_test.py 66 INFO ################################################### | |||
Failed | tickets/ticket47988_test.py::test_ticket47988_6 | 0.00 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f3deae827b8> 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:334: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.6/site-packages/lib389/schema.py:539: in get_schema_csn "objectclass=*", ['nsSchemaCSN']) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:852: in search_s return self.search_ext_s(base,scope,filterstr,attrlist,attrsonly,None,None,timeout=self.timeout) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:845: in search_ext_s msgid = self.search_ext(base,scope,filterstr,attrlist,attrsonly,serverctrls,clientctrls,timeout,sizelimit) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:841: in search_ext timeout,sizelimit, /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:329: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/lib64/python3.6/site-packages/ldap/compat.py:44: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3deaff9518> func = <built-in method search_ext of LDAP object at 0x7f3deb0b18f0> args = ('cn=schema', 0, 'objectclass=*', ['nsSchemaCSN'], 0, None, ...) kwargs = {}, diagnostic_message_success = None, exc_type = None exc_value = None, exc_traceback = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E ldap.SERVER_DOWN: {'desc': "Can't contact LDAP server"} /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:313: SERVER_DOWN ------------------------------ Captured log call ------------------------------- ticket47988_test.py 62 INFO ############################################### ticket47988_test.py 63 INFO ####### ticket47988_test.py 64 INFO ####### test_ticket47988_6 ticket47988_test.py 65 INFO ####### ticket47988_test.py 66 INFO ################################################### | |||
Failed | tickets/ticket48194_test.py::test_init | 4.22 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f3deb0ec748> def test_init(topology_st): """ Generate self signed cert and import it to the DS cert db. Enable SSL """ _header(topology_st, 'Testing Ticket 48194 - harden the list of ciphers available by default') nss_ssl = NssSsl(dbpath=topology_st.standalone.get_cert_dir()) nss_ssl.reinit() nss_ssl.create_rsa_ca() nss_ssl.create_rsa_key_and_cert() log.info("\n######################### enable SSL in the directory server with all ciphers ######################\n") topology_st.standalone.simple_bind_s(DN_DM, PASSWORD) topology_st.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3', b'off'), (ldap.MOD_REPLACE, 'nsTLS1', b'on'), (ldap.MOD_REPLACE, 'nsSSLClientAuth', b'allowed'), (ldap.MOD_REPLACE, 'allowWeakCipher', b'on'), (ldap.MOD_REPLACE, 'nsSSL3Ciphers', b'+all')]) topology_st.standalone.modify_s(CONFIG_DN, [(ldap.MOD_REPLACE, 'nsslapd-security', b'on'), (ldap.MOD_REPLACE, 'nsslapd-ssl-check-hostname', b'off'), (ldap.MOD_REPLACE, 'nsslapd-secureport', ensure_bytes(LDAPSPORT))]) topology_st.standalone.add_s(Entry((RSA_DN, {'objectclass': "top nsEncryptionModule".split(), 'cn': RSA, 'nsSSLPersonalitySSL': SERVERCERT, 'nsSSLToken': 'internal (software)', > 'nsSSLActivation': 'on'}))) /export/tests/tickets/ticket48194_test.py:72: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.6/site-packages/lib389/__init__.py:161: in inner return f(ent.dn, ent.toTupleList(), *args[2:]) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:428: in add_s return self.add_ext_s(dn,modlist,None,None) /usr/lib/python3.6/site-packages/lib389/__init__.py:163: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:414: in add_ext_s resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:749: in result3 resp_ctrl_classes=resp_ctrl_classes /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:756: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:329: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/lib64/python3.6/site-packages/ldap/compat.py:44: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3deb062cc0> func = <built-in method result4 of LDAP object at 0x7f3dead5cdf0> args = (6, 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: {'desc': 'Already exists'} /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:313: ALREADY_EXISTS ---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.------------------------------ Captured log call ------------------------------- ticket48194_test.py 39 INFO ############################################### ticket48194_test.py 40 INFO ####### Testing Ticket 48194 - harden the list of ciphers available by default ticket48194_test.py 41 INFO ############################################### ticket48194_test.py 56 INFO ######################### enable SSL in the directory server with all ciphers ###################### | |||
Failed | tickets/ticket48194_test.py::test_run_0 | 10.37 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f3deb0ec748> def test_run_0(topology_st): """ Check nsSSL3Ciphers: +all All ciphers are enabled except null. Note: allowWeakCipher: on """ _header(topology_st, 'Test Case 1 - Check the ciphers availability for "+all"; allowWeakCipher: on') topology_st.standalone.simple_bind_s(DN_DM, PASSWORD) topology_st.standalone.modify_s(CONFIG_DN, [(ldap.MOD_REPLACE, 'nsslapd-errorlog-level', b'64')]) log.info("\n######################### Restarting the server ######################\n") topology_st.standalone.restart(timeout=120) > connectWithOpenssl(topology_st, 'DES-CBC3-SHA', True) /export/tests/tickets/ticket48194_test.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ topology_st = <lib389.topologies.TopologyMain object at 0x7f3deb0ec748> cipher = 'DES-CBC3-SHA', expect = True def connectWithOpenssl(topology_st, cipher, expect): """ Connect with the given cipher Condition: If expect is True, the handshake should be successful. If expect is False, the handshake should be refused with access log: "Cannot communicate securely with peer: no common encryption algorithm(s)." """ log.info("Testing %s -- expect to handshake %s", cipher, "successfully" if expect else "failed") myurl = 'localhost:%s' % LDAPSPORT cmdline = ['/usr/bin/openssl', 's_client', '-connect', myurl, '-cipher', cipher] strcmdline = '/usr/bin/openssl s_client -connect localhost:%s -cipher %s' % (LDAPSPORT, cipher) 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:106: AssertionError ------------------------------ Captured log call ------------------------------- ticket48194_test.py 39 INFO ############################################### ticket48194_test.py 40 INFO ####### Test Case 1 - Check the ciphers availability for "+all"; allowWeakCipher: on ticket48194_test.py 41 INFO ############################################### ticket48194_test.py 129 INFO ######################### Restarting the server ###################### ticket48194_test.py 84 INFO Testing DES-CBC3-SHA -- expect to handshake successfully ticket48194_test.py 90 INFO Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher DES-CBC3-SHA ticket48194_test.py 103 INFO Found: b'New, (NONE), Cipher is (NONE)\n' | |||
Failed | tickets/ticket48194_test.py::test_run_9 | 5.44 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f3deb0ec748> def test_run_9(topology_st): """ Check no nsSSL3Ciphers Default ciphers are enabled. allowWeakCipher: on nsslapd-errorlog-level: 0 """ _header(topology_st, 'Test Case 10 - Check no nsSSL3Ciphers (default setting) with no errorlog-level & allowWeakCipher on') topology_st.standalone.simple_bind_s(DN_DM, PASSWORD) topology_st.standalone.modify_s(ENCRYPTION_DN, [(ldap.MOD_REPLACE, 'nsSSL3Ciphers', None), (ldap.MOD_REPLACE, 'allowWeakCipher', b'on')]) topology_st.standalone.modify_s(CONFIG_DN, [(ldap.MOD_REPLACE, 'nsslapd-errorlog-level', None)]) log.info("\n######################### Restarting the server ######################\n") topology_st.standalone.stop(timeout=10) os.system('mv %s %s.48194_8' % (topology_st.standalone.errlog, topology_st.standalone.errlog)) os.system('touch %s' % (topology_st.standalone.errlog)) time.sleep(2) topology_st.standalone.start(timeout=120) > connectWithOpenssl(topology_st, 'DES-CBC3-SHA', True) /export/tests/tickets/ticket48194_test.py:321: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ topology_st = <lib389.topologies.TopologyMain object at 0x7f3deb0ec748> cipher = 'DES-CBC3-SHA', expect = True def connectWithOpenssl(topology_st, cipher, expect): """ Connect with the given cipher Condition: If expect is True, the handshake should be successful. If expect is False, the handshake should be refused with access log: "Cannot communicate securely with peer: no common encryption algorithm(s)." """ log.info("Testing %s -- expect to handshake %s", cipher, "successfully" if expect else "failed") myurl = 'localhost:%s' % LDAPSPORT cmdline = ['/usr/bin/openssl', 's_client', '-connect', myurl, '-cipher', cipher] strcmdline = '/usr/bin/openssl s_client -connect localhost:%s -cipher %s' % (LDAPSPORT, cipher) 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:106: AssertionError ------------------------------ Captured log call ------------------------------- ticket48194_test.py 39 INFO ############################################### ticket48194_test.py 40 INFO ####### Test Case 10 - Check no nsSSL3Ciphers (default setting) with no errorlog-level & allowWeakCipher on ticket48194_test.py 41 INFO ############################################### ticket48194_test.py 314 INFO ######################### Restarting the server ###################### ticket48194_test.py 84 INFO Testing DES-CBC3-SHA -- expect to handshake successfully ticket48194_test.py 90 INFO Running cmdline: /usr/bin/openssl s_client -connect localhost:63601 -cipher DES-CBC3-SHA ticket48194_test.py 103 INFO Found: b'New, (NONE), Cipher is (NONE)\n' | |||
Failed | tickets/ticket48226_test.py::test_ticket48226_set_purgedelay | 0.00 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f3deae8f828> def test_ticket48226_set_purgedelay(topology_m2): args = {REPLICA_PURGE_DELAY: '5', REPLICA_PURGE_INTERVAL: '5'} try: > topology_m2.ms["master1"].replica.setProperties(DEFAULT_SUFFIX, None, None, args) /export/tests/tickets/ticket48226_test.py:25: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.replica.ReplicaLegacy object at 0x7f3dfbb3e0f0> suffix = 'dc=example,dc=com', replica_dn = None, replica_entry = None properties = {'ReplicaPurgeDelay': '5', 'ReplicaTombstonePurgeInterval': '5'} def setProperties(self, suffix=None, replica_dn=None, replica_entry=None, properties=None): ''' Set the properties of the replica. If an 'replica_entry' (Entry) is provided, it updates the entry, else it updates the entry on the server. If the 'replica_dn' is provided it retrieves the entry using it, else it retrieve the replica using the 'suffix'. @param suffix : suffix stored in that replica (online update) @param replica_dn: DN of the replica (online update) @param replica_entry: Entry of a replica (offline update) @param properties: dictionary of properties Supported properties are: REPLICA_SUFFIX REPLICA_ID REPLICA_TYPE REPLICA_BINDDN REPLICA_PURGE_DELAY REPLICA_PRECISE_PURGING REPLICA_REFERRAL REPLICA_FLAGS @return None @raise ValueError: if unknown properties ValueError: if invalid replica_entry ValueError: if replica_dn or suffix are not associated to a replica ''' # No properties provided if len(properties) == 0: return # check that the given properties are valid for prop in properties: # skip the prefix to add/del value if not inProperties(prop, REPLICA_PROPNAME_TO_ATTRNAME): raise ValueError("unknown property: %s" % prop) else: self.log.debug("setProperties: %s:%s", prop, properties[prop]) # At least we need to have suffix/replica_dn/replica_entry if not suffix and not replica_dn and not replica_entry: raise InvalidArgumentError("suffix and replica_dn and replica_" + "entry are missing") # the caller provides a set of properties to set into a replica entry if replica_entry: if not isinstance(replica_entry, Entry): raise ValueError("invalid instance of the replica_entry") # that is fine, now set the values for prop in properties: val = rawProperty(prop) # for Entry update it is a replace replica_entry.update({REPLICA_PROPNAME_TO_ATTRNAME[val]: properties[prop]}) return # If it provides the suffix or the replicaDN, replica.list will # return the appropriate entry ents = self.conn.replica.list(suffix=suffix, replica_dn=replica_dn) if len(ents) != 1: if replica_dn: raise ValueError("invalid replica DN: %s" % replica_dn) else: raise ValueError("invalid suffix: %s" % suffix) # build the MODS mods = [] for prop in properties: # take the operation type from the property name val = rawProperty(prop) if str(prop).startswith('+'): op = ldap.MOD_ADD elif str(prop).startswith('-'): op = ldap.MOD_DELETE else: op = ldap.MOD_REPLACE mods.append((op, REPLICA_PROPNAME_TO_ATTRNAME[val], properties[prop])) # that is fine now to apply the MOD > self.conn.modify_s(ents[0].dn, mods) /usr/lib/python3.6/site-packages/lib389/replica.py:260: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = ('cn=replica,cn=dc\\3Dexample\\2Cdc\\3Dcom,cn=mapping tree,cn=config', [(2, 'nsds5ReplicaPurgeDelay', '5'), (2, 'nsds5ReplicaTombstonePurgeInterval', '5')]) kwargs = {} def inner(*args, **kwargs): 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/lib/python3.6/site-packages/lib389/__init__.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3deaae7940> dn = 'cn=replica,cn=dc\\3Dexample\\2Cdc\\3Dcom,cn=mapping tree,cn=config' modlist = [(2, 'nsds5ReplicaPurgeDelay', '5'), (2, 'nsds5ReplicaTombstonePurgeInterval', '5')] def modify_s(self,dn,modlist): > return self.modify_ext_s(dn,modlist,None,None) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:629: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = ('cn=replica,cn=dc\\3Dexample\\2Cdc\\3Dcom,cn=mapping tree,cn=config', [(2, 'nsds5ReplicaPurgeDelay', '5'), (2, 'nsds5ReplicaTombstonePurgeInterval', '5')], None, None) kwargs = {} def inner(*args, **kwargs): if name == '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/lib/python3.6/site-packages/lib389/__init__.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3deaae7940> dn = 'cn=replica,cn=dc\\3Dexample\\2Cdc\\3Dcom,cn=mapping tree,cn=config' modlist = [(2, 'nsds5ReplicaPurgeDelay', '5'), (2, 'nsds5ReplicaTombstonePurgeInterval', '5')] serverctrls = None, clientctrls = None def modify_ext_s(self,dn,modlist,serverctrls=None,clientctrls=None): > msgid = self.modify_ext(dn,modlist,serverctrls,clientctrls) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:601: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = ('cn=replica,cn=dc\\3Dexample\\2Cdc\\3Dcom,cn=mapping tree,cn=config', [(2, 'nsds5ReplicaPurgeDelay', '5'), (2, 'nsds5ReplicaTombstonePurgeInterval', '5')], None, None) kwargs = {} def inner(*args, **kwargs): if name == '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/lib/python3.6/site-packages/lib389/__init__.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3deaae7940> dn = 'cn=replica,cn=dc\\3Dexample\\2Cdc\\3Dcom,cn=mapping tree,cn=config' modlist = [(2, 'nsds5ReplicaPurgeDelay', '5'), (2, 'nsds5ReplicaTombstonePurgeInterval', '5')] serverctrls = None, clientctrls = None def modify_ext(self,dn,modlist,serverctrls=None,clientctrls=None): """ modify_ext(dn, modlist[,serverctrls=None[,clientctrls=None]]) -> int """ if PY2: dn = self._bytesify_input('dn', dn) modlist = self._bytesify_modlist('modlist', modlist, with_opcode=True) > return self._ldap_call(self._l.modify_ext,dn,modlist,RequestControlTuples(serverctrls),RequestControlTuples(clientctrls)) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:598: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = (<built-in method modify_ext of LDAP object at 0x7f3dead5dcd8>, 'cn=replica,cn=dc\\3Dexample\\2Cdc\\3Dcom,cn=mapping tree,cn=config', [(2, 'nsds5ReplicaPurgeDelay', '5'), (2, 'nsds5ReplicaTombstonePurgeInterval', '5')], None, None) kwargs = {} def inner(*args, **kwargs): if name == '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/lib/python3.6/site-packages/lib389/__init__.py:165: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3deaae7940> func = <built-in method modify_ext of LDAP object at 0x7f3dead5dcd8> args = ('cn=replica,cn=dc\\3Dexample\\2Cdc\\3Dcom,cn=mapping tree,cn=config', [(2, 'nsds5ReplicaPurgeDelay', '5'), (2, 'nsds5ReplicaTombstonePurgeInterval', '5')], None, None) kwargs = {}, diagnostic_message_success = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E TypeError: ('Tuple_to_LDAPMod(): expected a byte string in the list', '5') /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:313: TypeError During handling of the above exception, another exception occurred: topology_m2 = <lib389.topologies.TopologyMain object at 0x7f3deae8f828> def test_ticket48226_set_purgedelay(topology_m2): args = {REPLICA_PURGE_DELAY: '5', REPLICA_PURGE_INTERVAL: '5'} try: topology_m2.ms["master1"].replica.setProperties(DEFAULT_SUFFIX, None, None, args) except: log.fatal('Failed to configure replica') > assert False E assert False /export/tests/tickets/ticket48226_test.py:28: AssertionError ---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. topologies.py 106 INFO Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. topologies.py 139 INFO Creating replication topology. topologies.py 153 INFO Joining master master2 to master1 ... replica.py 1500 INFO SUCCESS: bootstrap to ldap://server.example.com:39002 completed replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 is was created replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 is was created replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39001 to ldap://server.example.com:39002 is working replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39002 to ldap://server.example.com:39001 is working replica.py 1569 INFO SUCCESS: joined master from ldap://server.example.com:39001 to ldap://server.example.com:39002 topologies.py 161 INFO Ensuring master master1 to master2 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 already exists topologies.py 161 INFO Ensuring master master2 to master1 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 already exists------------------------------ Captured log call ------------------------------- ticket48226_test.py 27 CRITICAL Failed to configure replica | |||
Failed | tickets/ticket48226_test.py::test_ticket48226_1 | 0.01 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f3deae8f828> def test_ticket48226_1(topology_m2): name = 'test_entry' dn = "cn=%s,%s" % (name, SUFFIX) topology_m2.ms["master1"].add_s(Entry((dn, {'objectclass': "top person".split(), 'sn': name, 'cn': name}))) # First do an update that is replicated mods = [(ldap.MOD_ADD, 'description', '5')] > topology_m2.ms["master1"].modify_s(dn, mods) /export/tests/tickets/ticket48226_test.py:50: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:629: in modify_s return self.modify_ext_s(dn,modlist,None,None) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:601: in modify_ext_s msgid = self.modify_ext(dn,modlist,serverctrls,clientctrls) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:598: in modify_ext return self._ldap_call(self._l.modify_ext,dn,modlist,RequestControlTuples(serverctrls),RequestControlTuples(clientctrls)) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3deaae7940> func = <built-in method modify_ext of LDAP object at 0x7f3dead5dcd8> args = ('cn=test_entry,dc=example,dc=com', [(0, 'description', '5')], None, None) kwargs = {}, diagnostic_message_success = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E TypeError: ('Tuple_to_LDAPMod(): expected a byte string in the list', '5') /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:313: TypeError | |||
Failed | tickets/ticket48252_test.py::test_ticket48252_run_0 | 3.26 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f3deaff9a58> def test_ticket48252_run_0(topology_st): """ Delete an entry cn=test_entry0 Check it is not in the 'cn' index file """ log.info("Case 1 - Check deleted entry is not in the 'cn' index file") uas = UserAccounts(topology_st.standalone, DEFAULT_SUFFIX) del_rdn = "uid=%s0" % TEST_USER del_entry = uas.get('%s0' % TEST_USER) log.info(" Deleting a test entry %s..." % del_entry) del_entry.delete() > assert in_index_file(topology_st, 0, 'cn') is False /export/tests/tickets/ticket48252_test.py:78: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ topology_st = <lib389.topologies.TopologyMain object at 0x7f3deaff9a58>, id = 0 index = 'cn' def in_index_file(topology_st, id, index): key = "%s%s" % (TEST_USER, id) log.info(" dbscan - checking %s is in index file %s..." % (key, index)) dbscanOut = topology_st.standalone.dbscan(DEFAULT_BENAME, index) > if key in dbscanOut: E TypeError: a bytes-like object is required, not 'str' /export/tests/tickets/ticket48252_test.py:56: TypeError ----------------------------- Captured stdout call ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log call ------------------------------- __init__.py 3082 INFO Running script: ['/usr/bin/dbscan', '-f', '/var/lib/dirsrv/slapd-standalone1/db/userRoot/cn.db'] | |||
Failed | tickets/ticket48252_test.py::test_ticket48252_run_1 | 0.02 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f3deaff9a58> def test_ticket48252_run_1(topology_st): """ Delete an entry cn=test_entry1 Check it is in the 'objectclass' index file as a tombstone entry """ log.info("Case 2 - Check deleted entry is in the 'objectclass' index file as a tombstone entry") uas = UserAccounts(topology_st.standalone, DEFAULT_SUFFIX) del_rdn = "uid=%s1" % TEST_USER del_entry = uas.get('%s1' % TEST_USER) log.info(" Deleting a test entry %s..." % del_rdn) del_entry.delete() entry = topology_st.standalone.search_s(SUFFIX, ldap.SCOPE_SUBTREE, '(&(objectclass=nstombstone)(%s))' % del_rdn) assert len(entry) == 1 log.info(" entry %s is in the objectclass index file." % del_rdn) log.info(" db2index - reindexing %s ..." % 'objectclass') > assert topology_st.standalone.db2index(DEFAULT_BENAME, 'objectclass') E AssertionError: assert False E + where False = <bound method DirSrv.db2index of <lib389.DirSrv object at 0x7f3deae990b8>>('userRoot', 'objectclass') E + where <bound method DirSrv.db2index of <lib389.DirSrv object at 0x7f3deae990b8>> = <lib389.DirSrv object at 0x7f3deae990b8>.db2index E + where <lib389.DirSrv object at 0x7f3deae990b8> = <lib389.topologies.TopologyMain object at 0x7f3deaff9a58>.standalone /export/tests/tickets/ticket48252_test.py:105: AssertionError ------------------------------ Captured log call ------------------------------- __init__.py 2956 ERROR db2index: Can not operate while directory server is running | |||
Failed | tickets/ticket48266_test.py::test_ticket48266_fractional | 0.01 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f3de7641dd8> entries = None def test_ticket48266_fractional(topology_m2, entries): ents = topology_m2.ms["master1"].agreement.list(suffix=SUFFIX) assert len(ents) == 1 mod = [(ldap.MOD_REPLACE, 'nsDS5ReplicatedAttributeList', ['(objectclass=*) $ EXCLUDE telephonenumber']), (ldap.MOD_REPLACE, 'nsds5ReplicaStripAttrs', ['modifiersname modifytimestamp'])] ents = topology_m2.ms["master1"].agreement.list(suffix=SUFFIX) assert len(ents) == 1 m1_m2_agmt = ents[0].dn > topology_m2.ms["master1"].modify_s(ents[0].dn, mod) /export/tests/tickets/ticket48266_test.py:44: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:629: in modify_s return self.modify_ext_s(dn,modlist,None,None) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:601: in modify_ext_s msgid = self.modify_ext(dn,modlist,serverctrls,clientctrls) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:598: in modify_ext return self._ldap_call(self._l.modify_ext,dn,modlist,RequestControlTuples(serverctrls),RequestControlTuples(clientctrls)) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3de767cf98> func = <built-in method modify_ext of LDAP object at 0x7f3de7662f30> args = ('cn=002,cn=replica,cn=dc\\3Dexample\\2Cdc\\3Dcom,cn=mapping tree,cn=config', [(2, 'nsDS5ReplicatedAttributeList', ['(...ctclass=*) $ EXCLUDE telephonenumber']), (2, 'nsds5ReplicaStripAttrs', ['modifiersname modifytimestamp'])], 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', '(objectclass=*) $ EXCLUDE telephonenumber') /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:313: TypeError ---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. topologies.py 106 INFO Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. topologies.py 139 INFO Creating replication topology. topologies.py 153 INFO Joining master master2 to master1 ... replica.py 1500 INFO SUCCESS: bootstrap to ldap://server.example.com:39002 completed replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 is was created replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 is was created replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39001 to ldap://server.example.com:39002 is working replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39002 to ldap://server.example.com:39001 is working replica.py 1569 INFO SUCCESS: joined master from ldap://server.example.com:39001 to ldap://server.example.com:39002 topologies.py 161 INFO Ensuring master master1 to master2 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 already exists topologies.py 161 INFO Ensuring master master2 to master1 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 already exists | |||
Failed | tickets/ticket48266_test.py::test_ticket48266_check_repl_desc | 0.00 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f3de7641dd8> entries = None def test_ticket48266_check_repl_desc(topology_m2, entries): name = "cn=%s1,%s" % (NEW_ACCOUNT, SUFFIX) value = 'check repl. description' mod = [(ldap.MOD_REPLACE, 'description', value)] > topology_m2.ms["master1"].modify_s(name, mod) /export/tests/tickets/ticket48266_test.py:61: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:629: in modify_s return self.modify_ext_s(dn,modlist,None,None) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:601: in modify_ext_s msgid = self.modify_ext(dn,modlist,serverctrls,clientctrls) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:598: in modify_ext return self._ldap_call(self._l.modify_ext,dn,modlist,RequestControlTuples(serverctrls),RequestControlTuples(clientctrls)) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3de767cf98> func = <built-in method modify_ext of LDAP object at 0x7f3de7662f30> args = ('cn=new_account1,dc=example,dc=com', [(2, 'description', 'check repl. description')], 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', 'c') /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:313: TypeError | |||
Failed | tickets/ticket48266_test.py::test_ticket48266_count_csn_evaluation | 0.01 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f3de7641dd8> 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:172: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /export/tests/tickets/ticket48266_test.py:116: in _get_first_not_replicated_csn topology_m2.ms["master1"].modify_s(name, mod) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:629: in modify_s return self.modify_ext_s(dn,modlist,None,None) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:601: in modify_ext_s msgid = self.modify_ext(dn,modlist,serverctrls,clientctrls) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:598: in modify_ext return self._ldap_call(self._l.modify_ext,dn,modlist,RequestControlTuples(serverctrls),RequestControlTuples(clientctrls)) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3de767cf98> func = <built-in method modify_ext of LDAP object at 0x7f3de7662f30> args = ('cn=new_account2,dc=example,dc=com', [(2, 'telephonenumber', '123456')], 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', '1') /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:313: TypeError | |||
Failed | tickets/ticket48325_test.py::test_ticket48325 | 0.00 | |
topology_m1h1c1 = <lib389.topologies.TopologyMain object at 0x7f3deabf79e8> def test_ticket48325(topology_m1h1c1): """ Test that the RUV element order is correctly maintained when promoting a hub or consumer. """ # # Promote consumer to master # try: > topology_m1h1c1.cs["consumer1"].changelog.create() /export/tests/tickets/ticket48325_test.py:46: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3deac6fc50>, name = 'changelog' def __getattr__(self,name): if name in self.CLASSATTR_OPTION_MAPPING: return self.get_option(self.CLASSATTR_OPTION_MAPPING[name]) elif name in self.__dict__: return self.__dict__[name] else: raise AttributeError('%s has no attribute %s' % ( > self.__class__.__name__,repr(name) )) E AttributeError: DirSrv has no attribute 'changelog' /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:352: AttributeError ---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. topologies.py 106 INFO Instance with parameters {'ldap-port': 39101, 'ldap-secureport': 63801, 'server-id': 'hub1', 'suffix': 'dc=example,dc=com'} was created. topologies.py 106 INFO Instance with parameters {'ldap-port': 39201, 'ldap-secureport': 63901, 'server-id': 'consumer1', 'suffix': 'dc=example,dc=com'} was created. topologies.py 471 INFO Creating replication topology. replica.py 1500 INFO SUCCESS: bootstrap to ldap://server.example.com:39101 completed replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39101 is was created replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39001 to ldap://server.example.com:39101 is working replica.py 1627 INFO SUCCESS: joined consumer from ldap://server.example.com:39001 to ldap://server.example.com:39101 replica.py 1500 INFO SUCCESS: bootstrap to ldap://server.example.com:39201 completed replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39101 to ldap://server.example.com:39201 is was created replica.py 1684 INFO SUCCESS: joined consumer from ldap://server.example.com:39101 to ldap://server.example.com:39201 replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39001 to ldap://server.example.com:39201 is working | |||
Failed | tickets/ticket48759_test.py::test_ticket48759 | 0.00 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f3deabe37f0> 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...') topology_st.standalone.replica.enableReplication(suffix=DEFAULT_SUFFIX, role=ReplicaRole.MASTER, > replicaId=REPLICAID_MASTER_1) /export/tests/tickets/ticket48759_test.py:109: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.6/site-packages/lib389/replica.py:556: in enableReplication self.conn.changelog.create() _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3de788eb00>, name = 'changelog' def __getattr__(self,name): if name in self.CLASSATTR_OPTION_MAPPING: return self.get_option(self.CLASSATTR_OPTION_MAPPING[name]) elif name in self.__dict__: return self.__dict__[name] else: raise AttributeError('%s has no attribute %s' % ( > self.__class__.__name__,repr(name) )) E AttributeError: DirSrv has no attribute 'changelog' /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:352: AttributeError ---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.------------------------------ Captured log call ------------------------------- backend.py 74 INFO List backend with suffix=dc=example,dc=com | |||
Failed | tickets/ticket48906_test.py::test_ticket48906_setup | 0.10 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f3de7884b70> def test_ticket48906_setup(topology_st): """ Check there is no core Create a second backend stop DS (that should trigger the core) check there is no core """ log.info('Testing Ticket 48906 - ns-slapd crashes during the shutdown after adding attribute with a matching rule') # bind as directory manager topology_st.standalone.log.info("Bind as %s" % DN_DM) topology_st.standalone.simple_bind_s(DN_DM, PASSWORD) # check there is no core entry = topology_st.standalone.search_s(CONFIG_DN, ldap.SCOPE_BASE, "(cn=config)", ['nsslapd-workingdir']) assert entry assert entry[0] assert entry[0].hasAttr('nsslapd-workingdir') path = entry[0].getValue('nsslapd-workingdir') > cores = fnmatch.filter(os.listdir(path), 'core.*') /export/tests/tickets/ticket48906_test.py:70: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ names = [b'access', b'errors.rotationinfo', b'errors', b'access.rotationinfo', b'audit.rotationinfo', b'audit'] pat = 'core.*' def filter(names, pat): """Return the subset of the list NAMES that match PAT.""" result = [] pat = os.path.normcase(pat) match = _compile_pattern(pat) if os.path is posixpath: # normcase on posix is NOP. Optimize it away from the loop. for name in names: > if match(name): E TypeError: cannot use a string pattern on a bytes-like object /usr/lib64/python3.6/fnmatch.py:56: TypeError ---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.------------------------------ Captured log call ------------------------------- ticket48906_test.py 61 INFO Bind as cn=Directory Manager | |||
Failed | tickets/ticket48906_test.py::test_ticket48906_dblock_default | 0.00 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f3de7884b70> def test_ticket48906_dblock_default(topology_st): topology_st.standalone.log.info('###################################') topology_st.standalone.log.info('###') topology_st.standalone.log.info('### Check that before any change config/monitor') topology_st.standalone.log.info('### contains the default value') topology_st.standalone.log.info('###') topology_st.standalone.log.info('###################################') > _check_monitored_value(topology_st, DBLOCK_DEFAULT) /export/tests/tickets/ticket48906_test.py:153: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ topology_st = <lib389.topologies.TopologyMain object at 0x7f3de7884b70> expected_value = '10000' def _check_monitored_value(topology_st, expected_value): entries = topology_st.standalone.search_s(ldbm_monitor, ldap.SCOPE_BASE, '(objectclass=*)') > assert (entries[0].hasValue(DBLOCK_ATTR_MONITOR) and entries[0].getValue(DBLOCK_ATTR_MONITOR) == expected_value) E AssertionError: assert (True and b'10000' == '10000') E + where True = <bound method Entry.hasValue of dn: cn=database,cn=monitor,cn=ldbm database,cn=plugins,cn=config\ncn: database\nnsslapd-...rate: 0\nnsslapd-db-pages-in-use: 8\nnsslapd-db-txn-region-wait-rate: 0\nobjectClass: top\nobjectClass: extensibleObject\n\n>('nsslapd-db-configured-locks') E + where <bound method Entry.hasValue of dn: cn=database,cn=monitor,cn=ldbm database,cn=plugins,cn=config\ncn: database\nnsslapd-...rate: 0\nnsslapd-db-pages-in-use: 8\nnsslapd-db-txn-region-wait-rate: 0\nobjectClass: top\nobjectClass: extensibleObject\n\n> = dn: cn=database,cn=monitor,cn=ldbm database,cn=plugins,cn=config\ncn: database\nnsslapd-db-abort-rate: 0\nnsslapd-db-acti...-rate: 0\nnsslapd-db-pages-in-use: 8\nnsslapd-db-txn-region-wait-rate: 0\nobjectClass: top\nobjectClass: extensibleObject\n\n.hasValue E + and b'10000' = <bound method Entry.getValue of dn: cn=database,cn=monitor,cn=ldbm database,cn=plugins,cn=config\ncn: database\nnsslapd-...rate: 0\nnsslapd-db-pages-in-use: 8\nnsslapd-db-txn-region-wait-rate: 0\nobjectClass: top\nobjectClass: extensibleObject\n\n>('nsslapd-db-configured-locks') E + where <bound method Entry.getValue of dn: cn=database,cn=monitor,cn=ldbm database,cn=plugins,cn=config\ncn: database\nnsslapd-...rate: 0\nnsslapd-db-pages-in-use: 8\nnsslapd-db-txn-region-wait-rate: 0\nobjectClass: top\nobjectClass: extensibleObject\n\n> = dn: cn=database,cn=monitor,cn=ldbm database,cn=plugins,cn=config\ncn: database\nnsslapd-db-abort-rate: 0\nnsslapd-db-acti...-rate: 0\nnsslapd-db-pages-in-use: 8\nnsslapd-db-txn-region-wait-rate: 0\nobjectClass: top\nobjectClass: extensibleObject\n\n.getValue /export/tests/tickets/ticket48906_test.py:103: AssertionError ------------------------------ Captured log call ------------------------------- ticket48906_test.py 147 INFO ################################### ticket48906_test.py 148 INFO ### ticket48906_test.py 149 INFO ### Check that before any change config/monitor ticket48906_test.py 150 INFO ### contains the default value ticket48906_test.py 151 INFO ### ticket48906_test.py 152 INFO ################################### | |||
Failed | tickets/ticket48906_test.py::test_ticket48906_dblock_ldap_update | 0.00 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f3de7884b70> def test_ticket48906_dblock_ldap_update(topology_st): topology_st.standalone.log.info('###################################') topology_st.standalone.log.info('###') topology_st.standalone.log.info('### Check that after ldap update') topology_st.standalone.log.info('### - monitor contains DEFAULT') topology_st.standalone.log.info('### - configured contains DBLOCK_LDAP_UPDATE') topology_st.standalone.log.info('### - After stop dse.ldif contains DBLOCK_LDAP_UPDATE') topology_st.standalone.log.info('### - After stop guardian contains DEFAULT') topology_st.standalone.log.info('### In fact guardian should differ from config to recreate the env') topology_st.standalone.log.info('### Check that after restart (DBenv recreated)') topology_st.standalone.log.info('### - monitor contains DBLOCK_LDAP_UPDATE ') topology_st.standalone.log.info('### - configured contains DBLOCK_LDAP_UPDATE') topology_st.standalone.log.info('### - dse.ldif contains DBLOCK_LDAP_UPDATE') topology_st.standalone.log.info('###') topology_st.standalone.log.info('###################################') > topology_st.standalone.modify_s(ldbm_config, [(ldap.MOD_REPLACE, DBLOCK_ATTR_CONFIG, DBLOCK_LDAP_UPDATE)]) /export/tests/tickets/ticket48906_test.py:173: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:629: in modify_s return self.modify_ext_s(dn,modlist,None,None) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:601: in modify_ext_s msgid = self.modify_ext(dn,modlist,serverctrls,clientctrls) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:598: in modify_ext return self._ldap_call(self._l.modify_ext,dn,modlist,RequestControlTuples(serverctrls),RequestControlTuples(clientctrls)) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3de7884278> func = <built-in method modify_ext of LDAP object at 0x7f3de77693a0> args = ('cn=config,cn=ldbm database,cn=plugins,cn=config', [(2, 'nsslapd-db-locks', '20000')], 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', '2') /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:313: TypeError ------------------------------ Captured log call ------------------------------- ticket48906_test.py 158 INFO ################################### ticket48906_test.py 159 INFO ### ticket48906_test.py 160 INFO ### Check that after ldap update ticket48906_test.py 161 INFO ### - monitor contains DEFAULT ticket48906_test.py 162 INFO ### - configured contains DBLOCK_LDAP_UPDATE ticket48906_test.py 163 INFO ### - After stop dse.ldif contains DBLOCK_LDAP_UPDATE ticket48906_test.py 164 INFO ### - After stop guardian contains DEFAULT ticket48906_test.py 165 INFO ### In fact guardian should differ from config to recreate the env ticket48906_test.py 166 INFO ### Check that after restart (DBenv recreated) ticket48906_test.py 167 INFO ### - monitor contains DBLOCK_LDAP_UPDATE ticket48906_test.py 168 INFO ### - configured contains DBLOCK_LDAP_UPDATE ticket48906_test.py 169 INFO ### - dse.ldif contains DBLOCK_LDAP_UPDATE ticket48906_test.py 170 INFO ### ticket48906_test.py 171 INFO ################################### | |||
Failed | tickets/ticket48906_test.py::test_ticket48906_dblock_edit_update | 1.67 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f3de7884b70> def test_ticket48906_dblock_edit_update(topology_st): topology_st.standalone.log.info('###################################') topology_st.standalone.log.info('###') topology_st.standalone.log.info('### Check that after stop') topology_st.standalone.log.info('### - dse.ldif contains DBLOCK_LDAP_UPDATE') topology_st.standalone.log.info('### - guardian contains DBLOCK_LDAP_UPDATE') topology_st.standalone.log.info('### Check that edit dse+restart') topology_st.standalone.log.info('### - monitor contains DBLOCK_EDIT_UPDATE') topology_st.standalone.log.info('### - configured contains DBLOCK_EDIT_UPDATE') topology_st.standalone.log.info('### Check that after stop') topology_st.standalone.log.info('### - dse.ldif contains DBLOCK_EDIT_UPDATE') topology_st.standalone.log.info('### - guardian contains DBLOCK_EDIT_UPDATE') topology_st.standalone.log.info('###') topology_st.standalone.log.info('###################################') topology_st.standalone.stop(timeout=10) > _check_dse_ldif_value(topology_st, attr=DBLOCK_ATTR_CONFIG, expected_value=DBLOCK_LDAP_UPDATE) /export/tests/tickets/ticket48906_test.py:204: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ topology_st = <lib389.topologies.TopologyMain object at 0x7f3de7884b70> attr = 'nsslapd-db-locks', expected_value = '20000' def _check_dse_ldif_value(topology_st, attr=DBLOCK_ATTR_CONFIG, expected_value=DBLOCK_LDAP_UPDATE): dse_ref_ldif = topology_st.standalone.confdir + '/dse.ldif' dse_ref = open(dse_ref_ldif, "r") # Check the DBLOCK in dse.ldif value = None while True: line = dse_ref.readline() if (line == ''): break elif attr in line.lower(): value = line.split()[1] > assert (value == expected_value) E AssertionError: assert '10000' == '20000' E - 10000 E ? ^ E + 20000 E ? ^ /export/tests/tickets/ticket48906_test.py:118: AssertionError ------------------------------ Captured log call ------------------------------- ticket48906_test.py 189 INFO ################################### ticket48906_test.py 190 INFO ### ticket48906_test.py 191 INFO ### Check that after stop ticket48906_test.py 192 INFO ### - dse.ldif contains DBLOCK_LDAP_UPDATE ticket48906_test.py 193 INFO ### - guardian contains DBLOCK_LDAP_UPDATE ticket48906_test.py 194 INFO ### Check that edit dse+restart ticket48906_test.py 195 INFO ### - monitor contains DBLOCK_EDIT_UPDATE ticket48906_test.py 196 INFO ### - configured contains DBLOCK_EDIT_UPDATE ticket48906_test.py 197 INFO ### Check that after stop ticket48906_test.py 198 INFO ### - dse.ldif contains DBLOCK_EDIT_UPDATE ticket48906_test.py 199 INFO ### - guardian contains DBLOCK_EDIT_UPDATE ticket48906_test.py 200 INFO ### ticket48906_test.py 201 INFO ################################### | |||
Failed | tickets/ticket48906_test.py::test_ticket48906_dblock_robust | 1.15 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f3de7884b70> def test_ticket48906_dblock_robust(topology_st): topology_st.standalone.log.info('###################################') topology_st.standalone.log.info('###') topology_st.standalone.log.info('### Check that the following values are rejected') topology_st.standalone.log.info('### - negative value') topology_st.standalone.log.info('### - insuffisant value') topology_st.standalone.log.info('### - invalid value') topology_st.standalone.log.info('### Check that minimum value is accepted') topology_st.standalone.log.info('###') topology_st.standalone.log.info('###################################') topology_st.standalone.start(timeout=10) > _check_monitored_value(topology_st, DBLOCK_EDIT_UPDATE) /export/tests/tickets/ticket48906_test.py:254: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ topology_st = <lib389.topologies.TopologyMain object at 0x7f3de7884b70> expected_value = '40000' def _check_monitored_value(topology_st, expected_value): entries = topology_st.standalone.search_s(ldbm_monitor, ldap.SCOPE_BASE, '(objectclass=*)') > assert (entries[0].hasValue(DBLOCK_ATTR_MONITOR) and entries[0].getValue(DBLOCK_ATTR_MONITOR) == expected_value) E AssertionError: assert (True and b'10000' == '40000') E + where True = <bound method Entry.hasValue of dn: cn=database,cn=monitor,cn=ldbm database,cn=plugins,cn=config\ncn: database\nnsslapd-...rate: 0\nnsslapd-db-pages-in-use: 8\nnsslapd-db-txn-region-wait-rate: 0\nobjectClass: top\nobjectClass: extensibleObject\n\n>('nsslapd-db-configured-locks') E + where <bound method Entry.hasValue of dn: cn=database,cn=monitor,cn=ldbm database,cn=plugins,cn=config\ncn: database\nnsslapd-...rate: 0\nnsslapd-db-pages-in-use: 8\nnsslapd-db-txn-region-wait-rate: 0\nobjectClass: top\nobjectClass: extensibleObject\n\n> = dn: cn=database,cn=monitor,cn=ldbm database,cn=plugins,cn=config\ncn: database\nnsslapd-db-abort-rate: 0\nnsslapd-db-acti...-rate: 0\nnsslapd-db-pages-in-use: 8\nnsslapd-db-txn-region-wait-rate: 0\nobjectClass: top\nobjectClass: extensibleObject\n\n.hasValue E + and b'10000' = <bound method Entry.getValue of dn: cn=database,cn=monitor,cn=ldbm database,cn=plugins,cn=config\ncn: database\nnsslapd-...rate: 0\nnsslapd-db-pages-in-use: 8\nnsslapd-db-txn-region-wait-rate: 0\nobjectClass: top\nobjectClass: extensibleObject\n\n>('nsslapd-db-configured-locks') E + where <bound method Entry.getValue of dn: cn=database,cn=monitor,cn=ldbm database,cn=plugins,cn=config\ncn: database\nnsslapd-...rate: 0\nnsslapd-db-pages-in-use: 8\nnsslapd-db-txn-region-wait-rate: 0\nobjectClass: top\nobjectClass: extensibleObject\n\n> = dn: cn=database,cn=monitor,cn=ldbm database,cn=plugins,cn=config\ncn: database\nnsslapd-db-abort-rate: 0\nnsslapd-db-acti...-rate: 0\nnsslapd-db-pages-in-use: 8\nnsslapd-db-txn-region-wait-rate: 0\nobjectClass: top\nobjectClass: extensibleObject\n\n.getValue /export/tests/tickets/ticket48906_test.py:103: AssertionError ------------------------------ Captured log call ------------------------------- ticket48906_test.py 243 INFO ################################### ticket48906_test.py 244 INFO ### ticket48906_test.py 245 INFO ### Check that the following values are rejected ticket48906_test.py 246 INFO ### - negative value ticket48906_test.py 247 INFO ### - insuffisant value ticket48906_test.py 248 INFO ### - invalid value ticket48906_test.py 249 INFO ### Check that minimum value is accepted ticket48906_test.py 250 INFO ### ticket48906_test.py 251 INFO ################################### | |||
Failed | tickets/ticket48961_test.py::test_ticket48961_storagescheme | 0.01 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f3de788ed30> 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:27: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.6/site-packages/lib389/_mapped_object.py:286: in remove self.set(key, value, action=ldap.MOD_DELETE) /usr/lib/python3.6/site-packages/lib389/_mapped_object.py:356: in set serverctrls=self._server_controls, clientctrls=self._client_controls) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:602: in modify_ext_s resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:749: in result3 resp_ctrl_classes=resp_ctrl_classes /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:756: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:329: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/lib64/python3.6/site-packages/ldap/compat.py:44: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3de767c9b0> func = <built-in method result4 of LDAP object at 0x7f3deabe62b0> 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.OPERATIONS_ERROR: {'desc': 'Operations error', 'info': 'passwordStorageScheme: deleting the value is not allowed.'} /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:313: OPERATIONS_ERROR ---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO 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 | 2.06 | |
topology_st = <lib389.topologies.TopologyMain object at 0x7f3de788ed30> 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() for attr in config_entry.getAttrs(): if attr.lower() in attr_to_fail: # We know this will fail, so skip pass else: log.info("Reseting %s" % (attr)) # Check if we have to do some override of this attr. # Some attributes need specific syntax, so we override just these. newval = topology_st.standalone.config.get_attr_vals(attr) log.info(" --> %s" % newval) if attr.lower() in attr_to_test: newval = attr_to_test[attr] log.info("override --> %s" % newval) # We need to set the attr to its own value # so that it's "written". > topology_st.standalone.config.set(attr, newval) /export/tests/tickets/ticket48961_test.py:117: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.6/site-packages/lib389/_mapped_object.py:356: in set serverctrls=self._server_controls, clientctrls=self._client_controls) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:602: in modify_ext_s resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:749: in result3 resp_ctrl_classes=resp_ctrl_classes /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:756: in result4 ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:329: in _ldap_call reraise(exc_type, exc_value, exc_traceback) /usr/lib64/python3.6/site-packages/ldap/compat.py:44: in reraise raise exc_value _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3de767c9b0> func = <built-in method result4 of LDAP object at 0x7f3deabe62b0> args = (215, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None exc_type = None, exc_value = None, exc_traceback = None def _ldap_call(self,func,*args,**kwargs): """ Wrapper method mainly for serializing calls into OpenLDAP libs and trace logs """ self._ldap_object_lock.acquire() if __debug__: if self._trace_level>=1: self._trace_file.write('*** %s %s - %s\n%s\n' % ( repr(self), self._uri, '.'.join((self.__class__.__name__,func.__name__)), pprint.pformat((args,kwargs)) )) if self._trace_level>=9: traceback.print_stack(limit=self._trace_stack_limit,file=self._trace_file) diagnostic_message_success = None try: try: > result = func(*args,**kwargs) E ldap.OPERATIONS_ERROR: {'desc': 'Operations error', 'info': 'password dictionary path "" is invalid.'} /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:313: OPERATIONS_ERROR ------------------------------ Captured log call ------------------------------- ticket48961_test.py 107 INFO Reseting nsslapd-auditlog-mode ticket48961_test.py 111 INFO --> [b'600'] ticket48961_test.py 38 INFO Reset nsslapd-auditlog-mode to b'600' ticket48961_test.py 107 INFO Reseting nsslapd-auditlog-logrotationsync-enabled ticket48961_test.py 111 INFO --> [b'off'] ticket48961_test.py 38 INFO Reset nsslapd-auditlog-logrotationsync-enabled to b'off' ticket48961_test.py 107 INFO Reseting nsslapd-auditlog-logrotationsynchour ticket48961_test.py 111 INFO --> [b'0'] ticket48961_test.py 38 INFO Reset nsslapd-auditlog-logrotationsynchour to b'0' ticket48961_test.py 107 INFO Reseting nsslapd-auditlog-logrotationsyncmin ticket48961_test.py 111 INFO --> [b'0'] ticket48961_test.py 38 INFO Reset nsslapd-auditlog-logrotationsyncmin to b'0' ticket48961_test.py 107 INFO Reseting nsslapd-auditlog-logrotationtime ticket48961_test.py 111 INFO --> [b'1'] ticket48961_test.py 38 INFO Reset nsslapd-auditlog-logrotationtime to b'1' ticket48961_test.py 107 INFO Reseting nsslapd-accesslog-mode ticket48961_test.py 111 INFO --> [b'600'] ticket48961_test.py 38 INFO Reset nsslapd-accesslog-mode to b'600' ticket48961_test.py 107 INFO Reseting nsslapd-accesslog-maxlogsperdir ticket48961_test.py 111 INFO --> [b'10'] ticket48961_test.py 38 INFO Reset nsslapd-accesslog-maxlogsperdir to b'10' ticket48961_test.py 107 INFO Reseting nsslapd-errorlog-level ticket48961_test.py 111 INFO --> [b'16384'] ticket48961_test.py 38 INFO Reset nsslapd-errorlog-level to b'16384' ticket48961_test.py 107 INFO Reseting nsslapd-errorlog-logging-enabled ticket48961_test.py 111 INFO --> [b'on'] ticket48961_test.py 38 INFO Reset nsslapd-errorlog-logging-enabled to b'on' ticket48961_test.py 107 INFO Reseting nsslapd-errorlog-mode ticket48961_test.py 111 INFO --> [b'600'] ticket48961_test.py 38 INFO Reset nsslapd-errorlog-mode to b'600' ticket48961_test.py 107 INFO Reseting nsslapd-errorlog-logexpirationtime ticket48961_test.py 111 INFO --> [b'1'] ticket48961_test.py 38 INFO Reset nsslapd-errorlog-logexpirationtime to b'1' ticket48961_test.py 107 INFO Reseting nsslapd-accesslog-logging-enabled ticket48961_test.py 111 INFO --> [b'on'] ticket48961_test.py 38 INFO Reset nsslapd-accesslog-logging-enabled to b'on' ticket48961_test.py 107 INFO Reseting nsslapd-maxthreadsperconn ticket48961_test.py 111 INFO --> [b'5'] ticket48961_test.py 38 INFO Reset nsslapd-maxthreadsperconn to b'5' ticket48961_test.py 107 INFO Reseting nsslapd-accesslog-logexpirationtime ticket48961_test.py 111 INFO --> [b'1'] ticket48961_test.py 38 INFO Reset nsslapd-accesslog-logexpirationtime to b'1' ticket48961_test.py 107 INFO Reseting nsslapd-errorlog-logrotationsync-enabled ticket48961_test.py 111 INFO --> [b'off'] ticket48961_test.py 38 INFO Reset nsslapd-errorlog-logrotationsync-enabled to b'off' ticket48961_test.py 107 INFO Reseting nsslapd-errorlog-logrotationsynchour ticket48961_test.py 111 INFO --> [b'0'] ticket48961_test.py 38 INFO Reset nsslapd-errorlog-logrotationsynchour to b'0' ticket48961_test.py 107 INFO Reseting nsslapd-errorlog-logrotationsyncmin ticket48961_test.py 111 INFO --> [b'0'] ticket48961_test.py 38 INFO Reset nsslapd-errorlog-logrotationsyncmin to b'0' ticket48961_test.py 107 INFO Reseting nsslapd-errorlog-logrotationtime ticket48961_test.py 111 INFO --> [b'1'] ticket48961_test.py 38 INFO Reset nsslapd-errorlog-logrotationtime to b'1' ticket48961_test.py 107 INFO Reseting passwordInHistory ticket48961_test.py 111 INFO --> [b'6'] ticket48961_test.py 38 INFO Reset passwordInHistory to b'6' ticket48961_test.py 107 INFO Reseting passwordUnlock ticket48961_test.py 111 INFO --> [b'on'] ticket48961_test.py 38 INFO Reset passwordUnlock to b'on' ticket48961_test.py 107 INFO Reseting passwordGraceLimit ticket48961_test.py 111 INFO --> [b'0'] ticket48961_test.py 38 INFO Reset passwordGraceLimit to b'0' ticket48961_test.py 107 INFO Reseting nsslapd-accesslog-logrotationsync-enabled ticket48961_test.py 111 INFO --> [b'off'] ticket48961_test.py 38 INFO Reset nsslapd-accesslog-logrotationsync-enabled to b'off' ticket48961_test.py 107 INFO Reseting nsslapd-accesslog-logrotationsynchour ticket48961_test.py 111 INFO --> [b'0'] ticket48961_test.py 38 INFO Reset nsslapd-accesslog-logrotationsynchour to b'0' ticket48961_test.py 107 INFO Reseting nsslapd-accesslog-logrotationsyncmin ticket48961_test.py 111 INFO --> [b'0'] ticket48961_test.py 38 INFO Reset nsslapd-accesslog-logrotationsyncmin to b'0' ticket48961_test.py 107 INFO Reseting nsslapd-accesslog-logrotationtime ticket48961_test.py 111 INFO --> [b'1'] ticket48961_test.py 38 INFO Reset nsslapd-accesslog-logrotationtime to b'1' ticket48961_test.py 107 INFO Reseting passwordMustChange ticket48961_test.py 111 INFO --> [b'off'] ticket48961_test.py 38 INFO Reset passwordMustChange to b'off' ticket48961_test.py 107 INFO Reseting nsslapd-pwpolicy-local ticket48961_test.py 111 INFO --> [b'off'] ticket48961_test.py 38 INFO Reset nsslapd-pwpolicy-local to b'off' ticket48961_test.py 107 INFO Reseting nsslapd-pwpolicy-inherit-global ticket48961_test.py 111 INFO --> [b'off'] ticket48961_test.py 38 INFO Reset nsslapd-pwpolicy-inherit-global to b'off' ticket48961_test.py 107 INFO Reseting nsslapd-auditlog-logmaxdiskspace ticket48961_test.py 111 INFO --> [b'100'] ticket48961_test.py 38 INFO Reset nsslapd-auditlog-logmaxdiskspace to b'100' ticket48961_test.py 107 INFO Reseting nsslapd-sizelimit ticket48961_test.py 111 INFO --> [b'2000'] ticket48961_test.py 38 INFO Reset nsslapd-sizelimit to b'2000' ticket48961_test.py 107 INFO Reseting nsslapd-auditlog-maxlogsize ticket48961_test.py 111 INFO --> [b'100'] ticket48961_test.py 38 INFO Reset nsslapd-auditlog-maxlogsize to b'100' ticket48961_test.py 107 INFO Reseting passwordWarning ticket48961_test.py 111 INFO --> [b'86400'] ticket48961_test.py 38 INFO Reset passwordWarning to b'86400' ticket48961_test.py 107 INFO Reseting nsslapd-readonly ticket48961_test.py 111 INFO --> [b'off'] ticket48961_test.py 38 INFO Reset nsslapd-readonly to b'off' ticket48961_test.py 107 INFO Reseting nsslapd-sasl-mapping-fallback ticket48961_test.py 111 INFO --> [b'off'] ticket48961_test.py 38 INFO Reset nsslapd-sasl-mapping-fallback to b'off' ticket48961_test.py 107 INFO Reseting nsslapd-threadnumber ticket48961_test.py 111 INFO --> [b'24'] ticket48961_test.py 38 INFO Reset nsslapd-threadnumber to b'24' ticket48961_test.py 107 INFO Reseting passwordLockout ticket48961_test.py 111 INFO --> [b'off'] ticket48961_test.py 38 INFO Reset passwordLockout to b'off' ticket48961_test.py 107 INFO Reseting nsslapd-enquote-sup-oc ticket48961_test.py 111 INFO --> [b'off'] ticket48961_test.py 38 INFO Reset nsslapd-enquote-sup-oc to b'off' ticket48961_test.py 107 INFO Reseting nsslapd-ioblocktimeout ticket48961_test.py 111 INFO --> [b'300000'] ticket48961_test.py 38 INFO Reset nsslapd-ioblocktimeout to b'300000' ticket48961_test.py 107 INFO Reseting nsslapd-max-filter-nest-level ticket48961_test.py 111 INFO --> [b'40'] ticket48961_test.py 38 INFO Reset nsslapd-max-filter-nest-level to b'40' ticket48961_test.py 107 INFO Reseting nsslapd-errorlog-logmaxdiskspace ticket48961_test.py 111 INFO --> [b'100'] ticket48961_test.py 38 INFO Reset nsslapd-errorlog-logmaxdiskspace to b'100' ticket48961_test.py 107 INFO Reseting passwordMinLength ticket48961_test.py 111 INFO --> [b'8'] ticket48961_test.py 38 INFO Reset passwordMinLength to b'8' ticket48961_test.py 107 INFO Reseting passwordMinDigits ticket48961_test.py 111 INFO --> [b'0'] ticket48961_test.py 38 INFO Reset passwordMinDigits to b'0' ticket48961_test.py 107 INFO Reseting passwordMinAlphas ticket48961_test.py 111 INFO --> [b'0'] ticket48961_test.py 38 INFO Reset passwordMinAlphas to b'0' ticket48961_test.py 107 INFO Reseting passwordMinUppers ticket48961_test.py 111 INFO --> [b'0'] ticket48961_test.py 38 INFO Reset passwordMinUppers to b'0' ticket48961_test.py 107 INFO Reseting passwordMinLowers ticket48961_test.py 111 INFO --> [b'0'] ticket48961_test.py 38 INFO Reset passwordMinLowers to b'0' ticket48961_test.py 107 INFO Reseting passwordMinSpecials ticket48961_test.py 111 INFO --> [b'0'] ticket48961_test.py 38 INFO Reset passwordMinSpecials to b'0' ticket48961_test.py 107 INFO Reseting passwordMin8bit ticket48961_test.py 111 INFO --> [b'0'] ticket48961_test.py 38 INFO Reset passwordMin8bit to b'0' ticket48961_test.py 107 INFO Reseting passwordMaxRepeats ticket48961_test.py 111 INFO --> [b'0'] ticket48961_test.py 38 INFO Reset passwordMaxRepeats to b'0' ticket48961_test.py 107 INFO Reseting passwordMinCategories ticket48961_test.py 111 INFO --> [b'3'] ticket48961_test.py 38 INFO Reset passwordMinCategories to b'3' ticket48961_test.py 107 INFO Reseting passwordMinTokenLength ticket48961_test.py 111 INFO --> [b'3'] ticket48961_test.py 38 INFO Reset passwordMinTokenLength to b'3' ticket48961_test.py 107 INFO Reseting passwordPalindrome ticket48961_test.py 111 INFO --> [b'off'] ticket48961_test.py 38 INFO Reset passwordPalindrome to b'off' ticket48961_test.py 107 INFO Reseting passwordDictCheck ticket48961_test.py 111 INFO --> [b'off'] ticket48961_test.py 38 INFO Reset passwordDictCheck to b'off' ticket48961_test.py 107 INFO Reseting passwordDictPath ticket48961_test.py 111 INFO --> [b''] | |||
Failed | tickets/ticket49020_test.py::test_ticket49020 | 15.27 | |
T = <lib389.topologies.TopologyMain object at 0x7f3de7956d68> def test_ticket49020(T): A = T.ms['master1'] B = T.ms['master2'] C = T.ms['master3'] A.enableReplLogging() B.enableReplLogging() C.enableReplLogging() AtoB = A.agreement.list(suffix=DEFAULT_SUFFIX)[0].dn AtoC = A.agreement.list(suffix=DEFAULT_SUFFIX)[1].dn CtoB = C.agreement.list(suffix=DEFAULT_SUFFIX)[1].dn A.agreement.pause(AtoB) C.agreement.pause(CtoB) time.sleep(5) name = "userX" dn = "cn={},{}".format(name, DEFAULT_SUFFIX) A.add_s(Entry((dn, {'objectclass': "top person".split(), 'sn': name,'cn': name}))) > A.agreement.init(DEFAULT_SUFFIX, HOST_MASTER_3, PORT_MASTER_3) /export/tests/tickets/ticket49020_test.py:45: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.6/site-packages/lib389/agreement.py:1103: in init filt) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3deaac9a58> args = ('cn=replica,cn=dc\\3Dexample\\2Cdc\\3Dcom,cn=mapping tree,cn=config', 1, '(&(objectclass=nsds5replicationagreement)(nsds5replicahost=localhost)(nsds5replicaport=39003)(nsds5replicaroot=dc=example,dc=com))') kwargs = {}, res = 100, restype = 101, obj = [] def getEntry(self, *args, **kwargs): """Wrapper around SimpleLDAPObject.search. It is common to just get one entry. @param - entry dn @param - search scope, in ldap.SCOPE_BASE (default), ldap.SCOPE_SUB, ldap.SCOPE_ONE @param filterstr - filterstr, default '(objectClass=*)' from SimpleLDAPObject @param attrlist - list of attributes to retrieve. eg ['cn', 'uid'] @oaram attrsonly - default None from SimpleLDAPObject eg. getEntry(dn, scope, filter, attributes) XXX This cannot return None """ if self.verbose: self.log.debug("Retrieving entry with %r", [args]) if len(args) == 1 and 'scope' not in kwargs: args += (ldap.SCOPE_BASE, ) res = self.search(*args, **kwargs) restype, obj = self.result(res) # TODO: why not test restype? if not obj: > raise NoSuchEntryError("no such entry for %r", [args]) E lib389.exceptions.NoSuchEntryError: ('no such entry for %r', [('cn=replica,cn=dc\\3Dexample\\2Cdc\\3Dcom,cn=mapping tree,cn=config', 1, '(&(objectclass=nsds5replicationagreement)(nsds5replicahost=localhost)(nsds5replicaport=39003)(nsds5replicaroot=dc=example,dc=com))')]) /usr/lib/python3.6/site-packages/lib389/__init__.py:1813: NoSuchEntryError ---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. topologies.py 106 INFO Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. topologies.py 106 INFO Instance with parameters {'ldap-port': 39003, 'ldap-secureport': 63703, 'server-id': 'master3', 'suffix': 'dc=example,dc=com'} was created. topologies.py 139 INFO Creating replication topology. topologies.py 153 INFO Joining master master2 to master1 ... replica.py 1500 INFO SUCCESS: bootstrap to ldap://server.example.com:39002 completed replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 is was created replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 is was created replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39001 to ldap://server.example.com:39002 is working replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39002 to ldap://server.example.com:39001 is working replica.py 1569 INFO SUCCESS: joined master from ldap://server.example.com:39001 to ldap://server.example.com:39002 topologies.py 153 INFO Joining master master3 to master1 ... replica.py 1500 INFO SUCCESS: bootstrap to ldap://server.example.com:39003 completed replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39003 is was created replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39003 to ldap://server.example.com:39001 is was created replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39001 to ldap://server.example.com:39003 is working replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39003 to ldap://server.example.com:39001 is working replica.py 1569 INFO SUCCESS: joined master from ldap://server.example.com:39001 to ldap://server.example.com:39003 topologies.py 161 INFO Ensuring master master1 to master2 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 already exists topologies.py 161 INFO Ensuring master master1 to master3 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39003 already exists topologies.py 161 INFO Ensuring master master2 to master1 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 already exists topologies.py 161 INFO Ensuring master master2 to master3 ... replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39003 is was created topologies.py 161 INFO Ensuring master master3 to master1 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39003 to ldap://server.example.com:39001 already exists topologies.py 161 INFO Ensuring master master3 to master2 ... replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39003 to ldap://server.example.com:39002 is was created------------------------------ Captured log call ------------------------------- agreement.py 1139 INFO Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config agreement.py 1139 INFO Pausing replication cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config agreement.py 1108 CRITICAL initAgreement: No replica agreement to localhost:39003 for suffix dc=example,dc=com | |||
Failed | tickets/ticket49039_test.py::test_ticket49039 | 2.23 | |
topo = <lib389.topologies.TopologyMain object at 0x7f3deb05a710> def test_ticket49039(topo): """Test "password must change" verses "password min age". Min age should not block password update if the password was reset. """ # Setup SSL (for ldappasswd test) > ssl_init(topo) /export/tests/tickets/ticket49039_test.py:70: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /export/tests/tickets/ticket49039_test.py:35: in ssl_init topo.standalone.nss_ssl.reinit() _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3deaac2a20>, name = 'nss_ssl' def __getattr__(self,name): if name in self.CLASSATTR_OPTION_MAPPING: return self.get_option(self.CLASSATTR_OPTION_MAPPING[name]) elif name in self.__dict__: return self.__dict__[name] else: raise AttributeError('%s has no attribute %s' % ( > self.__class__.__name__,repr(name) )) E AttributeError: DirSrv has no attribute 'nss_ssl' /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:352: AttributeError ---------------------------- Captured stdout setup ----------------------------- Instance slapd-standalone1 removed. OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Failed | tickets/ticket49073_test.py::test_ticket49073 | 7.41 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f3deaf8fcf8> 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:102: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:629: in modify_s return self.modify_ext_s(dn,modlist,None,None) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:601: in modify_ext_s msgid = self.modify_ext(dn,modlist,serverctrls,clientctrls) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:598: in modify_ext return self._ldap_call(self._l.modify_ext,dn,modlist,RequestControlTuples(serverctrls),RequestControlTuples(clientctrls)) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3deb056048> func = <built-in method modify_ext of LDAP object at 0x7f3dea79eeb8> 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/lib64/python3.6/site-packages/ldap/ldapobject.py:313: TypeError ---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. topologies.py 106 INFO Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. topologies.py 139 INFO Creating replication topology. topologies.py 153 INFO Joining master master2 to master1 ... replica.py 1500 INFO SUCCESS: bootstrap to ldap://server.example.com:39002 completed replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 is was created replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 is was created replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39001 to ldap://server.example.com:39002 is working replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39002 to ldap://server.example.com:39001 is working replica.py 1569 INFO SUCCESS: joined master from ldap://server.example.com:39001 to ldap://server.example.com:39002 topologies.py 161 INFO Ensuring master master1 to master2 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 already exists topologies.py 161 INFO Ensuring master master2 to master1 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 already exists------------------------------ Captured log call ------------------------------- ticket49073_test.py 95 INFO update cn=002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config to add nsDS5ReplicatedAttributeListTotal | |||
Failed | tickets/ticket49121_test.py::test_ticket49121 | 0.00 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f3deabad828> def test_ticket49121(topology_m2): """ Creating some users. Deleting quite a number of attributes which may or may not be in the entry. The attribute type names are to be long. Under the conditions, it did not estimate the size of string format entry shorter than the real size and caused the Invalid write / server crash. """ > reload(sys) E NameError: name 'reload' is not defined /export/tests/tickets/ticket49121_test.py:38: NameError ---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. topologies.py 106 INFO Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. topologies.py 139 INFO Creating replication topology. topologies.py 153 INFO Joining master master2 to master1 ... replica.py 1500 INFO SUCCESS: bootstrap to ldap://server.example.com:39002 completed replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 is was created replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 is was created replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39001 to ldap://server.example.com:39002 is working replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39002 to ldap://server.example.com:39001 is working replica.py 1569 INFO SUCCESS: joined master from ldap://server.example.com:39001 to ldap://server.example.com:39002 topologies.py 161 INFO Ensuring master master1 to master2 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 already exists topologies.py 161 INFO Ensuring master master2 to master1 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 already exists | |||
Failed | tickets/ticket49180_test.py::test_ticket49180 | 24.70 | |
topology_m4 = <lib389.topologies.TopologyMain object at 0x7f3de76778d0> def test_ticket49180(topology_m4): log.info('Running test_ticket49180...') log.info('Check that replication works properly on all masters') agmt_nums = {"master1": ("2", "3", "4"), "master2": ("1", "3", "4"), "master3": ("1", "2", "4"), "master4": ("1", "2", "3")} for inst_name, agmts in agmt_nums.items(): for num in agmts: if not topology_m4.ms[inst_name].testReplication(DEFAULT_SUFFIX, topology_m4.ms["master{}".format(num)]): log.fatal( 'test_replication: Replication is not working between {} and master {}.'.format(inst_name, num)) assert False # Disable master 4 log.info('test_clean: disable master 4...') topology_m4.ms["master4"].replica.disableReplication(DEFAULT_SUFFIX) # Remove the agreements from the other masters that point to master 4 remove_master4_agmts("test_clean", topology_m4) # Cleanup - restore master 4 > restore_master4(topology_m4, 4444) /export/tests/tickets/ticket49180_test.py:148: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /export/tests/tickets/ticket49180_test.py:52: in restore_master4 replicaId=newReplicaId) /usr/lib/python3.6/site-packages/lib389/replica.py:556: in enableReplication self.conn.changelog.create() _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3deabad128>, name = 'changelog' def __getattr__(self,name): if name in self.CLASSATTR_OPTION_MAPPING: return self.get_option(self.CLASSATTR_OPTION_MAPPING[name]) elif name in self.__dict__: return self.__dict__[name] else: raise AttributeError('%s has no attribute %s' % ( > self.__class__.__name__,repr(name) )) E AttributeError: DirSrv has no attribute 'changelog' /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:352: AttributeError ---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. topologies.py 106 INFO Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. topologies.py 106 INFO Instance with parameters {'ldap-port': 39003, 'ldap-secureport': 63703, 'server-id': 'master3', 'suffix': 'dc=example,dc=com'} was created. topologies.py 106 INFO Instance with parameters {'ldap-port': 39004, 'ldap-secureport': 63704, 'server-id': 'master4', 'suffix': 'dc=example,dc=com'} was created. topologies.py 139 INFO Creating replication topology. topologies.py 153 INFO Joining master master2 to master1 ... replica.py 1500 INFO SUCCESS: bootstrap to ldap://server.example.com:39002 completed replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 is was created replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 is was created replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39001 to ldap://server.example.com:39002 is working replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39002 to ldap://server.example.com:39001 is working replica.py 1569 INFO SUCCESS: joined master from ldap://server.example.com:39001 to ldap://server.example.com:39002 topologies.py 153 INFO Joining master master3 to master1 ... replica.py 1500 INFO SUCCESS: bootstrap to ldap://server.example.com:39003 completed replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39003 is was created replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39003 to ldap://server.example.com:39001 is was created replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39001 to ldap://server.example.com:39003 is working replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39003 to ldap://server.example.com:39001 is working replica.py 1569 INFO SUCCESS: joined master from ldap://server.example.com:39001 to ldap://server.example.com:39003 topologies.py 153 INFO Joining master master4 to master1 ... replica.py 1500 INFO SUCCESS: bootstrap to ldap://server.example.com:39004 completed replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39004 is was created replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39004 to ldap://server.example.com:39001 is was created replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39001 to ldap://server.example.com:39004 is working replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39004 to ldap://server.example.com:39001 is working replica.py 1569 INFO SUCCESS: joined master from ldap://server.example.com:39001 to ldap://server.example.com:39004 topologies.py 161 INFO Ensuring master master1 to master2 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 already exists topologies.py 161 INFO Ensuring master master1 to master3 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39003 already exists topologies.py 161 INFO Ensuring master master1 to master4 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39004 already exists topologies.py 161 INFO Ensuring master master2 to master1 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 already exists topologies.py 161 INFO Ensuring master master2 to master3 ... replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39003 is was created topologies.py 161 INFO Ensuring master master2 to master4 ... replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39004 is was created topologies.py 161 INFO Ensuring master master3 to master1 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39003 to ldap://server.example.com:39001 already exists topologies.py 161 INFO Ensuring master master3 to master2 ... replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39003 to ldap://server.example.com:39002 is was created topologies.py 161 INFO Ensuring master master3 to master4 ... replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39003 to ldap://server.example.com:39004 is was created topologies.py 161 INFO Ensuring master master4 to master1 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39004 to ldap://server.example.com:39001 already exists topologies.py 161 INFO Ensuring master master4 to master2 ... replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39004 to ldap://server.example.com:39002 is was created topologies.py 161 INFO Ensuring master master4 to master3 ... replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39004 to ldap://server.example.com:39003 is was created------------------------------ Captured log call ------------------------------- ticket49180_test.py 124 INFO Running test_ticket49180... ticket49180_test.py 126 INFO Check that replication works properly on all masters ticket49180_test.py 141 INFO test_clean: disable master 4... ticket49180_test.py 32 INFO test_clean: remove all the agreements to master 4... agreement.py 1040 INFO Agreement (cn=004,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config) was successfully removed agreement.py 1040 INFO Agreement (cn=004,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config) was successfully removed agreement.py 1040 INFO Agreement (cn=004,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config) was successfully removed ticket49180_test.py 48 INFO Restoring master 4... backend.py 74 INFO List backend with suffix=dc=example,dc=com | |||
Failed | tickets/ticket49287_test.py::test_ticket49287 | 0.01 | |
topology_m2 = <lib389.topologies.TopologyMain object at 0x7f3dea772550> 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) /export/tests/tickets/ticket49287_test.py:285: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /export/tests/tickets/ticket49287_test.py:71: in config_memberof 'on')]) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:629: in modify_s return self.modify_ext_s(dn,modlist,None,None) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:601: in modify_ext_s msgid = self.modify_ext(dn,modlist,serverctrls,clientctrls) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:598: in modify_ext return self._ldap_call(self._l.modify_ext,dn,modlist,RequestControlTuples(serverctrls),RequestControlTuples(clientctrls)) /usr/lib/python3.6/site-packages/lib389/__init__.py:165: in inner return f(*args, **kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3de794b518> func = <built-in method modify_ext of LDAP object at 0x7f3dea3c4198> args = ('cn=MemberOf Plugin,cn=plugins,cn=config', [(2, 'memberOfAllBackends', 'on')], 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', 'o') /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:313: TypeError ---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. topologies.py 106 INFO Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. topologies.py 139 INFO Creating replication topology. topologies.py 153 INFO Joining master master2 to master1 ... replica.py 1500 INFO SUCCESS: bootstrap to ldap://server.example.com:39002 completed replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 is was created replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 is was created replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39001 to ldap://server.example.com:39002 is working replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39002 to ldap://server.example.com:39001 is working replica.py 1569 INFO SUCCESS: joined master from ldap://server.example.com:39001 to ldap://server.example.com:39002 topologies.py 161 INFO Ensuring master master1 to master2 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 already exists topologies.py 161 INFO Ensuring master master2 to master1 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 already exists | |||
Failed | tickets/ticket49303_test.py::test_ticket49303 | 2.22 | |
topo = <lib389.topologies.TopologyMain object at 0x7f3deaac9668> 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) /export/tests/tickets/ticket49303_test.py:84: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /export/tests/tickets/ticket49303_test.py:58: in enable_ssl server.nss_ssl.reinit() _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <lib389.DirSrv object at 0x7f3deaf8f9e8>, name = 'nss_ssl' def __getattr__(self,name): if name in self.CLASSATTR_OPTION_MAPPING: return self.get_option(self.CLASSATTR_OPTION_MAPPING[name]) elif name in self.__dict__: return self.__dict__[name] else: raise AttributeError('%s has no attribute %s' % ( > self.__class__.__name__,repr(name) )) E AttributeError: DirSrv has no attribute 'nss_ssl' /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:352: AttributeError ---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.------------------------------ Captured log call ------------------------------- ticket49303_test.py 81 INFO Ticket 49303 - Allow disabling of SSL renegotiation | |||
XFailed | suites/config/config_test.py::test_defaultnamingcontext_1 | 0.13 | |
topo = <lib389.topologies.TopologyMain object at 0x7f3dfbd41048> @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=test2,dc=com' == ' ' E Strings contain only whitespace, escaping them using repr() E - 'dc=test2,dc=com' E + ' ' suites/config/config_test.py:265: AssertionError ------------------------------ Captured log call ------------------------------- config_test.py 253 INFO Remove the original suffix which is currently nsslapd-defaultnamingcontextand check nsslapd-defaultnamingcontext become empty. | |||
XFailed | suites/replication/conflict_resolve_test.py::TestTwoMasters::()::test_memberof_groups | 0.00 | |
self = <tests.suites.replication.conflict_resolve_test.TestTwoMasters object at 0x7f3df9d2d438> topology_m2 = <lib389.topologies.TopologyMain object at 0x7f3deb77db38> base_m2 = <lib389.idm.nscontainer.nsContainer object at 0x7f3deb3c6c50> 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:399: XFailed | |||
XFailed | suites/replication/conflict_resolve_test.py::TestTwoMasters::()::test_managed_entries | 0.00 | |
self = <tests.suites.replication.conflict_resolve_test.TestTwoMasters object at 0x7f3deb3c76a0> topology_m2 = <lib389.topologies.TopologyMain object at 0x7f3deb77db38> 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:490: 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 0x7f3deb475fd0> topology_m2 = <lib389.topologies.TopologyMain object at 0x7f3deb77db38> base_m2 = <lib389.idm.nscontainer.nsContainer object at 0x7f3deb475128> 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:581: XFailed | |||
XFailed | suites/replication/conflict_resolve_test.py::TestThreeMasters::()::test_nested_entries | 0.00 | |
self = <tests.suites.replication.conflict_resolve_test.TestThreeMasters object at 0x7f3deb47cbe0> topology_m3 = <lib389.topologies.TopologyMain object at 0x7f3deb3bf2e8> base_m3 = <lib389.idm.nscontainer.nsContainer object at 0x7f3deb3bf358> 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:794: XFailed ---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. topologies.py 106 INFO Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. topologies.py 106 INFO Instance with parameters {'ldap-port': 39003, 'ldap-secureport': 63703, 'server-id': 'master3', 'suffix': 'dc=example,dc=com'} was created. topologies.py 139 INFO Creating replication topology. topologies.py 153 INFO Joining master master2 to master1 ... replica.py 1500 INFO SUCCESS: bootstrap to ldap://server.example.com:39002 completed replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 is was created replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 is was created replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39001 to ldap://server.example.com:39002 is working replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39002 to ldap://server.example.com:39001 is working replica.py 1569 INFO SUCCESS: joined master from ldap://server.example.com:39001 to ldap://server.example.com:39002 topologies.py 153 INFO Joining master master3 to master1 ... replica.py 1500 INFO SUCCESS: bootstrap to ldap://server.example.com:39003 completed replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39003 is was created replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39003 to ldap://server.example.com:39001 is was created replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39001 to ldap://server.example.com:39003 is working replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39003 to ldap://server.example.com:39001 is working replica.py 1569 INFO SUCCESS: joined master from ldap://server.example.com:39001 to ldap://server.example.com:39003 topologies.py 161 INFO Ensuring master master1 to master2 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 already exists topologies.py 161 INFO Ensuring master master1 to master3 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39003 already exists topologies.py 161 INFO Ensuring master master2 to master1 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 already exists topologies.py 161 INFO Ensuring master master2 to master3 ... replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39003 is was created topologies.py 161 INFO Ensuring master master3 to master1 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39003 to ldap://server.example.com:39001 already exists topologies.py 161 INFO Ensuring master master3 to master2 ... replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39003 to ldap://server.example.com:39002 is was created | |||
XFailed | suites/replication/replica_config_test.py::test_agmt_num_add[nsds5ReplicaPort-0-65535-9999999999999999999999999999999999999999999999999999999999999999999-invalid-389] | 0.02 | |
topo = <lib389.topologies.TopologyMain object at 0x7f3deb35c3c8> 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 :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:210: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ many = <lib389.agreement.Agreements object at 0x7f3deb35a0f0> 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): > many.create(properties=my_properties) E Failed: DID NOT RAISE <class 'ldap.LDAPError'> suites/replication/replica_config_test.py:106: Failed | |||
XFailed | suites/replication/replica_config_test.py::test_agmt_num_modify[nsds5ReplicaPort-0-65535-9999999999999999999999999999999999999999999999999999999999999999999-invalid-389] | 0.13 | |
topo = <lib389.topologies.TopologyMain object at 0x7f3deb35c3c8> 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 :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:245: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ o = <lib389.agreement.Agreement object at 0x7f3deb32c5c0> attr = 'nsds5ReplicaPort', value = '0' def perform_invalid_modify(o, attr, value): with pytest.raises(ldap.LDAPError): > o.replace(attr, value) E Failed: DID NOT RAISE <class 'ldap.LDAPError'> suites/replication/replica_config_test.py:110: Failed | |||
XFailed | suites/replication/replica_config_test.py::test_agmt_num_modify[nsds5ReplicaTimeout--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.12 | |
topo = <lib389.topologies.TopologyMain object at 0x7f3deb35c3c8> 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 :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:247: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ o = <lib389.agreement.Agreement object at 0x7f3deb37f978> attr = 'nsds5ReplicaTimeout', value = '9223372036854775807' def perform_invalid_modify(o, attr, value): with pytest.raises(ldap.LDAPError): > o.replace(attr, value) E Failed: DID NOT RAISE <class 'ldap.LDAPError'> suites/replication/replica_config_test.py:110: Failed | |||
XFailed | suites/replication/replica_config_test.py::test_agmt_num_modify[nsds5ReplicaBusyWaitTime--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.12 | |
topo = <lib389.topologies.TopologyMain object at 0x7f3deb35c3c8> 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 :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:247: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ o = <lib389.agreement.Agreement object at 0x7f3deb2ea668> attr = 'nsds5ReplicaBusyWaitTime', value = '9223372036854775807' def perform_invalid_modify(o, attr, value): with pytest.raises(ldap.LDAPError): > o.replace(attr, value) E Failed: DID NOT RAISE <class 'ldap.LDAPError'> suites/replication/replica_config_test.py:110: Failed | |||
XFailed | suites/replication/replica_config_test.py::test_agmt_num_modify[nsds5ReplicaSessionPauseTime--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.12 | |
topo = <lib389.topologies.TopologyMain object at 0x7f3deb35c3c8> 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 :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:247: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ o = <lib389.agreement.Agreement object at 0x7f3deb2d85c0> attr = 'nsds5ReplicaSessionPauseTime', value = '9223372036854775807' def perform_invalid_modify(o, attr, value): with pytest.raises(ldap.LDAPError): > o.replace(attr, value) E Failed: DID NOT RAISE <class 'ldap.LDAPError'> suites/replication/replica_config_test.py:110: Failed | |||
XFailed | suites/replication/replica_config_test.py::test_agmt_num_modify[nsds5ReplicaFlowControlWindow--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.12 | |
topo = <lib389.topologies.TopologyMain object at 0x7f3deb35c3c8> 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 :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:247: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ o = <lib389.agreement.Agreement object at 0x7f3deb2fee10> attr = 'nsds5ReplicaFlowControlWindow', value = '9223372036854775807' def perform_invalid_modify(o, attr, value): with pytest.raises(ldap.LDAPError): > o.replace(attr, value) E Failed: DID NOT RAISE <class 'ldap.LDAPError'> suites/replication/replica_config_test.py:110: Failed | |||
XFailed | suites/replication/replica_config_test.py::test_agmt_num_modify[nsds5ReplicaFlowControlPause--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.12 | |
topo = <lib389.topologies.TopologyMain object at 0x7f3deb35c3c8> 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 :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:247: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ o = <lib389.agreement.Agreement object at 0x7f3deb204da0> attr = 'nsds5ReplicaFlowControlPause', value = '9223372036854775807' def perform_invalid_modify(o, attr, value): with pytest.raises(ldap.LDAPError): > o.replace(attr, value) E Failed: DID NOT RAISE <class 'ldap.LDAPError'> suites/replication/replica_config_test.py:110: Failed | |||
XFailed | suites/replication/replica_config_test.py::test_agmt_num_modify[nsds5ReplicaProtocolTimeout--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.12 | |
topo = <lib389.topologies.TopologyMain object at 0x7f3deb35c3c8> 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 :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:247: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ o = <lib389.agreement.Agreement object at 0x7f3deb20fc50> attr = 'nsds5ReplicaProtocolTimeout', value = '9223372036854775807' def perform_invalid_modify(o, attr, value): with pytest.raises(ldap.LDAPError): > o.replace(attr, value) E Failed: DID NOT RAISE <class 'ldap.LDAPError'> suites/replication/replica_config_test.py:110: Failed | |||
XFailed | suites/replication/ruvstore_test.py::test_memoryruv_sync_with_databaseruv | 0.28 | |
topo = <lib389.topologies.TopologyMain object at 0x7f3deb20f358> @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:137: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ topo = <lib389.topologies.TopologyMain object at 0x7f3deb20f358> 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:79: AttributeError ------------------------------ Captured log call ------------------------------- ruvstore_test.py 134 INFO Adding user: rep2lusr to master1 ruvstore_test.py 73 INFO Checking memory ruv for ldap: add operation ruvstore_test.py 78 INFO Checking database ruv for ldap: add operation | |||
XPassed | suites/replication/replica_config_test.py::test_agmt_num_add[nsds5ReplicaTimeout--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.13 | |
No log output captured. | |||
XPassed | suites/replication/replica_config_test.py::test_agmt_num_add[nsds5ReplicaBusyWaitTime--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.13 | |
No log output captured. | |||
XPassed | suites/replication/replica_config_test.py::test_agmt_num_add[nsds5ReplicaSessionPauseTime--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.13 | |
No log output captured. | |||
XPassed | suites/replication/replica_config_test.py::test_agmt_num_add[nsds5ReplicaFlowControlWindow--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.13 | |
No log output captured. | |||
XPassed | suites/replication/replica_config_test.py::test_agmt_num_add[nsds5ReplicaFlowControlPause--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.13 | |
No log output captured. | |||
XPassed | suites/replication/replica_config_test.py::test_agmt_num_add[nsds5ReplicaProtocolTimeout--1-9223372036854775807-9999999999999999999999999999999999999999999999999999999999999999999-invalid-6] | 0.13 | |
No log output captured. | |||
Skipped | suites/memory_leaks/range_search_test.py::test_range_search::setup | 0.00 | |
('suites/memory_leaks/range_search_test.py', 21, "Skipped: Don't run if ASAN is not enabled") | |||
Skipped | tickets/ticket47815_test.py::test_ticket47815::setup | 0.00 | |
('tickets/ticket47815_test.py', 23, 'Skipped: Not implemented, or invalid by nsMemberOf') | |||
Passed | suites/acl/acl_deny_test.py::test_multi_deny_aci | 11.62 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. acl_deny_test.py 37 INFO Add uid=tuser1,ou=People,dc=example,dc=com acl_deny_test.py 48 INFO Add uid=tuser,ou=People,dc=example,dc=com------------------------------ Captured log call ------------------------------- acl_deny_test.py 80 INFO Pass 1 acl_deny_test.py 83 INFO Testing two searches behave the same... acl_deny_test.py 126 INFO Testing search does not return any entries... acl_deny_test.py 80 INFO Pass 2 acl_deny_test.py 83 INFO Testing two searches behave the same... acl_deny_test.py 126 INFO Testing search does not return any entries... acl_deny_test.py 190 INFO Test PASSED | |||
Passed | suites/acl/acl_test.py::test_aci_attr_subtype_targetattr[lang-ja] | 0.00 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. topologies.py 106 INFO Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. topologies.py 139 INFO Creating replication topology. topologies.py 153 INFO Joining master master2 to master1 ... replica.py 1500 INFO SUCCESS: bootstrap to ldap://server.example.com:39002 completed replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 is was created replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 is was created replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39001 to ldap://server.example.com:39002 is working replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39002 to ldap://server.example.com:39001 is working replica.py 1569 INFO SUCCESS: joined master from ldap://server.example.com:39001 to ldap://server.example.com:39002 topologies.py 161 INFO Ensuring master master1 to master2 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 already exists topologies.py 161 INFO Ensuring master master2 to master1 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 already exists acl_test.py 75 INFO ========Executing test with 'lang-ja' subtype======== acl_test.py 76 INFO Add a target attribute acl_test.py 79 INFO Add a user attribute acl_test.py 87 INFO Add an ACI with attribute subtype------------------------------ Captured log call ------------------------------- acl_test.py 116 INFO Search for the added attribute acl_test.py 123 INFO The added attribute was found | |||
Passed | suites/acl/acl_test.py::test_aci_attr_subtype_targetattr[binary] | 0.00 | |
------------------------------ Captured log setup ------------------------------ acl_test.py 75 INFO ========Executing test with 'binary' subtype======== acl_test.py 76 INFO Add a target attribute acl_test.py 79 INFO Add a user attribute acl_test.py 87 INFO Add an ACI with attribute subtype------------------------------ Captured log call ------------------------------- acl_test.py 116 INFO Search for the added attribute acl_test.py 123 INFO The added attribute was found | |||
Passed | suites/acl/acl_test.py::test_aci_attr_subtype_targetattr[phonetic] | 0.00 | |
------------------------------ Captured log setup ------------------------------ acl_test.py 75 INFO ========Executing test with 'phonetic' subtype======== acl_test.py 76 INFO Add a target attribute acl_test.py 79 INFO Add a user attribute acl_test.py 87 INFO Add an ACI with attribute subtype------------------------------ Captured log call ------------------------------- acl_test.py 116 INFO Search for the added attribute acl_test.py 123 INFO The added attribute was found | |||
Passed | suites/acl/acl_test.py::test_mode_default_add_deny | 0.03 | |
------------------------------ Captured log setup ------------------------------ acl_test.py 231 INFO ######## INITIALIZATION ######## acl_test.py 234 INFO Add uid=bind_entry,dc=example,dc=com acl_test.py 244 INFO Add cn=staged user,dc=example,dc=com acl_test.py 248 INFO Add cn=accounts,dc=example,dc=com acl_test.py 252 INFO Add cn=excepts,cn=accounts,dc=example,dc=com------------------------------ Captured log call ------------------------------- acl_test.py 284 INFO ######## mode moddn_aci : ADD (should fail) ######## acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 292 INFO Try to add cn=accounts,dc=example,dc=com acl_test.py 301 INFO Exception (expected): INSUFFICIENT_ACCESS | |||
Passed | suites/acl/acl_test.py::test_mode_default_delete_deny | 0.03 | |
------------------------------ Captured log call ------------------------------- acl_test.py 319 INFO ######## DELETE (should fail) ######## acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 326 INFO Try to delete cn=staged user,dc=example,dc=com acl_test.py 331 INFO 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.43 | |
------------------------------ Captured log call ------------------------------- acl_test.py 365 INFO ######## MOVE staging -> Prod (0) ######## acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 377 INFO Try to MODDN uid=new_account0,cn=staged user,dc=example,dc=com -> uid=new_account0,cn=accounts,dc=example,dc=com acl_test.py 384 INFO Exception (expected): INSUFFICIENT_ACCESS acl_test.py 388 INFO ######## MOVE to and from equality filter ######## acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 395 INFO Try to MODDN uid=new_account0,cn=staged user,dc=example,dc=com -> uid=new_account0,cn=accounts,dc=example,dc=com acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO 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.30 | |
------------------------------ Captured log call ------------------------------- acl_test.py 365 INFO ######## MOVE staging -> Prod (1) ######## acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 377 INFO Try to MODDN uid=new_account1,cn=staged user,dc=example,dc=com -> uid=new_account1,cn=accounts,dc=example,dc=com acl_test.py 384 INFO Exception (expected): INSUFFICIENT_ACCESS acl_test.py 388 INFO ######## MOVE to and from equality filter ######## acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 395 INFO Try to MODDN uid=new_account1,cn=staged user,dc=example,dc=com -> uid=new_account1,cn=accounts,dc=example,dc=com acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO 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.31 | |
------------------------------ Captured log call ------------------------------- acl_test.py 365 INFO ######## MOVE staging -> Prod (2) ######## acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 377 INFO Try to MODDN uid=new_account2,cn=staged user,dc=example,dc=com -> uid=new_account2,cn=accounts,dc=example,dc=com acl_test.py 384 INFO Exception (expected): INSUFFICIENT_ACCESS acl_test.py 388 INFO ######## MOVE to and from equality filter ######## acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 395 INFO Try to MODDN uid=new_account2,cn=staged user,dc=example,dc=com -> uid=new_account2,cn=accounts,dc=example,dc=com acl_test.py 398 INFO Exception (expected): INSUFFICIENT_ACCESS acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO 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.30 | |
------------------------------ Captured log call ------------------------------- acl_test.py 365 INFO ######## MOVE staging -> Prod (3) ######## acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 377 INFO Try to MODDN uid=new_account3,cn=staged user,dc=example,dc=com -> uid=new_account3,cn=accounts,dc=example,dc=com acl_test.py 384 INFO Exception (expected): INSUFFICIENT_ACCESS acl_test.py 388 INFO ######## MOVE to and from equality filter ######## acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 395 INFO Try to MODDN uid=new_account3,cn=staged user,dc=example,dc=com -> uid=new_account3,cn=accounts,dc=example,dc=com acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com | |||
Passed | suites/acl/acl_test.py::test_moddn_staging_prod[4-cn=bad*,dc=example,dc=com-cn=accounts,dc=example,dc=com-True] | 0.29 | |
------------------------------ Captured log call ------------------------------- acl_test.py 365 INFO ######## MOVE staging -> Prod (4) ######## acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 377 INFO Try to MODDN uid=new_account4,cn=staged user,dc=example,dc=com -> uid=new_account4,cn=accounts,dc=example,dc=com acl_test.py 384 INFO Exception (expected): INSUFFICIENT_ACCESS acl_test.py 388 INFO ######## MOVE to and from equality filter ######## acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 395 INFO Try to MODDN uid=new_account4,cn=staged user,dc=example,dc=com -> uid=new_account4,cn=accounts,dc=example,dc=com acl_test.py 398 INFO Exception (expected): INSUFFICIENT_ACCESS acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO 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.29 | |
------------------------------ Captured log call ------------------------------- acl_test.py 365 INFO ######## MOVE staging -> Prod (5) ######## acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 377 INFO Try to MODDN uid=new_account5,cn=staged user,dc=example,dc=com -> uid=new_account5,cn=accounts,dc=example,dc=com acl_test.py 384 INFO Exception (expected): INSUFFICIENT_ACCESS acl_test.py 388 INFO ######## MOVE to and from equality filter ######## acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 395 INFO Try to MODDN uid=new_account5,cn=staged user,dc=example,dc=com -> uid=new_account5,cn=accounts,dc=example,dc=com acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com | |||
Passed | suites/acl/acl_test.py::test_moddn_staging_prod[6-None-cn=ac*,dc=example,dc=com-False] | 0.29 | |
------------------------------ Captured log call ------------------------------- acl_test.py 365 INFO ######## MOVE staging -> Prod (6) ######## acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 377 INFO Try to MODDN uid=new_account6,cn=staged user,dc=example,dc=com -> uid=new_account6,cn=accounts,dc=example,dc=com acl_test.py 384 INFO Exception (expected): INSUFFICIENT_ACCESS acl_test.py 388 INFO ######## MOVE to and from equality filter ######## acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 395 INFO Try to MODDN uid=new_account6,cn=staged user,dc=example,dc=com -> uid=new_account6,cn=accounts,dc=example,dc=com acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO 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.29 | |
------------------------------ Captured log call ------------------------------- acl_test.py 365 INFO ######## MOVE staging -> Prod (7) ######## acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 377 INFO Try to MODDN uid=new_account7,cn=staged user,dc=example,dc=com -> uid=new_account7,cn=accounts,dc=example,dc=com acl_test.py 384 INFO Exception (expected): INSUFFICIENT_ACCESS acl_test.py 388 INFO ######## MOVE to and from equality filter ######## acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 395 INFO Try to MODDN uid=new_account7,cn=staged user,dc=example,dc=com -> uid=new_account7,cn=accounts,dc=example,dc=com acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com | |||
Passed | suites/acl/acl_test.py::test_moddn_staging_prod[8-None-None-False] | 0.29 | |
------------------------------ Captured log call ------------------------------- acl_test.py 365 INFO ######## MOVE staging -> Prod (8) ######## acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 377 INFO Try to MODDN uid=new_account8,cn=staged user,dc=example,dc=com -> uid=new_account8,cn=accounts,dc=example,dc=com acl_test.py 384 INFO Exception (expected): INSUFFICIENT_ACCESS acl_test.py 388 INFO ######## MOVE to and from equality filter ######## acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 395 INFO Try to MODDN uid=new_account8,cn=staged user,dc=example,dc=com -> uid=new_account8,cn=accounts,dc=example,dc=com acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com | |||
Passed | suites/acl/acl_test.py::test_moddn_staging_prod_9 | 1.31 | |
------------------------------ Captured log call ------------------------------- acl_test.py 441 INFO ######## MOVE staging -> Prod (9) ######## acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 454 INFO Try to MODDN uid=new_account9,cn=staged user,dc=example,dc=com -> uid=new_account9,cn=accounts,dc=example,dc=com acl_test.py 461 INFO Exception (expected): INSUFFICIENT_ACCESS acl_test.py 467 INFO Disable the moddn right acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 472 INFO ######## MOVE to and from equality filter ######## acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 480 INFO Try to MODDN uid=new_account9,cn=staged user,dc=example,dc=com -> uid=new_account9,cn=accounts,dc=example,dc=com acl_test.py 487 INFO Exception (expected): INSUFFICIENT_ACCESS acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 509 INFO Try to MODDN uid=new_account9,cn=staged user,dc=example,dc=com -> uid=new_account9,cn=accounts,dc=example,dc=com acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 520 INFO Enable the moddn right acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 524 INFO ######## MOVE staging -> Prod (10) ######## acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 536 INFO Try to MODDN uid=new_account10,cn=staged user,dc=example,dc=com -> uid=new_account10,cn=accounts,dc=example,dc=com acl_test.py 543 INFO Exception (expected): INSUFFICIENT_ACCESS acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 560 INFO Try to MODDN uid=new_account10,cn=staged user,dc=example,dc=com -> uid=new_account10,cn=accounts,dc=example,dc=com acl_test.py 567 INFO Exception (expected): INSUFFICIENT_ACCESS acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 576 INFO ######## MOVE to and from equality filter ######## acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 582 INFO Try to MODDN uid=new_account10,cn=staged user,dc=example,dc=com -> uid=new_account10,cn=accounts,dc=example,dc=com acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com | |||
Passed | suites/acl/acl_test.py::test_moddn_prod_staging | 0.54 | |
------------------------------ Captured log call ------------------------------- acl_test.py 611 INFO ######## MOVE staging -> Prod (11) ######## acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 624 INFO Try to MODDN uid=new_account11,cn=staged user,dc=example,dc=com -> uid=new_account11,cn=accounts,dc=example,dc=com acl_test.py 631 INFO Exception (expected): INSUFFICIENT_ACCESS acl_test.py 635 INFO ######## MOVE to and from equality filter ######## acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 641 INFO Try to MODDN uid=new_account11,cn=staged user,dc=example,dc=com -> uid=new_account11,cn=accounts,dc=example,dc=com acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 656 INFO Try to move back MODDN uid=new_account11,cn=accounts,dc=example,dc=com -> uid=new_account11,cn=staged user,dc=example,dc=com acl_test.py 663 INFO Exception (expected): INSUFFICIENT_ACCESS acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com | |||
Passed | suites/acl/acl_test.py::test_check_repl_M2_to_M1 | 1.11 | |
------------------------------ Captured log call ------------------------------- acl_test.py 693 INFO Bind as cn=Directory Manager (M2) acl_test.py 713 INFO Update (M2) uid=new_account12,cn=staged user,dc=example,dc=com (description) acl_test.py 726 INFO Update uid=new_account12,cn=staged user,dc=example,dc=com (description) replicated on M1 | |||
Passed | suites/acl/acl_test.py::test_moddn_staging_prod_except | 0.30 | |
------------------------------ Captured log call ------------------------------- acl_test.py 751 INFO ######## MOVE staging -> Prod (13) ######## acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 763 INFO Try to MODDN uid=new_account13,cn=staged user,dc=example,dc=com -> uid=new_account13,cn=accounts,dc=example,dc=com acl_test.py 770 INFO Exception (expected): INSUFFICIENT_ACCESS acl_test.py 774 INFO ######## MOVE to and from equality filter ######## acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 158 INFO Add a DENY aci under cn=excepts,cn=accounts,dc=example,dc=com acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 781 INFO Try to MODDN uid=new_account13,cn=staged user,dc=example,dc=com -> uid=new_account13,cn=accounts,dc=example,dc=com acl_test.py 787 INFO ######## MOVE staging -> Prod/Except (14) ######## acl_test.py 793 INFO Try to MODDN uid=new_account14,cn=staged user,dc=example,dc=com -> uid=new_account14,cn=excepts,cn=accounts,dc=example,dc=com acl_test.py 800 INFO Exception (expected): INSUFFICIENT_ACCESS acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 158 INFO Add a DENY aci under cn=excepts,cn=accounts,dc=example,dc=com acl_test.py 137 INFO 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 ------------------------------- acl_test.py 827 INFO ######## mode moddn_aci : GER no moddn ######## acl_test.py 838 INFO dn: cn=accounts,dc=example,dc=com acl_test.py 838 INFO dn: cn=excepts,cn=accounts,dc=example,dc=com acl_test.py 838 INFO dn: uid=new_account0,cn=accounts,dc=example,dc=com acl_test.py 838 INFO dn: uid=new_account1,cn=accounts,dc=example,dc=com acl_test.py 838 INFO dn: uid=new_account3,cn=accounts,dc=example,dc=com acl_test.py 838 INFO dn: uid=new_account5,cn=accounts,dc=example,dc=com acl_test.py 838 INFO dn: uid=new_account6,cn=accounts,dc=example,dc=com acl_test.py 838 INFO dn: uid=new_account7,cn=accounts,dc=example,dc=com acl_test.py 838 INFO dn: uid=new_account8,cn=accounts,dc=example,dc=com acl_test.py 838 INFO dn: uid=new_account9,cn=accounts,dc=example,dc=com acl_test.py 838 INFO dn: uid=new_account10,cn=accounts,dc=example,dc=com acl_test.py 838 INFO dn: uid=new_account11,cn=accounts,dc=example,dc=com acl_test.py 838 INFO dn: uid=new_account13,cn=accounts,dc=example,dc=com acl_test.py 841 INFO ######## entryLevelRights: b'v' | |||
Passed | suites/acl/acl_test.py::test_mode_default_ger_with_moddn | 0.27 | |
------------------------------ Captured log call ------------------------------- acl_test.py 865 INFO ######## mode moddn_aci: GER with moddn ######## acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 883 INFO dn: cn=accounts,dc=example,dc=com acl_test.py 883 INFO dn: cn=excepts,cn=accounts,dc=example,dc=com acl_test.py 883 INFO dn: uid=new_account0,cn=accounts,dc=example,dc=com acl_test.py 883 INFO dn: uid=new_account1,cn=accounts,dc=example,dc=com acl_test.py 883 INFO dn: uid=new_account3,cn=accounts,dc=example,dc=com acl_test.py 883 INFO dn: uid=new_account5,cn=accounts,dc=example,dc=com acl_test.py 883 INFO dn: uid=new_account6,cn=accounts,dc=example,dc=com acl_test.py 883 INFO dn: uid=new_account7,cn=accounts,dc=example,dc=com acl_test.py 883 INFO dn: uid=new_account8,cn=accounts,dc=example,dc=com acl_test.py 883 INFO dn: uid=new_account9,cn=accounts,dc=example,dc=com acl_test.py 883 INFO dn: uid=new_account10,cn=accounts,dc=example,dc=com acl_test.py 883 INFO dn: uid=new_account11,cn=accounts,dc=example,dc=com acl_test.py 883 INFO dn: uid=new_account13,cn=accounts,dc=example,dc=com acl_test.py 886 INFO ######## entryLevelRights: b'vn' acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO 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 ------------------------------- acl_test.py 916 INFO ######## Disable the moddn aci mod ######## acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 920 INFO ######## mode legacy 1: GER no moddn ######## acl_test.py 930 INFO dn: cn=accounts,dc=example,dc=com acl_test.py 930 INFO dn: cn=excepts,cn=accounts,dc=example,dc=com acl_test.py 930 INFO dn: uid=new_account0,cn=accounts,dc=example,dc=com acl_test.py 930 INFO dn: uid=new_account1,cn=accounts,dc=example,dc=com acl_test.py 930 INFO dn: uid=new_account3,cn=accounts,dc=example,dc=com acl_test.py 930 INFO dn: uid=new_account5,cn=accounts,dc=example,dc=com acl_test.py 930 INFO dn: uid=new_account6,cn=accounts,dc=example,dc=com acl_test.py 930 INFO dn: uid=new_account7,cn=accounts,dc=example,dc=com acl_test.py 930 INFO dn: uid=new_account8,cn=accounts,dc=example,dc=com acl_test.py 930 INFO dn: uid=new_account9,cn=accounts,dc=example,dc=com acl_test.py 930 INFO dn: uid=new_account10,cn=accounts,dc=example,dc=com acl_test.py 930 INFO dn: uid=new_account11,cn=accounts,dc=example,dc=com acl_test.py 930 INFO dn: uid=new_account13,cn=accounts,dc=example,dc=com acl_test.py 933 INFO ######## entryLevelRights: b'v' | |||
Passed | suites/acl/acl_test.py::test_mode_legacy_ger_no_moddn2 | 0.37 | |
------------------------------ Captured log call ------------------------------- acl_test.py 959 INFO ######## Disable the moddn aci mod ######## acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 963 INFO ######## mode legacy 2: GER no moddn ######## acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 980 INFO dn: cn=accounts,dc=example,dc=com acl_test.py 980 INFO dn: cn=excepts,cn=accounts,dc=example,dc=com acl_test.py 980 INFO dn: uid=new_account0,cn=accounts,dc=example,dc=com acl_test.py 980 INFO dn: uid=new_account1,cn=accounts,dc=example,dc=com acl_test.py 980 INFO dn: uid=new_account3,cn=accounts,dc=example,dc=com acl_test.py 980 INFO dn: uid=new_account5,cn=accounts,dc=example,dc=com acl_test.py 980 INFO dn: uid=new_account6,cn=accounts,dc=example,dc=com acl_test.py 980 INFO dn: uid=new_account7,cn=accounts,dc=example,dc=com acl_test.py 980 INFO dn: uid=new_account8,cn=accounts,dc=example,dc=com acl_test.py 980 INFO dn: uid=new_account9,cn=accounts,dc=example,dc=com acl_test.py 980 INFO dn: uid=new_account10,cn=accounts,dc=example,dc=com acl_test.py 980 INFO dn: uid=new_account11,cn=accounts,dc=example,dc=com acl_test.py 980 INFO dn: uid=new_account13,cn=accounts,dc=example,dc=com acl_test.py 983 INFO ######## entryLevelRights: b'v' acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com | |||
Passed | suites/acl/acl_test.py::test_mode_legacy_ger_with_moddn | 0.35 | |
------------------------------ Captured log call ------------------------------- acl_test.py 1019 INFO ######## Disable the moddn aci mod ######## acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 1023 INFO ######## mode legacy : GER with moddn ######## acl_test.py 131 INFO Bind as cn=Directory Manager acl_test.py 137 INFO Bind as uid=bind_entry,dc=example,dc=com acl_test.py 1045 INFO dn: cn=accounts,dc=example,dc=com acl_test.py 1045 INFO dn: cn=excepts,cn=accounts,dc=example,dc=com acl_test.py 1045 INFO dn: uid=new_account0,cn=accounts,dc=example,dc=com acl_test.py 1045 INFO dn: uid=new_account1,cn=accounts,dc=example,dc=com acl_test.py 1045 INFO dn: uid=new_account3,cn=accounts,dc=example,dc=com acl_test.py 1045 INFO dn: uid=new_account5,cn=accounts,dc=example,dc=com acl_test.py 1045 INFO dn: uid=new_account6,cn=accounts,dc=example,dc=com acl_test.py 1045 INFO dn: uid=new_account7,cn=accounts,dc=example,dc=com acl_test.py 1045 INFO dn: uid=new_account8,cn=accounts,dc=example,dc=com acl_test.py 1045 INFO dn: uid=new_account9,cn=accounts,dc=example,dc=com acl_test.py 1045 INFO dn: uid=new_account10,cn=accounts,dc=example,dc=com acl_test.py 1045 INFO dn: uid=new_account11,cn=accounts,dc=example,dc=com acl_test.py 1045 INFO dn: uid=new_account13,cn=accounts,dc=example,dc=com acl_test.py 1048 INFO ######## entryLevelRights: b'vn' acl_test.py 131 INFO Bind as cn=Directory Manager | |||
Passed | suites/acl/acl_test.py::test_rdn_write_get_ger | 0.01 | |
------------------------------ Captured log setup ------------------------------ acl_test.py 1059 INFO ######## Add entry tuser ########------------------------------ Captured log call ------------------------------- acl_test.py 1083 INFO ######## GER rights for anonymous ######## acl_test.py 1093 INFO dn: dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: cn=Directory Administrators,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: ou=Groups,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: ou=People,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: ou=Special Users,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: cn=Accounting Managers,ou=Groups,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: cn=HR Managers,ou=Groups,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: cn=QA Managers,ou=Groups,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: cn=PD Managers,ou=Groups,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: cn=replication_managers,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: ou=Services,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: cn=server.example.com:63701,ou=Services,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: cn=server.example.com:63702,ou=Services,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: uid=bind_entry,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: cn=staged user,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: cn=accounts,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: cn=excepts,cn=accounts,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: uid=new_account0,cn=accounts,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: uid=new_account1,cn=accounts,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: uid=new_account2,cn=staged user,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: uid=new_account3,cn=accounts,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: uid=new_account4,cn=staged user,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: uid=new_account5,cn=accounts,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: uid=new_account6,cn=accounts,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: uid=new_account7,cn=accounts,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: uid=new_account8,cn=accounts,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: uid=new_account9,cn=accounts,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: uid=new_account10,cn=accounts,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: uid=new_account11,cn=accounts,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: uid=new_account12,cn=staged user,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: uid=new_account13,cn=accounts,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: uid=new_account14,cn=staged user,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: uid=new_account15,cn=staged user,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: uid=new_account16,cn=staged user,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: uid=new_account17,cn=staged user,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: uid=new_account18,cn=staged user,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: uid=new_account19,cn=staged user,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' acl_test.py 1093 INFO dn: cn=tuser,dc=example,dc=com acl_test.py 1095 INFO ######## entryLevelRights: b'v' | |||
Passed | suites/acl/acl_test.py::test_rdn_write_modrdn_anonymous | 6.14 | |
------------------------------ Captured log call ------------------------------- acl_test.py 1122 INFO dn: acl_test.py 1124 INFO ######## 'objectClass': [b'top'] acl_test.py 1124 INFO ######## 'defaultnamingcontext': [b'dc=example,dc=com'] acl_test.py 1124 INFO ######## 'dataversion': [b'020180923232157'] acl_test.py 1124 INFO ######## 'netscapemdsuffix': [b'cn=ldap://dc=server,dc=example,dc=com:39001'] acl_test.py 1129 INFO Exception (expected): INSUFFICIENT_ACCESS acl_test.py 1136 INFO The entry was not renamed (expected) acl_test.py 131 INFO Bind as cn=Directory Manager | |||
Passed | suites/acl/enhanced_aci_modrnd_test.py::test_enhanced_aci_modrnd | 0.03 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. enhanced_aci_modrnd_test.py 30 INFO Add a container: ou=test_ou_1,dc=example,dc=com enhanced_aci_modrnd_test.py 37 INFO Add a container: ou=test_ou_2,dc=example,dc=com enhanced_aci_modrnd_test.py 44 INFO Add a user: cn=test_user,ou=test_ou_1,dc=example,dc=com enhanced_aci_modrnd_test.py 59 INFO 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 enhanced_aci_modrnd_test.py 63 INFO 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 ------------------------------- enhanced_aci_modrnd_test.py 93 INFO Bind as cn=test_user,ou=test_ou_1,dc=example,dc=com enhanced_aci_modrnd_test.py 98 INFO User MODRDN operation from ou=test_ou_1,dc=example,dc=com to ou=test_ou_2,dc=example,dc=com enhanced_aci_modrnd_test.py 103 INFO Check there is no user in ou=test_ou_1,dc=example,dc=com enhanced_aci_modrnd_test.py 109 INFO Check there is our user in ou=test_ou_2,dc=example,dc=com | |||
Passed | suites/acl/repeated_ldap_add_test.py::test_repeated_ldap_add | 37.41 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO 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 ------------------------------- repeated_ldap_add_test.py 182 INFO Testing Bug 1347760 - Information disclosure via repeated use of LDAP ADD operation, etc. repeated_ldap_add_test.py 184 INFO Disabling accesslog logbuffering repeated_ldap_add_test.py 187 INFO Bind as {cn=Directory Manager,password} repeated_ldap_add_test.py 190 INFO Adding ou=BOU a bind user belongs to. repeated_ldap_add_test.py 195 INFO Adding a bind user. repeated_ldap_add_test.py 202 INFO Adding a test user. repeated_ldap_add_test.py 209 INFO Deleting aci in dc=example,dc=com. repeated_ldap_add_test.py 212 INFO While binding as DM, acquire an access log path and instance dir repeated_ldap_add_test.py 218 INFO Bind case 1. the bind user has no rights to read the entry itself, bind should be successful. repeated_ldap_add_test.py 219 INFO Bind as {uid=buser123,ou=BOU,dc=example,dc=com,buser123} who has no access rights. repeated_ldap_add_test.py 227 INFO Access log path: /var/log/dirsrv/slapd-standalone1/access repeated_ldap_add_test.py 230 INFO Bind case 2-1. the bind user does not exist, bind should fail with error INVALID_CREDENTIALS repeated_ldap_add_test.py 231 INFO Bind as {uid=bogus,dc=example,dc=com,bogus} who does not exist. repeated_ldap_add_test.py 235 INFO Exception (expected): INVALID_CREDENTIALS repeated_ldap_add_test.py 236 INFO Desc Invalid credentials repeated_ldap_add_test.py 244 INFO Cause found - [23/Sep/2018:19:22:40.603827799 -0400] conn=1 op=10 RESULT err=49 tag=97 nentries=0 etime=0.0001028681 - No such entry repeated_ldap_add_test.py 248 INFO Bind case 2-2. the bind user's suffix does not exist, bind should fail with error INVALID_CREDENTIALS repeated_ldap_add_test.py 249 INFO Bind as {uid=bogus,ou=people,dc=bogus,bogus} who does not exist. repeated_ldap_add_test.py 258 INFO Cause found - [23/Sep/2018:19:22:41.607362819 -0400] conn=1 op=11 RESULT err=49 tag=97 nentries=0 etime=0.0001064331 - No suffix for bind dn found repeated_ldap_add_test.py 262 INFO Bind case 2-3. the bind user's password is wrong, bind should fail with error INVALID_CREDENTIALS repeated_ldap_add_test.py 263 INFO Bind as {uid=buser123,ou=BOU,dc=example,dc=com,bogus} who does not exist. repeated_ldap_add_test.py 267 INFO Exception (expected): INVALID_CREDENTIALS repeated_ldap_add_test.py 268 INFO Desc Invalid credentials repeated_ldap_add_test.py 276 INFO Cause found - [23/Sep/2018:19:22:42.634971251 -0400] conn=1 op=12 RESULT err=49 tag=97 nentries=0 etime=0.0025694955 - Invalid credentials repeated_ldap_add_test.py 279 INFO Adding aci for uid=buser123,ou=BOU,dc=example,dc=com to ou=BOU,dc=example,dc=com. repeated_ldap_add_test.py 281 INFO aci: (targetattr="*")(version 3.0; acl "buser123"; allow(all) userdn = "ldap:///uid=buser123,ou=BOU,dc=example,dc=com";) repeated_ldap_add_test.py 282 INFO Bind as {cn=Directory Manager,password} repeated_ldap_add_test.py 287 INFO Bind case 3. the bind user has the right to read the entry itself, bind should be successful. repeated_ldap_add_test.py 288 INFO Bind as {uid=buser123,ou=BOU,dc=example,dc=com,buser123} which should be ok. repeated_ldap_add_test.py 291 INFO The following operations are against the subtree the bind user uid=buser123,ou=BOU,dc=example,dc=com has no rights. repeated_ldap_add_test.py 296 INFO Search case 1. the bind user has no rights to read the search entry, it should return no search results with <class 'ldap.SUCCESS'> repeated_ldap_add_test.py 106 INFO Searching existing entry uid=tuser0,ou=people,dc=example,dc=com, which should be ok. repeated_ldap_add_test.py 139 INFO Search should return none repeated_ldap_add_test.py 146 INFO PASSED repeated_ldap_add_test.py 302 INFO Search case 2-1. the search entry does not exist, the search should return no search results with SUCCESS repeated_ldap_add_test.py 106 INFO Searching non-existing entry uid=bogus,dc=example,dc=com, which should be ok. repeated_ldap_add_test.py 139 INFO Search should return none repeated_ldap_add_test.py 146 INFO PASSED repeated_ldap_add_test.py 308 INFO Search case 2-2. the search entry does not exist, the search should return no search results with SUCCESS repeated_ldap_add_test.py 106 INFO Searching non-existing entry uid=bogus,ou=people,dc=example,dc=com, which should be ok. repeated_ldap_add_test.py 139 INFO Search should return none repeated_ldap_add_test.py 146 INFO PASSED repeated_ldap_add_test.py 315 INFO Add case 1. the bind user has no rights AND the adding entry exists, it should fail with INSUFFICIENT_ACCESS repeated_ldap_add_test.py 106 INFO Adding existing entry uid=tuser0,ou=people,dc=example,dc=com, which should fail with INSUFFICIENT_ACCESS. repeated_ldap_add_test.py 129 INFO Exception (expected): INSUFFICIENT_ACCESS repeated_ldap_add_test.py 130 INFO Desc Insufficient access repeated_ldap_add_test.py 146 INFO PASSED repeated_ldap_add_test.py 321 INFO Add case 2-1. the bind user has no rights AND the adding entry does not exist, it should fail with INSUFFICIENT_ACCESS repeated_ldap_add_test.py 106 INFO Adding non-existing entry uid=bogus,dc=example,dc=com, which should fail with INSUFFICIENT_ACCESS. repeated_ldap_add_test.py 129 INFO Exception (expected): INSUFFICIENT_ACCESS repeated_ldap_add_test.py 130 INFO Desc Insufficient access repeated_ldap_add_test.py 146 INFO PASSED repeated_ldap_add_test.py 327 INFO Add case 2-2. the bind user has no rights AND the adding entry does not exist, it should fail with INSUFFICIENT_ACCESS repeated_ldap_add_test.py 106 INFO Adding non-existing entry uid=bogus,ou=people,dc=example,dc=com, which should fail with INSUFFICIENT_ACCESS. repeated_ldap_add_test.py 129 INFO Exception (expected): INSUFFICIENT_ACCESS repeated_ldap_add_test.py 130 INFO Desc Insufficient access repeated_ldap_add_test.py 146 INFO PASSED repeated_ldap_add_test.py 334 INFO Modify case 1. the bind user has no rights AND the modifying entry exists, it should fail with INSUFFICIENT_ACCESS repeated_ldap_add_test.py 106 INFO Modifying existing entry uid=tuser0,ou=people,dc=example,dc=com, which should fail with INSUFFICIENT_ACCESS. repeated_ldap_add_test.py 129 INFO Exception (expected): INSUFFICIENT_ACCESS repeated_ldap_add_test.py 130 INFO Desc Insufficient access repeated_ldap_add_test.py 146 INFO PASSED repeated_ldap_add_test.py 340 INFO Modify case 2-1. the bind user has no rights AND the modifying entry does not exist, it should fail with INSUFFICIENT_ACCESS repeated_ldap_add_test.py 106 INFO Modifying non-existing entry uid=bogus,dc=example,dc=com, which should fail with INSUFFICIENT_ACCESS. repeated_ldap_add_test.py 129 INFO Exception (expected): INSUFFICIENT_ACCESS repeated_ldap_add_test.py 130 INFO Desc Insufficient access repeated_ldap_add_test.py 146 INFO PASSED repeated_ldap_add_test.py 346 INFO Modify case 2-2. the bind user has no rights AND the modifying entry does not exist, it should fail with INSUFFICIENT_ACCESS repeated_ldap_add_test.py 106 INFO Modifying non-existing entry uid=bogus,ou=people,dc=example,dc=com, which should fail with INSUFFICIENT_ACCESS. repeated_ldap_add_test.py 129 INFO Exception (expected): INSUFFICIENT_ACCESS repeated_ldap_add_test.py 130 INFO Desc Insufficient access repeated_ldap_add_test.py 146 INFO PASSED repeated_ldap_add_test.py 353 INFO Modrdn case 1. the bind user has no rights AND the renaming entry exists, it should fail with INSUFFICIENT_ACCESS repeated_ldap_add_test.py 106 INFO Renaming existing entry uid=tuser0,ou=people,dc=example,dc=com, which should fail with INSUFFICIENT_ACCESS. repeated_ldap_add_test.py 129 INFO Exception (expected): INSUFFICIENT_ACCESS repeated_ldap_add_test.py 130 INFO Desc Insufficient access repeated_ldap_add_test.py 146 INFO PASSED repeated_ldap_add_test.py 359 INFO Modrdn case 2-1. the bind user has no rights AND the renaming entry does not exist, it should fail with INSUFFICIENT_ACCESS repeated_ldap_add_test.py 106 INFO Renaming non-existing entry uid=bogus,dc=example,dc=com, which should fail with INSUFFICIENT_ACCESS. repeated_ldap_add_test.py 129 INFO Exception (expected): INSUFFICIENT_ACCESS repeated_ldap_add_test.py 130 INFO Desc Insufficient access repeated_ldap_add_test.py 146 INFO PASSED repeated_ldap_add_test.py 365 INFO Modrdn case 2-2. the bind user has no rights AND the renaming entry does not exist, it should fail with INSUFFICIENT_ACCESS repeated_ldap_add_test.py 106 INFO Renaming non-existing entry uid=bogus,ou=people,dc=example,dc=com, which should fail with INSUFFICIENT_ACCESS. repeated_ldap_add_test.py 129 INFO Exception (expected): INSUFFICIENT_ACCESS repeated_ldap_add_test.py 130 INFO Desc Insufficient access repeated_ldap_add_test.py 146 INFO PASSED repeated_ldap_add_test.py 371 INFO Modrdn case 3. the bind user has no rights AND the node moving an entry to exists, it should fail with INSUFFICIENT_ACCESS repeated_ldap_add_test.py 106 INFO Moving to existing superior ou=groups,dc=example,dc=com, which should fail with INSUFFICIENT_ACCESS. repeated_ldap_add_test.py 129 INFO Exception (expected): INSUFFICIENT_ACCESS repeated_ldap_add_test.py 130 INFO Desc Insufficient access repeated_ldap_add_test.py 146 INFO PASSED repeated_ldap_add_test.py 377 INFO 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 repeated_ldap_add_test.py 106 INFO Moving to non-existing superior ou=OU,dc=example,dc=com, which should fail with INSUFFICIENT_ACCESS. repeated_ldap_add_test.py 129 INFO Exception (expected): INSUFFICIENT_ACCESS repeated_ldap_add_test.py 130 INFO Desc Insufficient access repeated_ldap_add_test.py 146 INFO PASSED repeated_ldap_add_test.py 383 INFO 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 repeated_ldap_add_test.py 106 INFO Moving to non-existing superior ou=OU,dc=example,dc=com, which should fail with INSUFFICIENT_ACCESS. repeated_ldap_add_test.py 129 INFO Exception (expected): INSUFFICIENT_ACCESS repeated_ldap_add_test.py 130 INFO Desc Insufficient access repeated_ldap_add_test.py 146 INFO PASSED repeated_ldap_add_test.py 390 INFO Delete case 1. the bind user has no rights AND the deleting entry exists, it should fail with INSUFFICIENT_ACCESS repeated_ldap_add_test.py 106 INFO Deleting existing entry uid=tuser0,ou=people,dc=example,dc=com, which should fail with INSUFFICIENT_ACCESS. repeated_ldap_add_test.py 129 INFO Exception (expected): INSUFFICIENT_ACCESS repeated_ldap_add_test.py 130 INFO Desc Insufficient access repeated_ldap_add_test.py 146 INFO PASSED repeated_ldap_add_test.py 396 INFO Delete case 2-1. the bind user has no rights AND the deleting entry does not exist, it should fail with INSUFFICIENT_ACCESS repeated_ldap_add_test.py 106 INFO Deleting non-existing entry uid=bogus,dc=example,dc=com, which should fail with INSUFFICIENT_ACCESS. repeated_ldap_add_test.py 129 INFO Exception (expected): INSUFFICIENT_ACCESS repeated_ldap_add_test.py 130 INFO Desc Insufficient access repeated_ldap_add_test.py 146 INFO PASSED repeated_ldap_add_test.py 402 INFO Delete case 2-2. the bind user has no rights AND the deleting entry does not exist, it should fail with INSUFFICIENT_ACCESS repeated_ldap_add_test.py 106 INFO Deleting non-existing entry uid=bogus,ou=people,dc=example,dc=com, which should fail with INSUFFICIENT_ACCESS. repeated_ldap_add_test.py 129 INFO Exception (expected): INSUFFICIENT_ACCESS repeated_ldap_add_test.py 130 INFO Desc Insufficient access repeated_ldap_add_test.py 146 INFO PASSED repeated_ldap_add_test.py 405 INFO EXTRA: Check no regressions repeated_ldap_add_test.py 406 INFO Adding aci for uid=buser123,ou=BOU,dc=example,dc=com to dc=example,dc=com. repeated_ldap_add_test.py 408 INFO Bind as {cn=Directory Manager,password} repeated_ldap_add_test.py 413 INFO Bind as {uid=buser123,ou=BOU,dc=example,dc=com,buser123}. repeated_ldap_add_test.py 423 INFO Search case. the search entry does not exist, the search should fail with NO_SUCH_OBJECT repeated_ldap_add_test.py 106 INFO Searching non-existing entry uid=bogus,ou=people,dc=example,dc=com, which should fail with NO_SUCH_OBJECT. repeated_ldap_add_test.py 129 INFO Exception (expected): NO_SUCH_OBJECT repeated_ldap_add_test.py 130 INFO Desc No such object repeated_ldap_add_test.py 146 INFO PASSED repeated_ldap_add_test.py 429 INFO Add case. the adding entry already exists, it should fail with ALREADY_EXISTS repeated_ldap_add_test.py 106 INFO Adding existing entry uid=tuser0,ou=people,dc=example,dc=com, which should fail with ALREADY_EXISTS. repeated_ldap_add_test.py 129 INFO Exception (expected): ALREADY_EXISTS repeated_ldap_add_test.py 130 INFO Desc Already exists repeated_ldap_add_test.py 146 INFO PASSED repeated_ldap_add_test.py 434 INFO Modify case. the modifying entry does not exist, it should fail with NO_SUCH_OBJECT repeated_ldap_add_test.py 106 INFO Modifying non-existing entry uid=bogus,dc=example,dc=com, which should fail with NO_SUCH_OBJECT. repeated_ldap_add_test.py 129 INFO Exception (expected): NO_SUCH_OBJECT repeated_ldap_add_test.py 130 INFO Desc No such object repeated_ldap_add_test.py 146 INFO PASSED repeated_ldap_add_test.py 439 INFO Modrdn case 1. the renaming entry does not exist, it should fail with NO_SUCH_OBJECT repeated_ldap_add_test.py 106 INFO Renaming non-existing entry uid=bogus,dc=example,dc=com, which should fail with NO_SUCH_OBJECT. repeated_ldap_add_test.py 129 INFO Exception (expected): NO_SUCH_OBJECT repeated_ldap_add_test.py 130 INFO Desc No such object repeated_ldap_add_test.py 146 INFO PASSED repeated_ldap_add_test.py 444 INFO Modrdn case 2. the node moving an entry to does not, it should fail with NO_SUCH_OBJECT repeated_ldap_add_test.py 106 INFO Moving to non-existing superior ou=OU,dc=example,dc=com, which should fail with NO_SUCH_OBJECT. repeated_ldap_add_test.py 129 INFO Exception (expected): NO_SUCH_OBJECT repeated_ldap_add_test.py 130 INFO Desc No such object repeated_ldap_add_test.py 146 INFO PASSED repeated_ldap_add_test.py 449 INFO Delete case. the deleting entry does not exist, it should fail with NO_SUCH_OBJECT repeated_ldap_add_test.py 106 INFO Deleting non-existing entry uid=bogus,dc=example,dc=com, which should fail with NO_SUCH_OBJECT. repeated_ldap_add_test.py 129 INFO Exception (expected): NO_SUCH_OBJECT repeated_ldap_add_test.py 130 INFO Desc No such object repeated_ldap_add_test.py 146 INFO PASSED repeated_ldap_add_test.py 452 INFO Inactivate uid=buser123,ou=BOU,dc=example,dc=com repeated_ldap_add_test.py 459 INFO ['/usr/sbin/ns-inactivate.pl', '-Z', 'standalone1', '-D', 'cn=Directory Manager', '-w', 'password', '-I', 'uid=buser123,ou=BOU,dc=example,dc=com'] repeated_ldap_add_test.py 463 INFO Bind as {uid=buser123,ou=BOU,dc=example,dc=com,buser123} which should fail with UNWILLING_TO_PERFORM. repeated_ldap_add_test.py 467 INFO Exception (expected): UNWILLING_TO_PERFORM repeated_ldap_add_test.py 468 INFO Desc Server is unwilling to perform repeated_ldap_add_test.py 471 INFO Bind as {uid=buser123,ou=BOU,dc=example,dc=com,bogus} which should fail with UNWILLING_TO_PERFORM. repeated_ldap_add_test.py 475 INFO Exception (expected): UNWILLING_TO_PERFORM repeated_ldap_add_test.py 476 INFO Desc Server is unwilling to perform repeated_ldap_add_test.py 479 INFO SUCCESS | |||
Passed | suites/acl/selfdn_permissions_test.py::test_selfdn_permission_add | 0.20 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. selfdn_permissions_test.py 57 INFO Add OCticket47653 that allows 'member' attribute selfdn_permissions_test.py 62 INFO Add cn=bind_entry, dc=example,dc=com------------------------------ Captured log call ------------------------------- selfdn_permissions_test.py 105 INFO ######################### ADD ###################### selfdn_permissions_test.py 108 INFO Bind as cn=bind_entry, dc=example,dc=com selfdn_permissions_test.py 138 INFO 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 selfdn_permissions_test.py 142 INFO Exception (expected): INSUFFICIENT_ACCESS selfdn_permissions_test.py 146 INFO Bind as cn=Directory Manager and add the ADD SELFDN aci selfdn_permissions_test.py 158 INFO Bind as cn=bind_entry, dc=example,dc=com selfdn_permissions_test.py 163 INFO Try to add Add cn=test_entry, dc=example,dc=com (member is missing) selfdn_permissions_test.py 171 INFO Exception (expected): INSUFFICIENT_ACCESS selfdn_permissions_test.py 177 INFO Try to add Add cn=test_entry, dc=example,dc=com (with several member values) selfdn_permissions_test.py 180 INFO Exception (expected): INSUFFICIENT_ACCESS selfdn_permissions_test.py 183 INFO 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.19 | |
------------------------------ Captured log call ------------------------------- selfdn_permissions_test.py 204 INFO ######################### SEARCH ###################### selfdn_permissions_test.py 206 INFO Bind as cn=bind_entry, dc=example,dc=com selfdn_permissions_test.py 210 INFO Try to search cn=test_entry, dc=example,dc=com (aci is missing) selfdn_permissions_test.py 215 INFO Bind as cn=Directory Manager and add the READ/SEARCH SELFDN aci selfdn_permissions_test.py 228 INFO Bind as cn=bind_entry, dc=example,dc=com selfdn_permissions_test.py 232 INFO 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.21 | |
------------------------------ Captured log call ------------------------------- selfdn_permissions_test.py 255 INFO Bind as cn=bind_entry, dc=example,dc=com selfdn_permissions_test.py 258 INFO ######################### MODIFY ###################### selfdn_permissions_test.py 262 INFO Try to modify cn=test_entry, dc=example,dc=com (aci is missing) selfdn_permissions_test.py 266 INFO Exception (expected): INSUFFICIENT_ACCESS selfdn_permissions_test.py 270 INFO Bind as cn=Directory Manager and add the WRITE SELFDN aci selfdn_permissions_test.py 283 INFO Bind as cn=bind_entry, dc=example,dc=com selfdn_permissions_test.py 287 INFO 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.18 | |
------------------------------ Captured log call ------------------------------- selfdn_permissions_test.py 312 INFO ######################### DELETE ###################### selfdn_permissions_test.py 315 INFO Bind as cn=bind_entry, dc=example,dc=com selfdn_permissions_test.py 320 INFO Try to delete cn=test_entry, dc=example,dc=com (aci is missing) selfdn_permissions_test.py 323 INFO Exception (expected): INSUFFICIENT_ACCESS selfdn_permissions_test.py 327 INFO Bind as cn=Directory Manager and add the READ/SEARCH SELFDN aci selfdn_permissions_test.py 339 INFO Bind as cn=bind_entry, dc=example,dc=com selfdn_permissions_test.py 343 INFO Try to delete cn=test_entry, dc=example,dc=com should be successful | |||
Passed | suites/attr_encryption/attr_encryption_test.py::test_basic | 9.48 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. attr_encryption_test.py 32 INFO Enable TLS for attribute encryption attr_encryption_test.py 35 INFO Enables attribute encryption attr_encryption_test.py 40 INFO Enables attribute encryption for employeeNumber and telephoneNumber attr_encryption_test.py 44 INFO Add a test user with encrypted attributes------------------------------ Captured log call ------------------------------- attr_encryption_test.py 78 INFO Restart the server attr_encryption_test.py 84 INFO Extracting values of cn from the list of objects in encrypt_attrs attr_encryption_test.py 85 INFO And appending the cn values in a list attr_encryption_test.py 90 INFO Check employeenumber encryption is enabled attr_encryption_test.py 93 INFO Check telephoneNumber encryption is enabled attr_encryption_test.py 96 INFO Check that encrypted attribute is present for user i.e. telephonenumber | |||
Passed | suites/attr_encryption/attr_encryption_test.py::test_export_import_ciphertext | 10.38 | |
----------------------------- Captured stdout call ----------------------------- OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ----------------------------- Captured stderr call ----------------------------- ldiffile: /var/lib/dirsrv/slapd-standalone1/ldif/export_ciphertext.ldif [23/Sep/2018:19:23:55.842549133 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:23:55.846945346 -0400] - WARN - attrcrypt_init - Encryption is configured in backend userRoot, but because SSL is not enabled, database encryption is not available and the configuration will be overridden. [23/Sep/2018:19:23:55.848304460 -0400] - INFO - ldbm_back_ldbm2ldif - export userRoot: Processed 10 entries (100%). [23/Sep/2018:19:23:55.848743289 -0400] - INFO - dblayer_pre_close - All database threads now stopped [23/Sep/2018:19:24:00.482471269 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:24:00.487284957 -0400] - WARN - attrcrypt_init - Encryption is configured in backend userRoot, but because SSL is not enabled, database encryption is not available and the configuration will be overridden. [23/Sep/2018:19:24:00.487997512 -0400] - INFO - dblayer_instance_start - Import is running with nsslapd-db-private-import-mem on; No other process is allowed to access the database [23/Sep/2018:19:24:00.488529441 -0400] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7833915392, process usage 20975616 [23/Sep/2018:19:24:00.488996201 -0400] - INFO - check_and_set_import_cache - Import allocates 3060123KB import cache. [23/Sep/2018:19:24:00.667360315 -0400] - INFO - import_main_offline - import userRoot: Beginning import job... [23/Sep/2018:19:24:00.667954682 -0400] - INFO - import_main_offline - import userRoot: Index buffering enabled with bucket size 100 [23/Sep/2018:19:24:00.869039052 -0400] - INFO - import_producer - import userRoot: Processing file "/var/lib/dirsrv/slapd-standalone1/ldif/export_ciphertext.ldif" [23/Sep/2018:19:24:00.870463242 -0400] - INFO - import_producer - import userRoot: Finished scanning file "/var/lib/dirsrv/slapd-standalone1/ldif/export_ciphertext.ldif" (10 entries) [23/Sep/2018:19:24:01.370533513 -0400] - INFO - import_monitor_threads - import userRoot: Workers finished; cleaning up... [23/Sep/2018:19:24:01.571554190 -0400] - INFO - import_monitor_threads - import userRoot: Workers cleaned up. [23/Sep/2018:19:24:01.572314846 -0400] - INFO - import_main_offline - import userRoot: Cleaning up producer thread... [23/Sep/2018:19:24:01.572839004 -0400] - INFO - import_main_offline - import userRoot: Indexing complete. Post-processing... [23/Sep/2018:19:24:01.573273120 -0400] - INFO - import_main_offline - import userRoot: Generating numsubordinates (this may take several minutes to complete)... [23/Sep/2018:19:24:01.575410262 -0400] - INFO - import_main_offline - import userRoot: Generating numSubordinates complete. [23/Sep/2018:19:24:01.575965958 -0400] - INFO - ldbm_get_nonleaf_ids - import userRoot: Gathering ancestorid non-leaf IDs... [23/Sep/2018:19:24:01.576405988 -0400] - INFO - ldbm_get_nonleaf_ids - import userRoot: Finished gathering ancestorid non-leaf IDs. [23/Sep/2018:19:24:01.577452760 -0400] - INFO - ldbm_ancestorid_new_idl_create_index - import userRoot: Creating ancestorid index (new idl)... [23/Sep/2018:19:24:01.577971425 -0400] - INFO - ldbm_ancestorid_new_idl_create_index - import userRoot: Created ancestorid index (new idl). [23/Sep/2018:19:24:01.578434810 -0400] - INFO - import_main_offline - import userRoot: Flushing caches... [23/Sep/2018:19:24:01.578863614 -0400] - INFO - import_main_offline - import userRoot: Closing files... [23/Sep/2018:19:24:01.605774017 -0400] - INFO - dblayer_pre_close - All database threads now stopped [23/Sep/2018:19:24:01.606548538 -0400] - INFO - import_main_offline - import userRoot: Import complete. Processed 10 entries in 1 seconds. (10.00 entries/sec) ------------------------------ Captured log call ------------------------------- attr_encryption_test.py 123 INFO Export data as ciphertext attr_encryption_test.py 134 INFO Check that the attribute is present in the exported file attr_encryption_test.py 135 INFO Check that the encrypted value of attribute is not present in the exported file attr_encryption_test.py 141 INFO Delete the test user entry with encrypted data attr_encryption_test.py 144 INFO Import data as ciphertext, which was exported previously attr_encryption_test.py 155 INFO Check that the data with encrypted attribute is imported properly | |||
Passed | suites/attr_encryption/attr_encryption_test.py::test_export_import_plaintext | 10.52 | |
----------------------------- Captured stdout call ----------------------------- OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ----------------------------- Captured stderr call ----------------------------- [23/Sep/2018:19:24:06.278170551 -0400] - INFO - slapd_extract_cert - CA CERT NAME: Self-Signed-CA [23/Sep/2018:19:24:06.279405535 -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. [23/Sep/2018:19:24:06.281659056 -0400] - INFO - slapd_extract_cert - SERVER CERT NAME: Server-Cert ldiffile: /var/lib/dirsrv/slapd-standalone1/ldif/export_plaintext.ldif [23/Sep/2018:19:24:06.288459883 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:24:06.319710817 -0400] - DEBUG - _back_crypt_crypto_op - Decrypt (16) [23/Sep/2018:19:24:06.320229940 -0400] - DEBUG - _back_crypt_crypto_op - Decrypt (16) [23/Sep/2018:19:24:06.320695638 -0400] - INFO - ldbm_back_ldbm2ldif - export userRoot: Processed 10 entries (100%). [23/Sep/2018:19:24:06.321110108 -0400] - INFO - dblayer_pre_close - All database threads now stopped [23/Sep/2018:19:24:10.973809560 -0400] - INFO - slapd_extract_cert - CA CERT NAME: Self-Signed-CA [23/Sep/2018:19:24:10.975266036 -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. [23/Sep/2018:19:24:10.977258408 -0400] - INFO - slapd_extract_cert - SERVER CERT NAME: Server-Cert [23/Sep/2018:19:24:10.984071411 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:24:11.015329727 -0400] - INFO - dblayer_instance_start - Import is running with nsslapd-db-private-import-mem on; No other process is allowed to access the database [23/Sep/2018:19:24:11.016008898 -0400] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7833911296, process usage 21045248 [23/Sep/2018:19:24:11.016573867 -0400] - INFO - check_and_set_import_cache - Import allocates 3060121KB import cache. [23/Sep/2018:19:24:11.228217729 -0400] - INFO - import_main_offline - import userRoot: Beginning import job... [23/Sep/2018:19:24:11.228955536 -0400] - INFO - import_main_offline - import userRoot: Index buffering enabled with bucket size 100 [23/Sep/2018:19:24:11.429869846 -0400] - INFO - import_producer - import userRoot: Processing file "/var/lib/dirsrv/slapd-standalone1/ldif/export_plaintext.ldif" [23/Sep/2018:19:24:11.431184890 -0400] - INFO - import_producer - import userRoot: Finished scanning file "/var/lib/dirsrv/slapd-standalone1/ldif/export_plaintext.ldif" (10 entries) [23/Sep/2018:19:24:11.632696202 -0400] - DEBUG - _back_crypt_crypto_op - Encrypt '1000' (4) [23/Sep/2018:19:24:11.633373915 -0400] - DEBUG - _back_crypt_crypto_op - Encrypt '1234567890' (10) [23/Sep/2018:19:24:11.845086510 -0400] - DEBUG - _back_crypt_crypto_op - Encrypt '1234567890' (10) [23/Sep/2018:19:24:11.845742187 -0400] - DEBUG - _back_crypt_crypto_op - Encrypt '^12' (3) [23/Sep/2018:19:24:11.846465089 -0400] - DEBUG - _back_crypt_crypto_op - Encrypt '123' (3) [23/Sep/2018:19:24:11.847096985 -0400] - DEBUG - _back_crypt_crypto_op - Encrypt '234' (3) [23/Sep/2018:19:24:11.847630040 -0400] - DEBUG - _back_crypt_crypto_op - Encrypt '345' (3) [23/Sep/2018:19:24:11.848063958 -0400] - DEBUG - _back_crypt_crypto_op - Encrypt '456' (3) [23/Sep/2018:19:24:11.848539353 -0400] - DEBUG - _back_crypt_crypto_op - Encrypt '567' (3) [23/Sep/2018:19:24:11.848951014 -0400] - DEBUG - _back_crypt_crypto_op - Encrypt '678' (3) [23/Sep/2018:19:24:11.849339314 -0400] - DEBUG - _back_crypt_crypto_op - Encrypt '789' (3) [23/Sep/2018:19:24:11.849811268 -0400] - DEBUG - _back_crypt_crypto_op - Encrypt '890' (3) [23/Sep/2018:19:24:11.850325433 -0400] - DEBUG - _back_crypt_crypto_op - Encrypt '90$' (3) [23/Sep/2018:19:24:11.931324027 -0400] - INFO - import_monitor_threads - import userRoot: Workers finished; cleaning up... [23/Sep/2018:19:24:12.132329970 -0400] - INFO - import_monitor_threads - import userRoot: Workers cleaned up. [23/Sep/2018:19:24:12.133218005 -0400] - INFO - import_main_offline - import userRoot: Cleaning up producer thread... [23/Sep/2018:19:24:12.133751328 -0400] - INFO - import_main_offline - import userRoot: Indexing complete. Post-processing... [23/Sep/2018:19:24:12.134291288 -0400] - INFO - import_main_offline - import userRoot: Generating numsubordinates (this may take several minutes to complete)... [23/Sep/2018:19:24:12.135917184 -0400] - INFO - import_main_offline - import userRoot: Generating numSubordinates complete. [23/Sep/2018:19:24:12.136569366 -0400] - INFO - ldbm_get_nonleaf_ids - import userRoot: Gathering ancestorid non-leaf IDs... [23/Sep/2018:19:24:12.137072521 -0400] - INFO - ldbm_get_nonleaf_ids - import userRoot: Finished gathering ancestorid non-leaf IDs. [23/Sep/2018:19:24:12.138701118 -0400] - INFO - ldbm_ancestorid_new_idl_create_index - import userRoot: Creating ancestorid index (new idl)... [23/Sep/2018:19:24:12.139221024 -0400] - INFO - ldbm_ancestorid_new_idl_create_index - import userRoot: Created ancestorid index (new idl). [23/Sep/2018:19:24:12.139684462 -0400] - INFO - import_main_offline - import userRoot: Flushing caches... [23/Sep/2018:19:24:12.140102785 -0400] - INFO - import_main_offline - import userRoot: Closing files... [23/Sep/2018:19:24:12.164760446 -0400] - INFO - dblayer_pre_close - All database threads now stopped [23/Sep/2018:19:24:12.165456722 -0400] - INFO - import_main_offline - import userRoot: Import complete. Processed 10 entries in 1 seconds. (10.00 entries/sec) ------------------------------ Captured log call ------------------------------- attr_encryption_test.py 185 INFO Export data as plain text attr_encryption_test.py 196 INFO Check that the attribute is present in the exported file attr_encryption_test.py 197 INFO Check that the plain text value of the encrypted attribute is present in the exported file attr_encryption_test.py 201 INFO Delete the test user entry with encrypted data attr_encryption_test.py 204 INFO Import data as plain text, which was exported previously attr_encryption_test.py 215 INFO Check that the attribute is imported properly | |||
Passed | suites/attr_encryption/attr_encryption_test.py::test_attr_encryption_unindexed | 4.61 | |
----------------------------- Captured stdout call ----------------------------- OK group dirsrv exists OK user dirsrv exists ----------------------------- Captured stderr call ----------------------------- ldiffile: /var/lib/dirsrv/slapd-standalone1/ldif/emp_num_ciphertext.ldif [23/Sep/2018:19:24:16.844600973 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:24:16.848967638 -0400] - WARN - attrcrypt_init - Encryption is configured in backend userRoot, but because SSL is not enabled, database encryption is not available and the configuration will be overridden. [23/Sep/2018:19:24:16.850580605 -0400] - INFO - ldbm_back_ldbm2ldif - export userRoot: Processed 10 entries (100%). [23/Sep/2018:19:24:16.851188451 -0400] - INFO - dblayer_pre_close - All database threads now stopped ------------------------------ Captured log call ------------------------------- attr_encryption_test.py 237 INFO Export data as cipher text attr_encryption_test.py 248 INFO Check that the attribute is present in the exported file attr_encryption_test.py 249 INFO 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 | 6.57 | |
----------------------------- Captured stdout call ----------------------------- OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ----------------------------- Captured stderr call ----------------------------- ldiffile: /var/lib/dirsrv/slapd-standalone1/ldif/export_db1.ldif [23/Sep/2018:19:24:21.509994588 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:24:21.514235715 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:24:21.517692360 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:24:21.521775477 -0400] - WARN - attrcrypt_init - Encryption is configured in backend test_db1, but because SSL is not enabled, database encryption is not available and the configuration will be overridden. [23/Sep/2018:19:24:21.522942684 -0400] - INFO - ldbm_back_ldbm2ldif - export test_db1: Processed 2 entries (100%). [23/Sep/2018:19:24:21.523522446 -0400] - INFO - dblayer_pre_close - All database threads now stopped ldiffile: /var/lib/dirsrv/slapd-standalone1/ldif/export_db2.ldif [23/Sep/2018:19:24:22.656737409 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:24:22.660829475 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:24:22.664495010 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:24:22.668710919 -0400] - WARN - attrcrypt_init - Encryption is configured in backend test_db2, but because SSL is not enabled, database encryption is not available and the configuration will be overridden. [23/Sep/2018:19:24:22.669972087 -0400] - INFO - ldbm_back_ldbm2ldif - export test_db2: Processed 2 entries (100%). [23/Sep/2018:19:24:22.670614235 -0400] - INFO - dblayer_pre_close - All database threads now stopped ------------------------------ Captured log call ------------------------------- attr_encryption_test.py 281 INFO Add two test backends attr_encryption_test.py 300 INFO Enables attribute encryption for telephoneNumber in test_backend1 attr_encryption_test.py 305 INFO Enables attribute encryption for employeeNumber in test_backend2 attr_encryption_test.py 310 INFO Add a test user with encrypted attributes in both backends attr_encryption_test.py 319 INFO Export data as ciphertext from both backends attr_encryption_test.py 336 INFO Check that the attribute is present in the exported file in db1 attr_encryption_test.py 337 INFO Check that the encrypted value of attribute is not present in the exported file in db1 attr_encryption_test.py 343 INFO Check that the attribute is present in the exported file in db2 attr_encryption_test.py 344 INFO Check that the encrypted value of attribute is not present in the exported file in db2 attr_encryption_test.py 350 INFO Delete test backends | |||
Passed | suites/attr_encryption/attr_encryption_test.py::test_attr_encryption_backends | 5.26 | |
----------------------------- Captured stdout call ----------------------------- OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ----------------------------- Captured stderr call ----------------------------- ldiffile: /var/lib/dirsrv/slapd-standalone1/ldif/export_db1.ldif [23/Sep/2018:19:24:27.350165603 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:24:27.354450475 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:24:27.357900013 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:24:27.361932054 -0400] - WARN - attrcrypt_init - Encryption is configured in backend test_db1, but because SSL is not enabled, database encryption is not available and the configuration will be overridden. [23/Sep/2018:19:24:27.363126743 -0400] - INFO - ldbm_back_ldbm2ldif - export test_db1: Processed 2 entries (100%). [23/Sep/2018:19:24:27.363729440 -0400] - INFO - dblayer_pre_close - All database threads now stopped ldiffile: /var/lib/dirsrv/slapd-standalone1/ldif/export_db2.ldif [23/Sep/2018:19:24:28.496564938 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:24:28.500747452 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:24:28.504254741 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:24:28.508996395 -0400] - INFO - ldbm_back_ldbm2ldif - export test_db2: Processed 2 entries (100%). [23/Sep/2018:19:24:28.509864133 -0400] - INFO - dblayer_pre_close - All database threads now stopped ------------------------------ Captured log call ------------------------------- attr_encryption_test.py 378 INFO Add two test backends attr_encryption_test.py 397 INFO Enables attribute encryption for telephoneNumber in test_backend1 attr_encryption_test.py 402 INFO Add a test user with telephoneNumber in both backends attr_encryption_test.py 411 INFO Export data as ciphertext from both backends attr_encryption_test.py 428 INFO Check that the attribute is present in the exported file in db1 attr_encryption_test.py 429 INFO Check that the encrypted value of attribute is not present in the exported file in db1 attr_encryption_test.py 435 INFO Check that the attribute is present in the exported file in db2 attr_encryption_test.py 436 INFO Check that the value of attribute is also present in the exported file in db2 attr_encryption_test.py 442 INFO Delete test backends | |||
Passed | suites/automember_plugin/automember_test.py::test_automemberscope | 0.00 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO 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.46 | |
No log output captured. | |||
Passed | suites/automember_plugin/automember_test.py::test_adduser | 0.51 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_basic_ops | 0.34 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. tasks.py 398 INFO Import task import_09232018_192457 for file /var/lib/dirsrv/slapd-standalone1/ldif/Example.ldif completed successfully | |||
Passed | suites/basic/basic_test.py::test_basic_import_export | 39.57 | |
----------------------------- Captured stdout call ----------------------------- OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ----------------------------- Captured stderr call ----------------------------- [23/Sep/2018:19:25:13.410078046 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:25:13.439086084 -0400] - INFO - dblayer_instance_start - Import is running with nsslapd-db-private-import-mem on; No other process is allowed to access the database [23/Sep/2018:19:25:13.440060957 -0400] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7832932352, process usage 20926464 [23/Sep/2018:19:25:13.440575821 -0400] - INFO - check_and_set_import_cache - Import allocates 3059739KB import cache. [23/Sep/2018:19:25:13.600755366 -0400] - INFO - import_main_offline - import userRoot: Beginning import job... [23/Sep/2018:19:25:13.601517132 -0400] - INFO - import_main_offline - import userRoot: Index buffering enabled with bucket size 100 [23/Sep/2018:19:25:13.802337637 -0400] - INFO - import_producer - import userRoot: Processing file "/var/lib/dirsrv/slapd-standalone1/ldif/basic_import.ldif" [23/Sep/2018:19:25:20.286117603 -0400] - INFO - import_producer - import userRoot: Finished scanning file "/var/lib/dirsrv/slapd-standalone1/ldif/basic_import.ldif" (50008 entries) [23/Sep/2018:19:25:20.870315668 -0400] - INFO - import_monitor_threads - import userRoot: Workers finished; cleaning up... [23/Sep/2018:19:25:21.071648153 -0400] - INFO - import_monitor_threads - import userRoot: Workers cleaned up. [23/Sep/2018:19:25:21.072655975 -0400] - INFO - import_main_offline - import userRoot: Cleaning up producer thread... [23/Sep/2018:19:25:21.073292268 -0400] - INFO - import_main_offline - import userRoot: Indexing complete. Post-processing... [23/Sep/2018:19:25:21.073757058 -0400] - INFO - import_main_offline - import userRoot: Generating numsubordinates (this may take several minutes to complete)... [23/Sep/2018:19:25:21.077831126 -0400] - INFO - import_main_offline - import userRoot: Generating numSubordinates complete. [23/Sep/2018:19:25:21.078760899 -0400] - INFO - ldbm_get_nonleaf_ids - import userRoot: Gathering ancestorid non-leaf IDs... [23/Sep/2018:19:25:21.079464678 -0400] - INFO - ldbm_get_nonleaf_ids - import userRoot: Finished gathering ancestorid non-leaf IDs. [23/Sep/2018:19:25:21.080950677 -0400] - INFO - ldbm_ancestorid_new_idl_create_index - import userRoot: Creating ancestorid index (new idl)... [23/Sep/2018:19:25:21.230776473 -0400] - INFO - ldbm_ancestorid_new_idl_create_index - import userRoot: Created ancestorid index (new idl). [23/Sep/2018:19:25:21.231654018 -0400] - INFO - import_main_offline - import userRoot: Flushing caches... [23/Sep/2018:19:25:21.232353741 -0400] - INFO - import_main_offline - import userRoot: Closing files... [23/Sep/2018:19:25:21.888120467 -0400] - INFO - dblayer_pre_close - All database threads now stopped [23/Sep/2018:19:25:21.889001347 -0400] - INFO - import_main_offline - import userRoot: Import complete. Processed 50008 entries in 8 seconds. (6251.00 entries/sec) ldiffile: /var/lib/dirsrv/slapd-standalone1/ldif/export.ldif [23/Sep/2018:19:25:31.892167479 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:25:31.986476437 -0400] - INFO - export_one_entry - export userRoot: Processed 1000 entries (1%). [23/Sep/2018:19:25:32.064103087 -0400] - INFO - export_one_entry - export userRoot: Processed 2000 entries (3%). [23/Sep/2018:19:25:32.142264514 -0400] - INFO - export_one_entry - export userRoot: Processed 3000 entries (5%). [23/Sep/2018:19:25:32.220908370 -0400] - INFO - export_one_entry - export userRoot: Processed 4000 entries (7%). [23/Sep/2018:19:25:32.300421894 -0400] - INFO - export_one_entry - export userRoot: Processed 5000 entries (9%). [23/Sep/2018:19:25:32.385869031 -0400] - INFO - export_one_entry - export userRoot: Processed 6000 entries (11%). [23/Sep/2018:19:25:32.476692031 -0400] - INFO - export_one_entry - export userRoot: Processed 7000 entries (13%). [23/Sep/2018:19:25:32.556701095 -0400] - INFO - export_one_entry - export userRoot: Processed 8000 entries (15%). [23/Sep/2018:19:25:32.644665209 -0400] - INFO - export_one_entry - export userRoot: Processed 9000 entries (17%). [23/Sep/2018:19:25:32.730076683 -0400] - INFO - export_one_entry - export userRoot: Processed 10000 entries (19%). [23/Sep/2018:19:25:32.815637626 -0400] - INFO - export_one_entry - export userRoot: Processed 11000 entries (21%). [23/Sep/2018:19:25:32.902035585 -0400] - INFO - export_one_entry - export userRoot: Processed 12000 entries (23%). [23/Sep/2018:19:25:32.982553914 -0400] - INFO - export_one_entry - export userRoot: Processed 13000 entries (25%). [23/Sep/2018:19:25:33.062428704 -0400] - INFO - export_one_entry - export userRoot: Processed 14000 entries (27%). [23/Sep/2018:19:25:33.143197592 -0400] - INFO - export_one_entry - export userRoot: Processed 15000 entries (29%). [23/Sep/2018:19:25:33.224397098 -0400] - INFO - export_one_entry - export userRoot: Processed 16000 entries (31%). [23/Sep/2018:19:25:33.304807986 -0400] - INFO - export_one_entry - export userRoot: Processed 17000 entries (33%). [23/Sep/2018:19:25:33.384677193 -0400] - INFO - export_one_entry - export userRoot: Processed 18000 entries (35%). [23/Sep/2018:19:25:33.463919844 -0400] - INFO - export_one_entry - export userRoot: Processed 19000 entries (37%). [23/Sep/2018:19:25:33.543368812 -0400] - INFO - export_one_entry - export userRoot: Processed 20000 entries (39%). [23/Sep/2018:19:25:33.623218121 -0400] - INFO - export_one_entry - export userRoot: Processed 21000 entries (41%). [23/Sep/2018:19:25:33.703973255 -0400] - INFO - export_one_entry - export userRoot: Processed 22000 entries (43%). [23/Sep/2018:19:25:33.784506667 -0400] - INFO - export_one_entry - export userRoot: Processed 23000 entries (45%). [23/Sep/2018:19:25:33.864796506 -0400] - INFO - export_one_entry - export userRoot: Processed 24000 entries (47%). [23/Sep/2018:19:25:33.945807971 -0400] - INFO - export_one_entry - export userRoot: Processed 25000 entries (49%). [23/Sep/2018:19:25:34.027629180 -0400] - INFO - export_one_entry - export userRoot: Processed 26000 entries (51%). [23/Sep/2018:19:25:34.107461437 -0400] - INFO - export_one_entry - export userRoot: Processed 27000 entries (53%). [23/Sep/2018:19:25:34.187759427 -0400] - INFO - export_one_entry - export userRoot: Processed 28000 entries (55%). [23/Sep/2018:19:25:34.268625606 -0400] - INFO - export_one_entry - export userRoot: Processed 29000 entries (57%). [23/Sep/2018:19:25:34.349565739 -0400] - INFO - export_one_entry - export userRoot: Processed 30000 entries (59%). [23/Sep/2018:19:25:34.430008708 -0400] - INFO - export_one_entry - export userRoot: Processed 31000 entries (61%). [23/Sep/2018:19:25:34.509679908 -0400] - INFO - export_one_entry - export userRoot: Processed 32000 entries (63%). [23/Sep/2018:19:25:34.589635049 -0400] - INFO - export_one_entry - export userRoot: Processed 33000 entries (65%). [23/Sep/2018:19:25:34.668728887 -0400] - INFO - export_one_entry - export userRoot: Processed 34000 entries (67%). [23/Sep/2018:19:25:34.747662770 -0400] - INFO - export_one_entry - export userRoot: Processed 35000 entries (69%). [23/Sep/2018:19:25:34.827292062 -0400] - INFO - export_one_entry - export userRoot: Processed 36000 entries (71%). [23/Sep/2018:19:25:34.906441924 -0400] - INFO - export_one_entry - export userRoot: Processed 37000 entries (73%). [23/Sep/2018:19:25:34.986097551 -0400] - INFO - export_one_entry - export userRoot: Processed 38000 entries (75%). [23/Sep/2018:19:25:35.066867186 -0400] - INFO - export_one_entry - export userRoot: Processed 39000 entries (77%). [23/Sep/2018:19:25:35.147829080 -0400] - INFO - export_one_entry - export userRoot: Processed 40000 entries (79%). [23/Sep/2018:19:25:35.229881446 -0400] - INFO - export_one_entry - export userRoot: Processed 41000 entries (81%). [23/Sep/2018:19:25:35.313184991 -0400] - INFO - export_one_entry - export userRoot: Processed 42000 entries (83%). [23/Sep/2018:19:25:35.393962949 -0400] - INFO - export_one_entry - export userRoot: Processed 43000 entries (85%). [23/Sep/2018:19:25:35.474972934 -0400] - INFO - export_one_entry - export userRoot: Processed 44000 entries (87%). [23/Sep/2018:19:25:35.558624299 -0400] - INFO - export_one_entry - export userRoot: Processed 45000 entries (89%). [23/Sep/2018:19:25:35.639077410 -0400] - INFO - export_one_entry - export userRoot: Processed 46000 entries (91%). [23/Sep/2018:19:25:35.720244491 -0400] - INFO - export_one_entry - export userRoot: Processed 47000 entries (93%). [23/Sep/2018:19:25:35.801139974 -0400] - INFO - export_one_entry - export userRoot: Processed 48000 entries (95%). [23/Sep/2018:19:25:35.881597006 -0400] - INFO - export_one_entry - export userRoot: Processed 49000 entries (97%). [23/Sep/2018:19:25:35.963918499 -0400] - INFO - export_one_entry - export userRoot: Processed 50000 entries (99%). [23/Sep/2018:19:25:35.965445241 -0400] - INFO - ldbm_back_ldbm2ldif - export userRoot: Processed 50008 entries (100%). [23/Sep/2018:19:25:35.976882542 -0400] - INFO - dblayer_pre_close - All database threads now stopped ------------------------------ Captured log call ------------------------------- tasks.py 398 INFO Import task import_09232018_192500 for file /var/lib/dirsrv/slapd-standalone1/ldif/basic_import.ldif completed successfully tasks.py 467 INFO Export task export_09232018_192523 for file /var/lib/dirsrv/slapd-standalone1/ldif/export.ldif completed successfully tasks.py 398 INFO Import task import_09232018_192537 for file /var/lib/dirsrv/slapd-standalone1/ldif/Example.ldif completed successfully | |||
Passed | suites/basic/basic_test.py::test_basic_backup | 11.25 | |
----------------------------- Captured stdout call ----------------------------- OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ----------------------------- Captured stderr call ----------------------------- [23/Sep/2018:19:25:48.280348886 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:25:48.284934235 -0400] - INFO - ldbm_back_ldbm2archive - /var/lib/dirsrv/slapd-standalone1/bak/backup_test exists. Renaming to /var/lib/dirsrv/slapd-standalone1/bak/backup_test.bak [23/Sep/2018:19:25:48.285996022 -0400] - INFO - dblayer_copy_directory - Backing up file 1 (/var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/ancestorid.db) [23/Sep/2018:19:25:48.286735437 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/ancestorid.db to /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/ancestorid.db [23/Sep/2018:19:25:48.287383803 -0400] - INFO - dblayer_copy_directory - Backing up file 2 (/var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/objectclass.db) [23/Sep/2018:19:25:48.288059181 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/objectclass.db to /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/objectclass.db [23/Sep/2018:19:25:48.288713345 -0400] - INFO - dblayer_copy_directory - Backing up file 3 (/var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/id2entry.db) [23/Sep/2018:19:25:48.289383551 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/id2entry.db to /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/id2entry.db [23/Sep/2018:19:25:48.290166617 -0400] - INFO - dblayer_copy_directory - Backing up file 4 (/var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/givenName.db) [23/Sep/2018:19:25:48.290663577 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/givenName.db to /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/givenName.db [23/Sep/2018:19:25:48.291407715 -0400] - INFO - dblayer_copy_directory - Backing up file 5 (/var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/parentid.db) [23/Sep/2018:19:25:48.292202259 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/parentid.db to /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/parentid.db [23/Sep/2018:19:25:48.292789722 -0400] - INFO - dblayer_copy_directory - Backing up file 6 (/var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/DBVERSION) [23/Sep/2018:19:25:48.293367211 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/DBVERSION to /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/DBVERSION [23/Sep/2018:19:25:48.294059041 -0400] - INFO - dblayer_copy_directory - Backing up file 7 (/var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/sn.db) [23/Sep/2018:19:25:48.294713537 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/sn.db to /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/sn.db [23/Sep/2018:19:25:48.295303474 -0400] - INFO - dblayer_copy_directory - Backing up file 8 (/var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/cn.db) [23/Sep/2018:19:25:48.295912106 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/cn.db to /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/cn.db [23/Sep/2018:19:25:48.296505777 -0400] - INFO - dblayer_copy_directory - Backing up file 9 (/var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/telephoneNumber.db) [23/Sep/2018:19:25:48.297020189 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/telephoneNumber.db to /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/telephoneNumber.db [23/Sep/2018:19:25:48.297883360 -0400] - INFO - dblayer_copy_directory - Backing up file 10 (/var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/mail.db) [23/Sep/2018:19:25:48.298451914 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/mail.db to /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/mail.db [23/Sep/2018:19:25:48.299078972 -0400] - INFO - dblayer_copy_directory - Backing up file 11 (/var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/nsuniqueid.db) [23/Sep/2018:19:25:48.299736208 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/nsuniqueid.db to /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/nsuniqueid.db [23/Sep/2018:19:25:48.300409231 -0400] - INFO - dblayer_copy_directory - Backing up file 12 (/var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/entryrdn.db) [23/Sep/2018:19:25:48.300944216 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryrdn.db to /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/entryrdn.db [23/Sep/2018:19:25:48.301506242 -0400] - INFO - dblayer_copy_directory - Backing up file 13 (/var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/uid.db) [23/Sep/2018:19:25:48.302027228 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/uid.db to /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/uid.db [23/Sep/2018:19:25:48.302571414 -0400] - INFO - dblayer_copy_directory - Backing up file 14 (/var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/aci.db) [23/Sep/2018:19:25:48.303031183 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/aci.db to /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/aci.db [23/Sep/2018:19:25:48.303498666 -0400] - INFO - dblayer_copy_directory - Backing up file 15 (/var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/entryusn.db) [23/Sep/2018:19:25:48.304034295 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryusn.db to /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/entryusn.db [23/Sep/2018:19:25:48.304713514 -0400] - INFO - dblayer_copy_directory - Backing up file 16 (/var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/uniquemember.db) [23/Sep/2018:19:25:48.305249234 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/uniquemember.db to /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/uniquemember.db [23/Sep/2018:19:25:48.305779330 -0400] - INFO - dblayer_copy_directory - Backing up file 17 (/var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/numsubordinates.db) [23/Sep/2018:19:25:48.306295856 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/userRoot/numsubordinates.db to /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/numsubordinates.db [23/Sep/2018:19:25:48.307050153 -0400] - INFO - dblayer_backup - Backing up file 18 (/var/lib/dirsrv/slapd-standalone1/bak/backup_test/log.0000000001) [23/Sep/2018:19:25:48.307628489 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/log.0000000001 to /var/lib/dirsrv/slapd-standalone1/bak/backup_test/log.0000000001 [23/Sep/2018:19:25:48.317013438 -0400] - INFO - dblayer_backup - Backing up file 19 (/var/lib/dirsrv/slapd-standalone1/bak/backup_test/DBVERSION) [23/Sep/2018:19:25:48.317866446 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/db/DBVERSION to /var/lib/dirsrv/slapd-standalone1/bak/backup_test/DBVERSION [23/Sep/2018:19:25:48.319979183 -0400] - INFO - dblayer_pre_close - All database threads now stopped [23/Sep/2018:19:25:49.451575439 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:25:49.458386466 -0400] - INFO - dblayer_delete_transaction_logs - Deleting log file: (/var/lib/dirsrv/slapd-standalone1/db/log.0000000001) [23/Sep/2018:19:25:49.460870155 -0400] - INFO - dblayer_copy_directory - Restoring file 1 (/var/lib/dirsrv/slapd-standalone1/db/userRoot/ancestorid.db) [23/Sep/2018:19:25:49.462161041 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/ancestorid.db to /var/lib/dirsrv/slapd-standalone1/db/userRoot/ancestorid.db [23/Sep/2018:19:25:49.462814968 -0400] - INFO - dblayer_copy_directory - Restoring file 2 (/var/lib/dirsrv/slapd-standalone1/db/userRoot/objectclass.db) [23/Sep/2018:19:25:49.463441985 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/objectclass.db to /var/lib/dirsrv/slapd-standalone1/db/userRoot/objectclass.db [23/Sep/2018:19:25:49.464053205 -0400] - INFO - dblayer_copy_directory - Restoring file 3 (/var/lib/dirsrv/slapd-standalone1/db/userRoot/id2entry.db) [23/Sep/2018:19:25:49.464802122 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/id2entry.db to /var/lib/dirsrv/slapd-standalone1/db/userRoot/id2entry.db [23/Sep/2018:19:25:49.465553767 -0400] - INFO - dblayer_copy_directory - Restoring file 4 (/var/lib/dirsrv/slapd-standalone1/db/userRoot/givenName.db) [23/Sep/2018:19:25:49.466176318 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/givenName.db to /var/lib/dirsrv/slapd-standalone1/db/userRoot/givenName.db [23/Sep/2018:19:25:49.466729016 -0400] - INFO - dblayer_copy_directory - Restoring file 5 (/var/lib/dirsrv/slapd-standalone1/db/userRoot/parentid.db) [23/Sep/2018:19:25:49.467335488 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/parentid.db to /var/lib/dirsrv/slapd-standalone1/db/userRoot/parentid.db [23/Sep/2018:19:25:49.467925381 -0400] - INFO - dblayer_copy_directory - Restoring file 6 (/var/lib/dirsrv/slapd-standalone1/db/userRoot/DBVERSION) [23/Sep/2018:19:25:49.468581741 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/DBVERSION to /var/lib/dirsrv/slapd-standalone1/db/userRoot/DBVERSION [23/Sep/2018:19:25:49.469151359 -0400] - INFO - dblayer_copy_directory - Restoring file 7 (/var/lib/dirsrv/slapd-standalone1/db/userRoot/sn.db) [23/Sep/2018:19:25:49.469950707 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/sn.db to /var/lib/dirsrv/slapd-standalone1/db/userRoot/sn.db [23/Sep/2018:19:25:49.470541099 -0400] - INFO - dblayer_copy_directory - Restoring file 8 (/var/lib/dirsrv/slapd-standalone1/db/userRoot/cn.db) [23/Sep/2018:19:25:49.471045637 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/cn.db to /var/lib/dirsrv/slapd-standalone1/db/userRoot/cn.db [23/Sep/2018:19:25:49.471676054 -0400] - INFO - dblayer_copy_directory - Restoring file 9 (/var/lib/dirsrv/slapd-standalone1/db/userRoot/telephoneNumber.db) [23/Sep/2018:19:25:49.472338315 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/telephoneNumber.db to /var/lib/dirsrv/slapd-standalone1/db/userRoot/telephoneNumber.db [23/Sep/2018:19:25:49.472940829 -0400] - INFO - dblayer_copy_directory - Restoring file 10 (/var/lib/dirsrv/slapd-standalone1/db/userRoot/mail.db) [23/Sep/2018:19:25:49.473450897 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/mail.db to /var/lib/dirsrv/slapd-standalone1/db/userRoot/mail.db [23/Sep/2018:19:25:49.474098985 -0400] - INFO - dblayer_copy_directory - Restoring file 11 (/var/lib/dirsrv/slapd-standalone1/db/userRoot/nsuniqueid.db) [23/Sep/2018:19:25:49.474667191 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/nsuniqueid.db to /var/lib/dirsrv/slapd-standalone1/db/userRoot/nsuniqueid.db [23/Sep/2018:19:25:49.475241142 -0400] - INFO - dblayer_copy_directory - Restoring file 12 (/var/lib/dirsrv/slapd-standalone1/db/userRoot/entryrdn.db) [23/Sep/2018:19:25:49.475875460 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/entryrdn.db to /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryrdn.db [23/Sep/2018:19:25:49.476433730 -0400] - INFO - dblayer_copy_directory - Restoring file 13 (/var/lib/dirsrv/slapd-standalone1/db/userRoot/uid.db) [23/Sep/2018:19:25:49.476873850 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/uid.db to /var/lib/dirsrv/slapd-standalone1/db/userRoot/uid.db [23/Sep/2018:19:25:49.477392846 -0400] - INFO - dblayer_copy_directory - Restoring file 14 (/var/lib/dirsrv/slapd-standalone1/db/userRoot/aci.db) [23/Sep/2018:19:25:49.477938172 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/aci.db to /var/lib/dirsrv/slapd-standalone1/db/userRoot/aci.db [23/Sep/2018:19:25:49.478392830 -0400] - INFO - dblayer_copy_directory - Restoring file 15 (/var/lib/dirsrv/slapd-standalone1/db/userRoot/entryusn.db) [23/Sep/2018:19:25:49.478849445 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/entryusn.db to /var/lib/dirsrv/slapd-standalone1/db/userRoot/entryusn.db [23/Sep/2018:19:25:49.479378966 -0400] - INFO - dblayer_copy_directory - Restoring file 16 (/var/lib/dirsrv/slapd-standalone1/db/userRoot/uniquemember.db) [23/Sep/2018:19:25:49.479955382 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/uniquemember.db to /var/lib/dirsrv/slapd-standalone1/db/userRoot/uniquemember.db [23/Sep/2018:19:25:49.480599648 -0400] - INFO - dblayer_copy_directory - Restoring file 17 (/var/lib/dirsrv/slapd-standalone1/db/userRoot/numsubordinates.db) [23/Sep/2018:19:25:49.481289996 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/bak/backup_test/userRoot/numsubordinates.db to /var/lib/dirsrv/slapd-standalone1/db/userRoot/numsubordinates.db [23/Sep/2018:19:25:49.481802817 -0400] - INFO - dblayer_restore - Restoring file 18 (/var/lib/dirsrv/slapd-standalone1/db/DBVERSION) [23/Sep/2018:19:25:49.482382197 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/bak/backup_test/DBVERSION to /var/lib/dirsrv/slapd-standalone1/db/DBVERSION [23/Sep/2018:19:25:49.483105115 -0400] - INFO - dblayer_restore - Restoring file 19 (/var/lib/dirsrv/slapd-standalone1/db/log.0000000001) [23/Sep/2018:19:25:49.483572804 -0400] - INFO - dblayer_copyfile - Copying /var/lib/dirsrv/slapd-standalone1/bak/backup_test/log.0000000001 to /var/lib/dirsrv/slapd-standalone1/db/log.0000000001 [23/Sep/2018:19:25:49.534965996 -0400] - INFO - dblayer_pre_close - All database threads now stopped ------------------------------ Captured log call ------------------------------- tasks.py 518 INFO Backup task backup_09232018_192539 completed successfully tasks.py 580 INFO Restore task restore_09232018_192541 completed successfully | |||
Passed | suites/basic/basic_test.py::test_basic_db2index | 3.89 | |
----------------------------- Captured stderr call ----------------------------- [23/Sep/2018:19:25:53.176448767 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:25:53.180218383 -0400] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7834161152, process usage 20893696 [23/Sep/2018:19:25:53.180891509 -0400] - INFO - check_and_set_import_cache - Import allocates 3060219KB import cache. [23/Sep/2018:19:25:53.181485928 -0400] - INFO - ldbm_back_upgradedb - Index version is up-to-date [23/Sep/2018:19:25:53.302563275 -0400] - INFO - slapd_exemode_db2index - Backend Instance: userRoot [23/Sep/2018:19:25:53.304367325 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:25:53.308392715 -0400] - INFO - dblayer_instance_start - Import is running with nsslapd-db-private-import-mem on; No other process is allowed to access the database [23/Sep/2018:19:25:53.309300325 -0400] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7834447872, process usage 20893696 [23/Sep/2018:19:25:53.309902987 -0400] - INFO - check_and_set_import_cache - Import allocates 3060331KB import cache. [23/Sep/2018:19:25:53.456932190 -0400] - INFO - ldbm_back_ldbm2index - userRoot: Indexing attribute: uid [23/Sep/2018:19:25:53.464492529 -0400] - INFO - ldbm_back_ldbm2index - userRoot: Finished indexing. [23/Sep/2018:19:25:53.476472990 -0400] - INFO - dblayer_pre_close - All database threads now stopped | |||
Passed | suites/basic/basic_test.py::test_basic_acl | 0.45 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_basic_searches | 0.04 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_basic_referrals | 3.83 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_basic_systemctl | 17.03 | |
----------------------------- Captured stderr call ----------------------------- Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. | |||
Passed | suites/basic/basic_test.py::test_basic_ldapagent | 5.03 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_basic_dse | 11.43 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_def_rootdse_attr[namingContexts] | 0.01 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_def_rootdse_attr[supportedLDAPVersion] | 0.01 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_def_rootdse_attr[supportedControl] | 0.01 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_def_rootdse_attr[supportedExtension] | 0.01 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_def_rootdse_attr[supportedSASLMechanisms] | 0.01 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_def_rootdse_attr[vendorName] | 0.01 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_def_rootdse_attr[vendorVersion] | 0.01 | |
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.00 | |
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.02 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_search_original_type | 0.01 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_search_ou | 0.00 | |
No log output captured. | |||
Passed | suites/basic/basic_test.py::test_connection_buffer_size | 0.02 | |
No log output captured. | |||
Passed | suites/betxns/betxn_test.py::test_betxt_7bit | 4.39 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.------------------------------ Captured log call ------------------------------- betxn_test.py 46 INFO Running test_betxt_7bit... betxn_test.py 65 INFO Modrdn failed as expected: error {'desc': 'Constraint violation', 'info': 'The value is not 7-bit clean: FuÄè'} betxn_test.py 77 INFO test_betxt_7bit: PASSED | |||
Passed | suites/betxns/betxn_test.py::test_betxn_attr_uniqueness | 4.67 | |
------------------------------ Captured log call ------------------------------- betxn_test.py 131 ERROR test_betxn_attr_uniqueness: Failed to add test user as expected: betxn_test.py 135 INFO test_betxn_attr_uniqueness: PASSED | |||
Passed | suites/betxns/betxn_test.py::test_betxn_memberof | 4.67 | |
------------------------------ Captured log call ------------------------------- betxn_test.py 190 INFO test_betxn_memberof: Group2 was correctly rejected (mod add): error betxn_test.py 195 INFO test_betxn_memberof: PASSED | |||
Passed | suites/clu/clu_test.py::test_clu_pwdhash | 0.03 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.------------------------------ Captured log call ------------------------------- clu_test.py 38 INFO Running test_clu_pwdhash... clu_test.py 52 INFO pwdhash generated: {SSHA}+x2/N43zfm7xfpoSZ8HsD+5us6zSkHhMdCj6jA== clu_test.py 53 INFO test_clu_pwdhash: PASSED | |||
Passed | suites/clu/clu_test.py::test_clu_pwdhash_mod | 0.05 | |
------------------------------ Captured log call ------------------------------- clu_test.py 76 INFO Running test_clu_pwdhash_mod... clu_test.py 85 INFO pwdhash generated: {SSHA256}rgP1SoMnp6nuvehO2K9PqnliKDZOu7hg5ZaL3TusUfTFLK0M1PTzTQ== clu_test.py 86 INFO returned the hashed string using the algorithm set in nsslapd-rootpwstoragescheme | |||
Passed | suites/config/autotuning_test.py::test_threads_basic | 0.01 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.------------------------------ Captured log call ------------------------------- autotuning_test.py 37 INFO Set nsslapd-threadnumber: -1 to enable autotuning autotuning_test.py 40 INFO Assert nsslapd-threadnumber is equal to the documented expected value | |||
Passed | suites/config/autotuning_test.py::test_threads_invalid_value[-2] | 0.00 | |
------------------------------ Captured log call ------------------------------- autotuning_test.py 56 INFO Set nsslapd-threadnumber: -2. Operation should fail | |||
Passed | suites/config/autotuning_test.py::test_threads_invalid_value[0] | 0.00 | |
------------------------------ Captured log call ------------------------------- autotuning_test.py 56 INFO Set nsslapd-threadnumber: 0. Operation should fail | |||
Passed | suites/config/autotuning_test.py::test_threads_invalid_value[invalid] | 0.00 | |
------------------------------ Captured log call ------------------------------- autotuning_test.py 56 INFO Set nsslapd-threadnumber: invalid. Operation should fail | |||
Passed | suites/config/autotuning_test.py::test_threads_back_from_manual_value | 0.76 | |
------------------------------ Captured log call ------------------------------- autotuning_test.py 78 INFO Set nsslapd-threadnumber: -1 to enable autotuning and save the new value autotuning_test.py 82 INFO Set nsslapd-threadnumber to the autotuned value decreased by 2 autotuning_test.py 87 INFO Set nsslapd-threadnumber: -1 to enable autotuning autotuning_test.py 90 INFO Assert nsslapd-threadnumber is back to the autotuned value | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_non_zero[-] | 8.36 | |
------------------------------ Captured log call ------------------------------- autotuning_test.py 130 INFO Check nsslapd-dbcachesize and nsslapd-cachememsize before the test autotuning_test.py 131 INFO nsslapd-dbcachesize == b'167257538' autotuning_test.py 132 INFO nsslapd-cachememsize == b'603979776' autotuning_test.py 133 INFO nsslapd-dncachememsize == b'67108864' autotuning_test.py 134 INFO nsslapd-cache-autosize == b'10' autotuning_test.py 135 INFO nsslapd-cache-autosize-split == b'25' autotuning_test.py 141 INFO Delete nsslapd-cache-autosize autotuning_test.py 151 INFO Delete nsslapd-cache-autosize-split autotuning_test.py 157 INFO Trying to set nsslapd-cachememsize to 33333333 autotuning_test.py 160 INFO Trying to set nsslapd-dbcachesize to 33333333 autotuning_test.py 171 INFO Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. autotuning_test.py 172 INFO nsslapd-dbcachesize == b'167257538' autotuning_test.py 173 INFO nsslapd-cachememsize == b'603979776' autotuning_test.py 174 INFO nsslapd-dncachememsize == b'67108864' autotuning_test.py 175 INFO nsslapd-cache-autosize == b'10' autotuning_test.py 176 INFO nsslapd-cache-autosize-split == b'25' | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_non_zero[-0] | 4.68 | |
------------------------------ Captured log call ------------------------------- autotuning_test.py 130 INFO Check nsslapd-dbcachesize and nsslapd-cachememsize before the test autotuning_test.py 131 INFO nsslapd-dbcachesize == b'167257538' autotuning_test.py 132 INFO nsslapd-cachememsize == b'603979776' autotuning_test.py 133 INFO nsslapd-dncachememsize == b'67108864' autotuning_test.py 134 INFO nsslapd-cache-autosize == b'10' autotuning_test.py 135 INFO nsslapd-cache-autosize-split == b'25' autotuning_test.py 141 INFO Delete nsslapd-cache-autosize autotuning_test.py 148 INFO Set nsslapd-cache-autosize-split to 0 autotuning_test.py 157 INFO Trying to set nsslapd-cachememsize to 33333333 autotuning_test.py 160 INFO Trying to set nsslapd-dbcachesize to 33333333 autotuning_test.py 171 INFO Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. autotuning_test.py 172 INFO nsslapd-dbcachesize == b'167257538' autotuning_test.py 173 INFO nsslapd-cachememsize == b'603979776' autotuning_test.py 174 INFO nsslapd-dncachememsize == b'67108864' autotuning_test.py 175 INFO nsslapd-cache-autosize == b'10' autotuning_test.py 176 INFO nsslapd-cache-autosize-split == b'0' | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_non_zero[10-400] | 4.21 | |
------------------------------ Captured log call ------------------------------- autotuning_test.py 130 INFO Check nsslapd-dbcachesize and nsslapd-cachememsize before the test autotuning_test.py 131 INFO nsslapd-dbcachesize == b'167257538' autotuning_test.py 132 INFO nsslapd-cachememsize == b'603979776' autotuning_test.py 133 INFO nsslapd-dncachememsize == b'67108864' autotuning_test.py 134 INFO nsslapd-cache-autosize == b'10' autotuning_test.py 135 INFO nsslapd-cache-autosize-split == b'0' autotuning_test.py 138 INFO Set nsslapd-cache-autosize to 10 autotuning_test.py 148 INFO Set nsslapd-cache-autosize-split to 40 autotuning_test.py 157 INFO Trying to set nsslapd-cachememsize to 33333333 autotuning_test.py 160 INFO Trying to set nsslapd-dbcachesize to 33333333 autotuning_test.py 171 INFO Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. autotuning_test.py 172 INFO nsslapd-dbcachesize == b'267612060' autotuning_test.py 173 INFO nsslapd-cachememsize == b'469762048' autotuning_test.py 174 INFO nsslapd-dncachememsize == b'67108864' autotuning_test.py 175 INFO nsslapd-cache-autosize == b'10' autotuning_test.py 176 INFO nsslapd-cache-autosize-split == b'40' | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_non_zero[-40] | 4.42 | |
------------------------------ Captured log call ------------------------------- autotuning_test.py 130 INFO Check nsslapd-dbcachesize and nsslapd-cachememsize before the test autotuning_test.py 131 INFO nsslapd-dbcachesize == b'267612060' autotuning_test.py 132 INFO nsslapd-cachememsize == b'469762048' autotuning_test.py 133 INFO nsslapd-dncachememsize == b'67108864' autotuning_test.py 134 INFO nsslapd-cache-autosize == b'10' autotuning_test.py 135 INFO nsslapd-cache-autosize-split == b'40' autotuning_test.py 141 INFO Delete nsslapd-cache-autosize autotuning_test.py 148 INFO Set nsslapd-cache-autosize-split to 40 autotuning_test.py 157 INFO Trying to set nsslapd-cachememsize to 33333333 autotuning_test.py 160 INFO Trying to set nsslapd-dbcachesize to 33333333 autotuning_test.py 171 INFO Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. autotuning_test.py 172 INFO nsslapd-dbcachesize == b'267612060' autotuning_test.py 173 INFO nsslapd-cachememsize == b'469762048' autotuning_test.py 174 INFO nsslapd-dncachememsize == b'67108864' autotuning_test.py 175 INFO nsslapd-cache-autosize == b'10' autotuning_test.py 176 INFO nsslapd-cache-autosize-split == b'40' | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_non_zero[10-] | 4.74 | |
------------------------------ Captured log call ------------------------------- autotuning_test.py 130 INFO Check nsslapd-dbcachesize and nsslapd-cachememsize before the test autotuning_test.py 131 INFO nsslapd-dbcachesize == b'267612060' autotuning_test.py 132 INFO nsslapd-cachememsize == b'469762048' autotuning_test.py 133 INFO nsslapd-dncachememsize == b'67108864' autotuning_test.py 134 INFO nsslapd-cache-autosize == b'10' autotuning_test.py 135 INFO nsslapd-cache-autosize-split == b'40' autotuning_test.py 138 INFO Set nsslapd-cache-autosize to 10 autotuning_test.py 151 INFO Delete nsslapd-cache-autosize-split autotuning_test.py 157 INFO Trying to set nsslapd-cachememsize to 33333333 autotuning_test.py 160 INFO Trying to set nsslapd-dbcachesize to 33333333 autotuning_test.py 171 INFO Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. autotuning_test.py 172 INFO nsslapd-dbcachesize == b'167257538' autotuning_test.py 173 INFO nsslapd-cachememsize == b'603979776' autotuning_test.py 174 INFO nsslapd-dncachememsize == b'67108864' autotuning_test.py 175 INFO nsslapd-cache-autosize == b'10' autotuning_test.py 176 INFO nsslapd-cache-autosize-split == b'25' | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_non_zero[10-401] | 9.22 | |
------------------------------ Captured log call ------------------------------- autotuning_test.py 130 INFO Check nsslapd-dbcachesize and nsslapd-cachememsize before the test autotuning_test.py 131 INFO nsslapd-dbcachesize == b'167257538' autotuning_test.py 132 INFO nsslapd-cachememsize == b'603979776' autotuning_test.py 133 INFO nsslapd-dncachememsize == b'67108864' autotuning_test.py 134 INFO nsslapd-cache-autosize == b'10' autotuning_test.py 135 INFO nsslapd-cache-autosize-split == b'25' autotuning_test.py 138 INFO Set nsslapd-cache-autosize to 10 autotuning_test.py 148 INFO Set nsslapd-cache-autosize-split to 40 autotuning_test.py 157 INFO Trying to set nsslapd-cachememsize to 33333333 autotuning_test.py 160 INFO Trying to set nsslapd-dbcachesize to 33333333 autotuning_test.py 171 INFO Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. autotuning_test.py 172 INFO nsslapd-dbcachesize == b'267612060' autotuning_test.py 173 INFO nsslapd-cachememsize == b'469762048' autotuning_test.py 174 INFO nsslapd-dncachememsize == b'67108864' autotuning_test.py 175 INFO nsslapd-cache-autosize == b'10' autotuning_test.py 176 INFO nsslapd-cache-autosize-split == b'40' | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_non_zero[10-0] | 4.43 | |
------------------------------ Captured log call ------------------------------- autotuning_test.py 130 INFO Check nsslapd-dbcachesize and nsslapd-cachememsize before the test autotuning_test.py 131 INFO nsslapd-dbcachesize == b'267612060' autotuning_test.py 132 INFO nsslapd-cachememsize == b'469762048' autotuning_test.py 133 INFO nsslapd-dncachememsize == b'67108864' autotuning_test.py 134 INFO nsslapd-cache-autosize == b'10' autotuning_test.py 135 INFO nsslapd-cache-autosize-split == b'40' autotuning_test.py 138 INFO Set nsslapd-cache-autosize to 10 autotuning_test.py 148 INFO Set nsslapd-cache-autosize-split to 0 autotuning_test.py 157 INFO Trying to set nsslapd-cachememsize to 33333333 autotuning_test.py 160 INFO Trying to set nsslapd-dbcachesize to 33333333 autotuning_test.py 171 INFO Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. autotuning_test.py 172 INFO nsslapd-dbcachesize == b'167257538' autotuning_test.py 173 INFO nsslapd-cachememsize == b'603979776' autotuning_test.py 174 INFO nsslapd-dncachememsize == b'67108864' autotuning_test.py 175 INFO nsslapd-cache-autosize == b'10' autotuning_test.py 176 INFO nsslapd-cache-autosize-split == b'0' | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_basic_sane[0] | 8.89 | |
------------------------------ Captured log call ------------------------------- autotuning_test.py 220 INFO Check nsslapd-dbcachesize and nsslapd-cachememsize before the test autotuning_test.py 221 INFO nsslapd-dbcachesize == b'167257538' autotuning_test.py 222 INFO nsslapd-cachememsize == b'603979776' autotuning_test.py 223 INFO nsslapd-cache-autosize == b'0' autotuning_test.py 224 INFO nsslapd-cache-autosize-split == b'0' autotuning_test.py 227 INFO Set nsslapd-cache-autosize-split to 0 autotuning_test.py 236 INFO Set nsslapd-dbcachesize to 0 autotuning_test.py 238 INFO Set nsslapd-cachememsize to 0 autotuning_test.py 248 INFO Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. autotuning_test.py 249 INFO nsslapd-dbcachesize == b'167257538' autotuning_test.py 250 INFO nsslapd-cachememsize == b'603979776' autotuning_test.py 251 INFO nsslapd-dncachememsize == b'67108864' autotuning_test.py 252 INFO nsslapd-cache-autosize == b'0' autotuning_test.py 253 INFO nsslapd-cache-autosize-split == b'0' autotuning_test.py 220 INFO Check nsslapd-dbcachesize and nsslapd-cachememsize before the test autotuning_test.py 221 INFO nsslapd-dbcachesize == b'167257538' autotuning_test.py 222 INFO nsslapd-cachememsize == b'603979776' autotuning_test.py 223 INFO nsslapd-cache-autosize == b'0' autotuning_test.py 224 INFO nsslapd-cache-autosize-split == b'0' autotuning_test.py 227 INFO Set nsslapd-cache-autosize-split to 0 autotuning_test.py 236 INFO Set nsslapd-dbcachesize to 33333333 autotuning_test.py 238 INFO Set nsslapd-cachememsize to 33333333 autotuning_test.py 248 INFO Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. autotuning_test.py 249 INFO nsslapd-dbcachesize == b'33333333' autotuning_test.py 250 INFO nsslapd-cachememsize == b'33333333' autotuning_test.py 251 INFO nsslapd-dncachememsize == b'67108864' autotuning_test.py 252 INFO nsslapd-cache-autosize == b'0' autotuning_test.py 253 INFO nsslapd-cache-autosize-split == b'0' | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_basic_sane[] | 14.09 | |
------------------------------ Captured log call ------------------------------- autotuning_test.py 220 INFO Check nsslapd-dbcachesize and nsslapd-cachememsize before the test autotuning_test.py 221 INFO nsslapd-dbcachesize == b'33333333' autotuning_test.py 222 INFO nsslapd-cachememsize == b'33333333' autotuning_test.py 223 INFO nsslapd-cache-autosize == b'0' autotuning_test.py 224 INFO nsslapd-cache-autosize-split == b'0' autotuning_test.py 230 INFO Delete nsslapd-cache-autosize-split autotuning_test.py 236 INFO Set nsslapd-dbcachesize to 0 autotuning_test.py 238 INFO Set nsslapd-cachememsize to 0 autotuning_test.py 248 INFO Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. autotuning_test.py 249 INFO nsslapd-dbcachesize == b'167257538' autotuning_test.py 250 INFO nsslapd-cachememsize == b'603979776' autotuning_test.py 251 INFO nsslapd-dncachememsize == b'67108864' autotuning_test.py 252 INFO nsslapd-cache-autosize == b'0' autotuning_test.py 253 INFO nsslapd-cache-autosize-split == b'25' autotuning_test.py 220 INFO Check nsslapd-dbcachesize and nsslapd-cachememsize before the test autotuning_test.py 221 INFO nsslapd-dbcachesize == b'167257538' autotuning_test.py 222 INFO nsslapd-cachememsize == b'603979776' autotuning_test.py 223 INFO nsslapd-cache-autosize == b'0' autotuning_test.py 224 INFO nsslapd-cache-autosize-split == b'25' autotuning_test.py 230 INFO Delete nsslapd-cache-autosize-split autotuning_test.py 236 INFO Set nsslapd-dbcachesize to 33333333 autotuning_test.py 238 INFO Set nsslapd-cachememsize to 33333333 autotuning_test.py 248 INFO Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. autotuning_test.py 249 INFO nsslapd-dbcachesize == b'33333333' autotuning_test.py 250 INFO nsslapd-cachememsize == b'33333333' autotuning_test.py 251 INFO nsslapd-dncachememsize == b'67108864' autotuning_test.py 252 INFO nsslapd-cache-autosize == b'0' autotuning_test.py 253 INFO nsslapd-cache-autosize-split == b'25' | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_basic_sane[40] | 8.84 | |
------------------------------ Captured log call ------------------------------- autotuning_test.py 220 INFO Check nsslapd-dbcachesize and nsslapd-cachememsize before the test autotuning_test.py 221 INFO nsslapd-dbcachesize == b'33333333' autotuning_test.py 222 INFO nsslapd-cachememsize == b'33333333' autotuning_test.py 223 INFO nsslapd-cache-autosize == b'0' autotuning_test.py 224 INFO nsslapd-cache-autosize-split == b'25' autotuning_test.py 227 INFO Set nsslapd-cache-autosize-split to 40 autotuning_test.py 236 INFO Set nsslapd-dbcachesize to 0 autotuning_test.py 238 INFO Set nsslapd-cachememsize to 0 autotuning_test.py 248 INFO Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. autotuning_test.py 249 INFO nsslapd-dbcachesize == b'267612060' autotuning_test.py 250 INFO nsslapd-cachememsize == b'469762048' autotuning_test.py 251 INFO nsslapd-dncachememsize == b'67108864' autotuning_test.py 252 INFO nsslapd-cache-autosize == b'0' autotuning_test.py 253 INFO nsslapd-cache-autosize-split == b'40' autotuning_test.py 220 INFO Check nsslapd-dbcachesize and nsslapd-cachememsize before the test autotuning_test.py 221 INFO nsslapd-dbcachesize == b'267612060' autotuning_test.py 222 INFO nsslapd-cachememsize == b'469762048' autotuning_test.py 223 INFO nsslapd-cache-autosize == b'0' autotuning_test.py 224 INFO nsslapd-cache-autosize-split == b'40' autotuning_test.py 227 INFO Set nsslapd-cache-autosize-split to 40 autotuning_test.py 236 INFO Set nsslapd-dbcachesize to 33333333 autotuning_test.py 238 INFO Set nsslapd-cachememsize to 33333333 autotuning_test.py 248 INFO Check nsslapd-dbcachesize and nsslapd-cachememsize in the appropriate range. autotuning_test.py 249 INFO nsslapd-dbcachesize == b'33333333' autotuning_test.py 250 INFO nsslapd-cachememsize == b'33333333' autotuning_test.py 251 INFO nsslapd-dncachememsize == b'67108864' autotuning_test.py 252 INFO nsslapd-cache-autosize == b'0' autotuning_test.py 253 INFO nsslapd-cache-autosize-split == b'40' | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_invalid_values[-2] | 0.01 | |
------------------------------ Captured log call ------------------------------- autotuning_test.py 281 INFO Set nsslapd-cache-autosize-split to -2 autotuning_test.py 287 INFO Set nsslapd-cache-autosize to -2 | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_invalid_values[102] | 0.51 | |
------------------------------ Captured log call ------------------------------- autotuning_test.py 281 INFO Set nsslapd-cache-autosize-split to 102 autotuning_test.py 287 INFO Set nsslapd-cache-autosize to 102 | |||
Passed | suites/config/autotuning_test.py::test_cache_autosize_invalid_values[invalid] | 0.01 | |
------------------------------ Captured log call ------------------------------- autotuning_test.py 281 INFO Set nsslapd-cache-autosize-split to invalid autotuning_test.py 287 INFO Set nsslapd-cache-autosize to invalid | |||
Passed | suites/config/config_test.py::test_maxbersize_repl | 17.04 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. topologies.py 106 INFO Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. topologies.py 139 INFO Creating replication topology. topologies.py 153 INFO Joining master master2 to master1 ... replica.py 1500 INFO SUCCESS: bootstrap to ldap://server.example.com:39002 completed replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 is was created replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 is was created replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39001 to ldap://server.example.com:39002 is working replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39002 to ldap://server.example.com:39001 is working replica.py 1569 INFO SUCCESS: joined master from ldap://server.example.com:39001 to ldap://server.example.com:39002 topologies.py 161 INFO Ensuring master master1 to master2 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 already exists topologies.py 161 INFO Ensuring master master2 to master1 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 already exists------------------------------ Captured log call ------------------------------- config_test.py 65 INFO Set nsslapd-maxbersize: 20K to master2 config_test.py 70 INFO Try to add attribute with a big value to master2 - expect to FAIL config_test.py 77 INFO Try to add attribute with a big value to master1 - expect to PASS config_test.py 82 INFO Check if a big value was successfully added to master1 config_test.py 86 INFO Check if a big value was successfully replicated to master2 | |||
Passed | suites/config/config_test.py::test_config_listen_backport_size | 0.02 | |
No log output captured. | |||
Passed | suites/config/config_test.py::test_config_deadlock_policy | 0.02 | |
No log output captured. | |||
Passed | suites/config/config_test.py::test_defaultnamingcontext | 0.93 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.------------------------------ Captured log call ------------------------------- config_test.py 205 INFO Check the attribute nsslapd-defaultnamingcontext is present in cn=config config_test.py 208 INFO Delete nsslapd-defaultnamingcontext attribute config_test.py 215 INFO modify nsslapd-defaultnamingcontext with new suffix config_test.py 218 INFO Add new invalid value at runtime to nsslapd-defaultnamingcontext config_test.py 222 INFO Modify nsslapd-defaultnamingcontext with blank value config_test.py 225 INFO Add new suffix when nsslapd-defaultnamingcontext is empty config_test.py 229 INFO Check the value of the nsslapd-defaultnamingcontext automatically have the new suffix config_test.py 232 INFO Adding new suffix when nsslapd-defaultnamingcontext is not empty config_test.py 236 INFO Check the value of the nsslapd-defaultnamingcontext has not changed config_test.py 239 INFO Remove the newly added suffix and check the values of the attribute is not changed config_test.py 243 INFO Remove all the suffix at the end | |||
Passed | suites/config/config_test.py::test_allow_add_delete_config_attributes | 3.22 | |
------------------------------ Captured log call ------------------------------- config_test.py 293 INFO Add a new valid attribute at runtime to cn=config config_test.py 297 INFO Delete nsslapd-listenhost to restore the default value config_test.py 302 INFO Add new invalid attribute at runtime to cn=config config_test.py 306 INFO Make sure the invalid attribute is not added | |||
Passed | suites/config/config_test.py::test_ignore_virtual_attrs | 0.32 | |
------------------------------ Captured log call ------------------------------- config_test.py 339 INFO Check the attribute nsslapd-ignore-virtual-attrs is present in cn=config config_test.py 342 INFO Check the default value of attribute nsslapd-ignore-virtual-attrs should be OFF config_test.py 345 INFO Set the valid values i.e. on/ON and off/OFF for nsslapd-ignore-virtual-attrs config_test.py 350 INFO Set invalid value for attribute nsslapd-ignore-virtual-attrs config_test.py 361 INFO Add cosPointer, cosTemplate and test entry to default suffix, where virtual attribute is postal code config_test.py 374 INFO Test if virtual attribute i.e. postal code shown in test entry while nsslapd-ignore-virtual-attrs: off config_test.py 377 INFO Set nsslapd-ignore-virtual-attrs=on config_test.py 380 INFO 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 | 13.57 | |
------------------------------ Captured log call ------------------------------- config_test.py 408 INFO Check the attribute nsslapd-ndn-cache-enabled is present in cn=config config_test.py 411 INFO Check the attribute nsslapd-ndn-cache-enabled has the default value set as ON config_test.py 414 INFO Check the attribute nsslapd-ndn-cache-max-size is present in cn=config config_test.py 420 INFO Ticket#49593 : NDN cache stats should be under the global stats - Implemented in 1.4 config_test.py 421 INFO Fetch the monitor value according to the ds version config_test.py 427 INFO Check the backend monitor output for Normalized DN cache statistics, while nsslapd-ndn-cache-enabled is off config_test.py 433 INFO Check the backend monitor output for Normalized DN cache statistics, while nsslapd-ndn-cache-enabled is on config_test.py 439 INFO Set invalid value for nsslapd-ndn-cache-enabled config_test.py 443 INFO Set invalid value for nsslapd-ndn-cache-max-size | |||
Passed | suites/config/regression_test.py::test_maxbersize_repl | 6.85 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.------------------------------ Captured log call ------------------------------- regression_test.py 41 INFO Set nsslapd-errorlog-maxlogsize before nsslapd-errorlog-logmaxdiskspace regression_test.py 45 INFO Assert no init_dse_file errors in the error log regression_test.py 49 INFO Set nsslapd-errorlog-maxlogsize after nsslapd-errorlog-logmaxdiskspace regression_test.py 53 INFO Assert no init_dse_file errors in the error log | |||
Passed | suites/config/removed_config_49298_test.py::test_restore_config | 3.35 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.------------------------------ Captured log call ------------------------------- removed_config_49298_test.py 41 INFO /etc/dirsrv/slapd-standalone1 | |||
Passed | suites/config/removed_config_49298_test.py::test_removed_config | 2.33 | |
----------------------------- Captured stderr call ----------------------------- Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. ------------------------------ Captured log call ------------------------------- removed_config_49298_test.py 70 INFO /etc/dirsrv/slapd-standalone1 | |||
Passed | suites/cos/indirect_cos_test.py::test_indirect_cos | 1.33 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. indirect_cos_test.py 106 INFO Add custom schema... indirect_cos_test.py 119 INFO Add test user... indirect_cos_test.py 136 INFO Setup indirect COS...------------------------------ Captured log call ------------------------------- indirect_cos_test.py 156 INFO Checking user... indirect_cos_test.py 55 INFO Create password policy for subtree ou=people,dc=example,dc=com indirect_cos_test.py 163 INFO Checking user... | |||
Passed | suites/ds_logs/ds_logs_test.py::test_check_default | 0.00 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.------------------------------ Captured log call ------------------------------- ds_logs_test.py 68 DEBUG on | |||
Passed | suites/ds_logs/ds_logs_test.py::test_plugin_set_invalid | 0.21 | |
------------------------------ Captured log call ------------------------------- ds_logs_test.py 86 INFO test_plugin_set_invalid - Expect to fail with junk value | |||
Passed | suites/ds_logs/ds_logs_test.py::test_log_plugin_on | 4.36 | |
------------------------------ Captured log call ------------------------------- ds_logs_test.py 112 INFO Bug 1273549 - Check access logs for millisecond, when attribute is ON ds_logs_test.py 113 INFO perform any ldap operation, which will trigger the logs ds_logs_test.py 27 INFO Adding 10 users ds_logs_test.py 117 INFO Restart the server to flush the logs ds_logs_test.py 120 INFO parse the access logs | |||
Passed | suites/ds_logs/ds_logs_test.py::test_log_plugin_off | 12.13 | |
------------------------------ Captured log call ------------------------------- ds_logs_test.py 151 INFO Bug 1273549 - Check access logs for missing millisecond, when attribute is OFF ds_logs_test.py 153 INFO test_log_plugin_off - set the configuration attribute to OFF ds_logs_test.py 156 INFO Restart the server to flush the logs ds_logs_test.py 159 INFO test_log_plugin_off - delete the previous access logs ds_logs_test.py 165 INFO Restart the server to flush the logs ds_logs_test.py 168 INFO check access log that microseconds are not present | |||
Passed | suites/ds_logs/regression_test.py::test_default_loglevel_stripped[24576] | 0.01 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO 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.01 | |
No log output captured. | |||
Passed | suites/ds_logs/regression_test.py::test_default_loglevel_stripped[16385] | 0.12 | |
No log output captured. | |||
Passed | suites/ds_logs/regression_test.py::test_dse_config_loglevel_error | 4.76 | |
No log output captured. | |||
Passed | suites/ds_tools/logpipe_test.py::test_user_permissions | 0.06 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. logpipe_test.py 30 INFO Add system test user - dirsrv_testuser------------------------------ Captured log call ------------------------------- logpipe_test.py 66 INFO Try to create a logpipe in the log directory with "-u" option specifying the user | |||
Passed | suites/ds_tools/replcheck_test.py::test_check_ruv | 22.03 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. topologies.py 106 INFO Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. topologies.py 139 INFO Creating replication topology. topologies.py 153 INFO Joining master master2 to master1 ... replica.py 1500 INFO SUCCESS: bootstrap to ldap://server.example.com:39002 completed replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 is was created replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 is was created replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39001 to ldap://server.example.com:39002 is working replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39002 to ldap://server.example.com:39001 is working replica.py 1569 INFO SUCCESS: joined master from ldap://server.example.com:39001 to ldap://server.example.com:39002 topologies.py 161 INFO Ensuring master master1 to master2 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 already exists topologies.py 161 INFO Ensuring master master2 to master1 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 already exists replica.py 1912 INFO SUCCESS: Replication from ldaps://server.example.com:63701 to ldaps://server.example.com:63702 is working replcheck_test.py 99 INFO Export LDAPTLS_CACERTDIR env variable for ds-replcheck replica.py 1912 INFO SUCCESS: Replication from ldaps://server.example.com:63701 to ldaps://server.example.com:63702 is working replica.py 1912 INFO SUCCESS: Replication from ldaps://server.example.com:63702 to ldaps://server.example.com:63701 is working----------------------------- Captured stdout call ----------------------------- OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ----------------------------- Captured stderr call ----------------------------- [23/Sep/2018:19:31:54.300934482 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:31:54.304871091 -0400] - NOTICE - ldbm_back_start - found 8166872k physical memory [23/Sep/2018:19:31:54.305530199 -0400] - NOTICE - ldbm_back_start - found 7629776k available [23/Sep/2018:19:31:54.306019227 -0400] - NOTICE - ldbm_back_start - cache autosizing: db cache: 204171k [23/Sep/2018:19:31:54.306448453 -0400] - NOTICE - ldbm_back_start - cache autosizing: userRoot entry cache (1 total): 589824k [23/Sep/2018:19:31:54.307394923 -0400] - NOTICE - ldbm_back_start - cache autosizing: userRoot dn cache (1 total): 65536k [23/Sep/2018:19:31:54.308265877 -0400] - NOTICE - ldbm_back_start - total cache size: 838346178 B; ldiffile: /tmp/export_master1.ldif [23/Sep/2018:19:31:54.316528969 -0400] - INFO - ldbm_back_ldbm2ldif - export userRoot: Processed 15 entries (100%). [23/Sep/2018:19:31:54.420536840 -0400] - INFO - dblayer_pre_close - Waiting for 4 database threads to stop [23/Sep/2018:19:31:56.813853567 -0400] - INFO - dblayer_pre_close - All database threads now stopped [23/Sep/2018:19:32:00.837405601 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:32:00.841585541 -0400] - NOTICE - ldbm_back_start - found 8166872k physical memory [23/Sep/2018:19:32:00.842206244 -0400] - NOTICE - ldbm_back_start - found 7632224k available [23/Sep/2018:19:32:00.842704622 -0400] - NOTICE - ldbm_back_start - cache autosizing: db cache: 204171k [23/Sep/2018:19:32:00.843139436 -0400] - NOTICE - ldbm_back_start - cache autosizing: userRoot entry cache (1 total): 589824k [23/Sep/2018:19:32:00.843958076 -0400] - NOTICE - ldbm_back_start - cache autosizing: userRoot dn cache (1 total): 65536k [23/Sep/2018:19:32:00.844646951 -0400] - NOTICE - ldbm_back_start - total cache size: 838346178 B; ldiffile: /tmp/export_master2.ldif [23/Sep/2018:19:32:00.852999089 -0400] - INFO - ldbm_back_ldbm2ldif - export userRoot: Processed 15 entries (100%). [23/Sep/2018:19:32:00.956757157 -0400] - INFO - dblayer_pre_close - Waiting for 4 database threads to stop [23/Sep/2018:19:32:03.349538961 -0400] - INFO - dblayer_pre_close - All database threads now stopped | |||
Passed | suites/ds_tools/replcheck_test.py::test_missing_entries | 17.15 | |
----------------------------- Captured stdout call ----------------------------- OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ----------------------------- Captured stderr call ----------------------------- [23/Sep/2018:19:32:16.462269851 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:32:16.466088511 -0400] - NOTICE - ldbm_back_start - found 8166872k physical memory [23/Sep/2018:19:32:16.466813041 -0400] - NOTICE - ldbm_back_start - found 7629312k available [23/Sep/2018:19:32:16.467285047 -0400] - NOTICE - ldbm_back_start - cache autosizing: db cache: 204171k [23/Sep/2018:19:32:16.467866858 -0400] - NOTICE - ldbm_back_start - cache autosizing: userRoot entry cache (1 total): 589824k [23/Sep/2018:19:32:16.468750687 -0400] - NOTICE - ldbm_back_start - cache autosizing: userRoot dn cache (1 total): 65536k [23/Sep/2018:19:32:16.469599310 -0400] - NOTICE - ldbm_back_start - total cache size: 838346178 B; ldiffile: /tmp/export_master1.ldif [23/Sep/2018:19:32:16.478061270 -0400] - INFO - ldbm_back_ldbm2ldif - export userRoot: Processed 17 entries (100%). [23/Sep/2018:19:32:16.581257746 -0400] - INFO - dblayer_pre_close - Waiting for 4 database threads to stop [23/Sep/2018:19:32:18.975899867 -0400] - INFO - dblayer_pre_close - All database threads now stopped [23/Sep/2018:19:32:22.986076751 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:32:22.989930066 -0400] - NOTICE - ldbm_back_start - found 8166872k physical memory [23/Sep/2018:19:32:22.990634929 -0400] - NOTICE - ldbm_back_start - found 7632308k available [23/Sep/2018:19:32:22.991122562 -0400] - NOTICE - ldbm_back_start - cache autosizing: db cache: 204171k [23/Sep/2018:19:32:22.991563523 -0400] - NOTICE - ldbm_back_start - cache autosizing: userRoot entry cache (1 total): 589824k [23/Sep/2018:19:32:22.992379836 -0400] - NOTICE - ldbm_back_start - cache autosizing: userRoot dn cache (1 total): 65536k [23/Sep/2018:19:32:22.993333579 -0400] - NOTICE - ldbm_back_start - total cache size: 838346178 B; ldiffile: /tmp/export_master2.ldif [23/Sep/2018:19:32:23.002369695 -0400] - INFO - ldbm_back_ldbm2ldif - export userRoot: Processed 17 entries (100%). [23/Sep/2018:19:32:23.106163564 -0400] - INFO - dblayer_pre_close - Waiting for 4 database threads to stop [23/Sep/2018:19:32:25.499600344 -0400] - INFO - dblayer_pre_close - All database threads now stopped | |||
Passed | suites/ds_tools/replcheck_test.py::test_tombstones | 17.05 | |
----------------------------- Captured stdout call ----------------------------- OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ----------------------------- Captured stderr call ----------------------------- [23/Sep/2018:19:32:34.195679455 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:32:34.199573507 -0400] - NOTICE - ldbm_back_start - found 8166872k physical memory [23/Sep/2018:19:32:34.200311505 -0400] - NOTICE - ldbm_back_start - found 7627180k available [23/Sep/2018:19:32:34.200928064 -0400] - NOTICE - ldbm_back_start - cache autosizing: db cache: 204171k [23/Sep/2018:19:32:34.201469453 -0400] - NOTICE - ldbm_back_start - cache autosizing: userRoot entry cache (1 total): 589824k [23/Sep/2018:19:32:34.202290185 -0400] - NOTICE - ldbm_back_start - cache autosizing: userRoot dn cache (1 total): 65536k [23/Sep/2018:19:32:34.203133037 -0400] - NOTICE - ldbm_back_start - total cache size: 838346178 B; ldiffile: /tmp/export_master1.ldif [23/Sep/2018:19:32:34.212054539 -0400] - INFO - ldbm_back_ldbm2ldif - export userRoot: Processed 20 entries (100%). [23/Sep/2018:19:32:34.315503823 -0400] - INFO - dblayer_pre_close - Waiting for 4 database threads to stop [23/Sep/2018:19:32:36.709100440 -0400] - INFO - dblayer_pre_close - All database threads now stopped [23/Sep/2018:19:32:40.151372740 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:32:40.155271676 -0400] - NOTICE - ldbm_back_start - found 8166872k physical memory [23/Sep/2018:19:32:40.155975822 -0400] - NOTICE - ldbm_back_start - found 7632616k available [23/Sep/2018:19:32:40.156421748 -0400] - NOTICE - ldbm_back_start - cache autosizing: db cache: 204171k [23/Sep/2018:19:32:40.156862079 -0400] - NOTICE - ldbm_back_start - cache autosizing: userRoot entry cache (1 total): 589824k [23/Sep/2018:19:32:40.157597137 -0400] - NOTICE - ldbm_back_start - cache autosizing: userRoot dn cache (1 total): 65536k [23/Sep/2018:19:32:40.158294873 -0400] - NOTICE - ldbm_back_start - total cache size: 838346178 B; ldiffile: /tmp/export_master2.ldif [23/Sep/2018:19:32:40.167183920 -0400] - INFO - ldbm_back_ldbm2ldif - export userRoot: Processed 20 entries (100%). [23/Sep/2018:19:32:40.270467177 -0400] - INFO - dblayer_pre_close - Waiting for 4 database threads to stop [23/Sep/2018:19:32:42.664693292 -0400] - INFO - dblayer_pre_close - All database threads now stopped | |||
Passed | suites/ds_tools/replcheck_test.py::test_conflict_entries | 24.39 | |
----------------------------- Captured stdout call ----------------------------- OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ----------------------------- Captured stderr call ----------------------------- [23/Sep/2018:19:32:58.887157816 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:32:58.891167288 -0400] - NOTICE - ldbm_back_start - found 8166872k physical memory [23/Sep/2018:19:32:58.891991979 -0400] - NOTICE - ldbm_back_start - found 7626236k available [23/Sep/2018:19:32:58.892615185 -0400] - NOTICE - ldbm_back_start - cache autosizing: db cache: 204171k [23/Sep/2018:19:32:58.893058500 -0400] - NOTICE - ldbm_back_start - cache autosizing: userRoot entry cache (1 total): 589824k [23/Sep/2018:19:32:58.893884098 -0400] - NOTICE - ldbm_back_start - cache autosizing: userRoot dn cache (1 total): 65536k [23/Sep/2018:19:32:58.894649366 -0400] - NOTICE - ldbm_back_start - total cache size: 838346178 B; ldiffile: /tmp/export_master1.ldif [23/Sep/2018:19:32:58.903573244 -0400] - INFO - ldbm_back_ldbm2ldif - export userRoot: Processed 25 entries (100%). [23/Sep/2018:19:32:59.008090385 -0400] - INFO - dblayer_pre_close - Waiting for 4 database threads to stop [23/Sep/2018:19:33:01.401145919 -0400] - INFO - dblayer_pre_close - All database threads now stopped [23/Sep/2018:19:33:04.806911580 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:33:04.810902095 -0400] - NOTICE - ldbm_back_start - found 8166872k physical memory [23/Sep/2018:19:33:04.811456272 -0400] - NOTICE - ldbm_back_start - found 7632292k available [23/Sep/2018:19:33:04.812018765 -0400] - NOTICE - ldbm_back_start - cache autosizing: db cache: 204171k [23/Sep/2018:19:33:04.812499330 -0400] - NOTICE - ldbm_back_start - cache autosizing: userRoot entry cache (1 total): 589824k [23/Sep/2018:19:33:04.813332511 -0400] - NOTICE - ldbm_back_start - cache autosizing: userRoot dn cache (1 total): 65536k [23/Sep/2018:19:33:04.814114707 -0400] - NOTICE - ldbm_back_start - total cache size: 838346178 B; ldiffile: /tmp/export_master2.ldif [23/Sep/2018:19:33:04.823023290 -0400] - INFO - ldbm_back_ldbm2ldif - export userRoot: Processed 25 entries (100%). [23/Sep/2018:19:33:04.926283232 -0400] - INFO - dblayer_pre_close - Waiting for 4 database threads to stop [23/Sep/2018:19:33:07.321659018 -0400] - INFO - dblayer_pre_close - All database threads now stopped | |||
Passed | suites/dynamic_plugins/dynamic_plugins_test.py::test_acceptance | 39.11 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. topologies.py 106 INFO Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. topologies.py 139 INFO Creating replication topology. topologies.py 153 INFO Joining master master2 to master1 ... replica.py 1500 INFO SUCCESS: bootstrap to ldap://server.example.com:39002 completed replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 is was created replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 is was created replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39001 to ldap://server.example.com:39002 is working replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39002 to ldap://server.example.com:39001 is working replica.py 1569 INFO SUCCESS: joined master from ldap://server.example.com:39001 to ldap://server.example.com:39002 topologies.py 161 INFO Ensuring master master1 to master2 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 already exists topologies.py 161 INFO Ensuring master master2 to master1 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 already exists------------------------------ Captured log call ------------------------------- replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39001 to ldap://server.example.com:39002 is working replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39002 to ldap://server.example.com:39001 is working | |||
Passed | suites/dynamic_plugins/dynamic_plugins_test.py::test_memory_corruption | 36.20 | |
------------------------------ Captured log call ------------------------------- replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39001 to ldap://server.example.com:39002 is working replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39002 to ldap://server.example.com:39001 is working | |||
Passed | suites/dynamic_plugins/dynamic_plugins_test.py::test_stress | 310.87 | |
------------------------------ Captured log call ------------------------------- replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39001 to ldap://server.example.com:39002 is working replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39002 to ldap://server.example.com:39001 is working | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(&(uid=uid1)(sn=last1)(givenname=first1))-1] | 0.00 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.------------------------------ Captured log call ------------------------------- complex_filters_test.py 119 INFO 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 ------------------------------- complex_filters_test.py 119 INFO 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 ------------------------------- complex_filters_test.py 119 INFO 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 ------------------------------- complex_filters_test.py 119 INFO 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 ------------------------------- complex_filters_test.py 119 INFO 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 ------------------------------- complex_filters_test.py 119 INFO Testing filter "(&(uid=uid5)(&(&(sn=*))(&(givenname=*))))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(&(objectclass=*)(uid=*)(sn=last*))-5] | 0.00 | |
------------------------------ Captured log call ------------------------------- complex_filters_test.py 119 INFO 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 ------------------------------- complex_filters_test.py 119 INFO 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 ------------------------------- complex_filters_test.py 119 INFO 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 ------------------------------- complex_filters_test.py 119 INFO 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 ------------------------------- complex_filters_test.py 119 INFO 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 ------------------------------- complex_filters_test.py 119 INFO 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 ------------------------------- complex_filters_test.py 119 INFO 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 ------------------------------- complex_filters_test.py 119 INFO 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 ------------------------------- complex_filters_test.py 119 INFO 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 ------------------------------- complex_filters_test.py 119 INFO Testing filter "(&(!(cn=NULL))(uid=uid1))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(&(uid=*)(&(!(uid=1))(!(givenname=first1))))-4] | 0.00 | |
------------------------------ Captured log call ------------------------------- complex_filters_test.py 119 INFO 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 ------------------------------- complex_filters_test.py 119 INFO 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.00 | |
------------------------------ Captured log call ------------------------------- complex_filters_test.py 119 INFO 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 ------------------------------- complex_filters_test.py 119 INFO Testing filter "(&(|(uid=uid1)(sn=last2))(givenname=first1))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(|(&(uid=uid1)(!(uid=NULL)))(sn=last2))-2] | 0.00 | |
------------------------------ Captured log call ------------------------------- complex_filters_test.py 119 INFO 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 ------------------------------- complex_filters_test.py 119 INFO 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 ------------------------------- complex_filters_test.py 119 INFO 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 ------------------------------- complex_filters_test.py 119 INFO 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 ------------------------------- complex_filters_test.py 119 INFO 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 ------------------------------- complex_filters_test.py 119 INFO 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 ------------------------------- complex_filters_test.py 119 INFO 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 ------------------------------- complex_filters_test.py 119 INFO Testing filter "(&(uid=uid1)(&(&(sn=last1))(&(givenname=NULL)(sn=*)))(|(sn=NULL)))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(&(uid=uid1)(&(&(sn=last*))(&(givenname=first*)))(&(sn=NULL)))-0] | 0.00 | |
------------------------------ Captured log call ------------------------------- complex_filters_test.py 119 INFO 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 ------------------------------- complex_filters_test.py 119 INFO 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 ------------------------------- complex_filters_test.py 119 INFO 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 ------------------------------- complex_filters_test.py 119 INFO Testing filter "(|(uid=NULL)(|(|(sn=NULL))(|(givenname=NULL))))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(|(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*)(uid=*))-5] | 0.00 | |
------------------------------ Captured log call ------------------------------- complex_filters_test.py 119 INFO 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 ------------------------------- complex_filters_test.py 119 INFO Testing filter "(uid>=uid3)"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(&(uid=*)(uid>=uid3))-3] | 0.00 | |
------------------------------ Captured log call ------------------------------- complex_filters_test.py 119 INFO Testing filter "(&(uid=*)(uid>=uid3))"... | |||
Passed | suites/filter/complex_filters_test.py::test_filters[(|(uid>=uid3)(uid<=uid5))-5] | 0.00 | |
------------------------------ Captured log call ------------------------------- complex_filters_test.py 119 INFO 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 ------------------------------- complex_filters_test.py 119 INFO 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 ------------------------------- complex_filters_test.py 119 INFO Testing filter "(|(&(uid>=uid3)(uid<=uid5))(uid=*))"... | |||
Passed | suites/filter/filter_logic_test.py::test_eq | 0.00 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. | |||
Passed | suites/filter/filter_logic_test.py::test_sub | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_logic_test.py::test_not_eq | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_logic_test.py::test_ranges | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_logic_test.py::test_and_eq | 0.00 | |
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.00 | |
No log output captured. | |||
Passed | suites/filter/filter_logic_test.py::test_or_eq | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_logic_test.py::test_and_not_eq | 0.00 | |
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.00 | |
No log output captured. | |||
Passed | suites/filter/filter_logic_test.py::test_or_range | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_logic_test.py::test_and_and_eq | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_logic_test.py::test_or_or_eq | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_logic_test.py::test_and_or_eq | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_logic_test.py::test_or_and_eq | 0.00 | |
No log output captured. | |||
Passed | suites/filter/filter_test.py::test_filter_escaped | 0.06 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.------------------------------ Captured log call ------------------------------- filter_test.py 40 INFO Running test_filter_escaped... filter_test.py 76 INFO test_filter_escaped: PASSED | |||
Passed | suites/filter/filter_test.py::test_filter_search_original_attrs | 0.20 | |
------------------------------ Captured log call ------------------------------- filter_test.py 93 INFO Running test_filter_search_original_attrs... filter_test.py 106 INFO test_filter_search_original_attrs: PASSED | |||
Passed | suites/filter/filter_test.py::test_filter_scope_one | 0.00 | |
------------------------------ Captured log call ------------------------------- filter_test.py 126 INFO Search user using ldapsearch with scope one filter_test.py 128 INFO [dn: cn=Directory Administrators,dc=example,dc=com cn: Directory Administrators ] filter_test.py 130 INFO Search should only have one entry | |||
Passed | suites/filter/filter_test.py::test_filter_with_attribute_subtype | 0.36 | |
------------------------------ Captured log call ------------------------------- filter_test.py 155 INFO Bind as cn=Directory Manager filter_test.py 162 INFO ######################### ADD ###################### filter_test.py 185 INFO 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 filter_test.py 188 INFO 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 filter_test.py 191 INFO ######################### SEARCH ###################### filter_test.py 195 INFO Try to search with filter (&(sn=test_entry en only)(!(cn=test_entry fr))) filter_test.py 199 INFO Found cn=test_entry en only,dc=example,dc=com filter_test.py 203 INFO Try to search with filter (&(sn=test_entry en only)(!(cn;fr=test_entry fr))) filter_test.py 207 INFO Found cn=test_entry en only,dc=example,dc=com filter_test.py 211 INFO Try to search with filter (&(sn=test_entry en only)(!(cn;en=test_entry en))) filter_test.py 214 INFO Found none filter_test.py 216 INFO ######################### DELETE ###################### filter_test.py 218 INFO Try to delete cn=test_entry both, dc=example,dc=com filter_test.py 221 INFO Try to delete cn=test_entry en only, dc=example,dc=com filter_test.py 224 INFO Testcase PASSED | |||
Passed | suites/filter/rfc3673_all_oper_attrs_test.py::test_supported_features | 0.00 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO 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.10 | |
------------------------------ Captured log call ------------------------------- rfc3673_all_oper_attrs_test.py 141 INFO bound as: cn=Directory Manager | |||
Passed | suites/filter/rfc3673_all_oper_attrs_test.py::test_search_basic[-False-oper_attr_list0-*] | 0.10 | |
------------------------------ Captured log call ------------------------------- rfc3673_all_oper_attrs_test.py 141 INFO bound as: cn=Directory Manager | |||
Passed | suites/filter/rfc3673_all_oper_attrs_test.py::test_search_basic[-False-oper_attr_list0-objectClass] | 0.10 | |
------------------------------ Captured log call ------------------------------- rfc3673_all_oper_attrs_test.py 141 INFO 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 ------------------------------- rfc3673_all_oper_attrs_test.py 138 INFO 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 ------------------------------- rfc3673_all_oper_attrs_test.py 138 INFO 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.03 | |
------------------------------ Captured log call ------------------------------- rfc3673_all_oper_attrs_test.py 138 INFO 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.10 | |
------------------------------ Captured log call ------------------------------- rfc3673_all_oper_attrs_test.py 141 INFO 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.10 | |
------------------------------ Captured log call ------------------------------- rfc3673_all_oper_attrs_test.py 141 INFO 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.10 | |
------------------------------ Captured log call ------------------------------- rfc3673_all_oper_attrs_test.py 141 INFO 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 ------------------------------- rfc3673_all_oper_attrs_test.py 138 INFO 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.03 | |
------------------------------ Captured log call ------------------------------- rfc3673_all_oper_attrs_test.py 138 INFO 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.03 | |
------------------------------ Captured log call ------------------------------- rfc3673_all_oper_attrs_test.py 138 INFO bound as: uid=all_attrs_test,ou=people,dc=example,dc=com | |||
Passed | suites/filter/rfc3673_all_oper_attrs_test.py::test_search_basic[uid=all_attrs_test,ou=people,dc=example,dc=com-False-oper_attr_list4] | 0.10 | |
------------------------------ Captured log call ------------------------------- rfc3673_all_oper_attrs_test.py 141 INFO 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.10 | |
------------------------------ Captured log call ------------------------------- rfc3673_all_oper_attrs_test.py 141 INFO 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.10 | |
------------------------------ Captured log call ------------------------------- rfc3673_all_oper_attrs_test.py 141 INFO bound as: cn=Directory Manager | |||
Passed | suites/filter/rfc3673_all_oper_attrs_test.py::test_search_basic[uid=all_attrs_test,ou=people,dc=example,dc=com-True-oper_attr_list5] | 0.03 | |
------------------------------ Captured log call ------------------------------- rfc3673_all_oper_attrs_test.py 138 INFO 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-*] | 1.03 | |
------------------------------ Captured log call ------------------------------- rfc3673_all_oper_attrs_test.py 138 INFO 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.03 | |
------------------------------ Captured log call ------------------------------- rfc3673_all_oper_attrs_test.py 138 INFO 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 ------------------------------- rfc3673_all_oper_attrs_test.py 141 INFO bound as: cn=Directory Manager | |||
Passed | suites/filter/rfc3673_all_oper_attrs_test.py::test_search_basic[cn=config-False-oper_attr_list6-*] | 0.11 | |
------------------------------ Captured log call ------------------------------- rfc3673_all_oper_attrs_test.py 141 INFO 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.10 | |
------------------------------ Captured log call ------------------------------- rfc3673_all_oper_attrs_test.py 141 INFO bound as: cn=Directory Manager | |||
Passed | suites/get_effective_rights/acceptance_test.py::test_group_aci_entry_exists | 0.01 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. acceptance_test.py 28 INFO Adding user testuser------------------------------ Captured log call ------------------------------- acceptance_test.py 55 INFO Adding group group1 acceptance_test.py 68 INFO Add an ACI granting add access to a user matching the groupdn acceptance_test.py 77 INFO dn: uid=testuser,dc=example,dc=com acceptance_test.py 79 INFO ######## entryLevelRights: b'vadn' | |||
Passed | suites/get_effective_rights/acceptance_test.py::test_group_aci_template_entry | 0.00 | |
------------------------------ Captured log call ------------------------------- acceptance_test.py 103 INFO Add an ACI granting add access to a user matching the userdn acceptance_test.py 113 INFO dn: cn=template_person_objectclass,dc=example,dc=com acceptance_test.py 115 INFO ######## entryLevelRights: b'vadn' acceptance_test.py 118 INFO dn: cn=template_groupofnames_objectclass,dc=example,dc=com acceptance_test.py 120 INFO ######## entryLevelRights: b'v' | |||
Passed | suites/gssapi_repl/gssapi_repl_test.py::test_gssapi_repl | 0.00 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. topologies.py 106 INFO Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. topologies.py 139 INFO Creating replication topology. topologies.py 153 INFO Joining master master2 to master1 ... replica.py 1500 INFO SUCCESS: bootstrap to ldap://server.example.com:39002 completed replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 is was created replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 is was created replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39001 to ldap://server.example.com:39002 is working replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39002 to ldap://server.example.com:39001 is working replica.py 1569 INFO SUCCESS: joined master from ldap://server.example.com:39001 to ldap://server.example.com:39002 topologies.py 161 INFO Ensuring master master1 to master2 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 already exists topologies.py 161 INFO Ensuring master master2 to master1 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 already exists | |||
Passed | suites/import/regression_test.py::test_import_be_default | 5.66 | |
---------------------------- Captured stdout setup ----------------------------- Instance slapd-standalone1 removed. OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.----------------------------- Captured stdout call ----------------------------- OK group dirsrv exists OK user dirsrv exists ----------------------------- Captured stderr call ----------------------------- [23/Sep/2018:19:41:26.862020303 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:41:26.866136380 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:41:26.870311618 -0400] - INFO - dblayer_instance_start - Import is running with nsslapd-db-private-import-mem on; No other process is allowed to access the database [23/Sep/2018:19:41:26.871131234 -0400] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7809282048, process usage 21204992 [23/Sep/2018:19:41:26.871753074 -0400] - INFO - check_and_set_import_cache - Import allocates 3050500KB import cache. [23/Sep/2018:19:41:27.032853540 -0400] - INFO - import_main_offline - import default: Beginning import job... [23/Sep/2018:19:41:27.033586602 -0400] - INFO - import_main_offline - import default: Index buffering enabled with bucket size 100 [23/Sep/2018:19:41:27.234589635 -0400] - INFO - import_producer - import default: Processing file "/var/lib/dirsrv/slapd-standalone1/ldif/default.ldif" [23/Sep/2018:19:41:27.236168102 -0400] - INFO - import_producer - import default: Finished scanning file "/var/lib/dirsrv/slapd-standalone1/ldif/default.ldif" (13 entries) [23/Sep/2018:19:41:27.735930356 -0400] - INFO - import_monitor_threads - import default: Workers finished; cleaning up... [23/Sep/2018:19:41:27.937373577 -0400] - INFO - import_monitor_threads - import default: Workers cleaned up. [23/Sep/2018:19:41:27.938283457 -0400] - INFO - import_main_offline - import default: Cleaning up producer thread... [23/Sep/2018:19:41:27.938853579 -0400] - INFO - import_main_offline - import default: Indexing complete. Post-processing... [23/Sep/2018:19:41:27.939370086 -0400] - INFO - import_main_offline - import default: Generating numsubordinates (this may take several minutes to complete)... [23/Sep/2018:19:41:27.941946386 -0400] - INFO - import_main_offline - import default: Generating numSubordinates complete. [23/Sep/2018:19:41:27.942641807 -0400] - INFO - ldbm_get_nonleaf_ids - import default: Gathering ancestorid non-leaf IDs... [23/Sep/2018:19:41:27.943148384 -0400] - INFO - ldbm_get_nonleaf_ids - import default: Finished gathering ancestorid non-leaf IDs. [23/Sep/2018:19:41:27.944565975 -0400] - INFO - ldbm_ancestorid_new_idl_create_index - import default: Creating ancestorid index (new idl)... [23/Sep/2018:19:41:27.945115174 -0400] - INFO - ldbm_ancestorid_new_idl_create_index - import default: Created ancestorid index (new idl). [23/Sep/2018:19:41:27.945706974 -0400] - INFO - import_main_offline - import default: Flushing caches... [23/Sep/2018:19:41:27.946301594 -0400] - INFO - import_main_offline - import default: Closing files... [23/Sep/2018:19:41:27.976535652 -0400] - INFO - dblayer_pre_close - All database threads now stopped [23/Sep/2018:19:41:27.977387573 -0400] - INFO - import_main_offline - import default: Import complete. Processed 13 entries in 0 seconds. (0.00 entries/sec) ------------------------------ Captured log call ------------------------------- regression_test.py 51 INFO Adding suffix:dc=default,dc=com and backend: default... regression_test.py 56 INFO Create LDIF file and import it... regression_test.py 61 INFO Stopping the server and running offline import... regression_test.py 67 INFO Verifying entry count after import... regression_test.py 73 INFO Test PASSED | |||
Passed | suites/import/regression_test.py::test_del_suffix_import | 6.62 | |
----------------------------- Captured stdout call ----------------------------- OK group dirsrv exists OK user dirsrv exists ----------------------------- Captured stderr call ----------------------------- [23/Sep/2018:19:41:32.636630592 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:41:32.640831174 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:41:32.644712092 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:41:32.649641347 -0400] - INFO - dblayer_instance_start - Import is running with nsslapd-db-private-import-mem on; No other process is allowed to access the database [23/Sep/2018:19:41:32.650525018 -0400] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7808651264, process usage 22802432 [23/Sep/2018:19:41:32.651094400 -0400] - INFO - check_and_set_import_cache - Import allocates 3050254KB import cache. [23/Sep/2018:19:41:32.816933737 -0400] - INFO - import_main_offline - import importest1: Beginning import job... [23/Sep/2018:19:41:32.817730961 -0400] - INFO - import_main_offline - import importest1: Index buffering enabled with bucket size 100 [23/Sep/2018:19:41:33.019011828 -0400] - INFO - import_producer - import importest1: Processing file "/var/lib/dirsrv/slapd-standalone1/ldif/suffix_del1.ldif" [23/Sep/2018:19:41:33.021020913 -0400] - INFO - import_producer - import importest1: Finished scanning file "/var/lib/dirsrv/slapd-standalone1/ldif/suffix_del1.ldif" (0 entries) [23/Sep/2018:19:41:33.023040037 -0400] - INFO - import_monitor_threads - import importest1: Workers finished; cleaning up... [23/Sep/2018:19:41:33.223987749 -0400] - INFO - import_monitor_threads - import importest1: Workers cleaned up. [23/Sep/2018:19:41:33.224901758 -0400] - INFO - import_main_offline - import importest1: Cleaning up producer thread... [23/Sep/2018:19:41:33.225519478 -0400] - INFO - import_main_offline - import importest1: Indexing complete. Post-processing... [23/Sep/2018:19:41:33.226026992 -0400] - INFO - import_main_offline - import importest1: Generating numsubordinates (this may take several minutes to complete)... [23/Sep/2018:19:41:33.227403411 -0400] - INFO - import_main_offline - import importest1: Generating numSubordinates complete. [23/Sep/2018:19:41:33.228160349 -0400] - INFO - ldbm_get_nonleaf_ids - import importest1: Gathering ancestorid non-leaf IDs... [23/Sep/2018:19:41:33.228788859 -0400] - INFO - ldbm_get_nonleaf_ids - import importest1: Finished gathering ancestorid non-leaf IDs. [23/Sep/2018:19:41:33.230024148 -0400] - ERR - ldbm_ancestorid_new_idl_create_index - Nothing to do to build ancestorid index [23/Sep/2018:19:41:33.230513459 -0400] - INFO - ldbm_ancestorid_new_idl_create_index - import importest1: Created ancestorid index (new idl). [23/Sep/2018:19:41:33.230964733 -0400] - INFO - import_main_offline - import importest1: Flushing caches... [23/Sep/2018:19:41:33.231462947 -0400] - INFO - import_main_offline - import importest1: Closing files... [23/Sep/2018:19:41:33.244654963 -0400] - INFO - dblayer_pre_close - All database threads now stopped [23/Sep/2018:19:41:33.245530580 -0400] - INFO - import_main_offline - import importest1: Import complete. Processed 0 entries in 1 seconds. (0.00 entries/sec) ------------------------------ Captured log call ------------------------------- regression_test.py 90 INFO Adding suffix:dc=importest1,dc=com and backend: importest1 regression_test.py 94 INFO Create LDIF file and import it regression_test.py 100 INFO Stopping the server and running offline import regression_test.py 105 INFO Deleting suffix-dc=importest2,dc=com regression_test.py 108 INFO Adding the same database-importest1 after deleting it | |||
Passed | suites/import/regression_test.py::test_del_suffix_backend | 6.64 | |
------------------------------ Captured log call ------------------------------- regression_test.py 126 INFO Adding suffix:dc=importest2,dc=com and backend: importest2 regression_test.py 130 INFO Create LDIF file and import it tasks.py 398 INFO Import task import_09232018_194135 for file /var/lib/dirsrv/slapd-standalone1/ldif/suffix_del2.ldif completed successfully regression_test.py 138 INFO Deleting suffix-dc=importest2,dc=com regression_test.py 141 INFO Adding the same database-importest2 after deleting it regression_test.py 143 INFO Checking if server can be restarted after re-adding the same database | |||
Passed | suites/mapping_tree/referral_during_tot_init_test.py::test_referral_during_tot | 6.60 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. topologies.py 106 INFO Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. topologies.py 139 INFO Creating replication topology. topologies.py 153 INFO Joining master master2 to master1 ... replica.py 1500 INFO SUCCESS: bootstrap to ldap://server.example.com:39002 completed replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 is was created replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 is was created replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39001 to ldap://server.example.com:39002 is working replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39002 to ldap://server.example.com:39001 is working replica.py 1569 INFO SUCCESS: joined master from ldap://server.example.com:39001 to ldap://server.example.com:39002 topologies.py 161 INFO Ensuring master master1 to master2 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 already exists topologies.py 161 INFO Ensuring master master2 to master1 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 already exists----------------------------- Captured stdout call ----------------------------- OK group dirsrv exists OK user dirsrv exists ----------------------------- Captured stderr call ----------------------------- [23/Sep/2018:19:42:03.904717961 -0400] - INFO - slapd_exemode_ldif2db - Backend Instance: userRoot [23/Sep/2018:19:42:03.906893195 -0400] - INFO - ldbm_instance_config_cachememsize_set - force a minimal value 512000 [23/Sep/2018:19:42:03.911919196 -0400] - INFO - dblayer_instance_start - Import is running with nsslapd-db-private-import-mem on; No other process is allowed to access the database [23/Sep/2018:19:42:03.912774284 -0400] - INFO - check_and_set_import_cache - pagesize: 4096, available bytes 7791149056, process usage 20910080 [23/Sep/2018:19:42:03.913490582 -0400] - INFO - check_and_set_import_cache - Import allocates 3043417KB import cache. [23/Sep/2018:19:42:04.177210760 -0400] - INFO - import_main_offline - import userRoot: Beginning import job... [23/Sep/2018:19:42:04.178001168 -0400] - INFO - import_main_offline - import userRoot: Index buffering enabled with bucket size 100 [23/Sep/2018:19:42:04.378805564 -0400] - INFO - import_producer - import userRoot: Processing file "/var/lib/dirsrv/slapd-master1/ldif/ref_during_tot_import.ldif" [23/Sep/2018:19:42:05.741025066 -0400] - INFO - import_producer - import userRoot: Finished scanning file "/var/lib/dirsrv/slapd-master1/ldif/ref_during_tot_import.ldif" (10008 entries) [23/Sep/2018:19:42:06.082404574 -0400] - INFO - import_monitor_threads - import userRoot: Workers finished; cleaning up... [23/Sep/2018:19:42:06.283642967 -0400] - INFO - import_monitor_threads - import userRoot: Workers cleaned up. [23/Sep/2018:19:42:06.284398505 -0400] - INFO - import_main_offline - import userRoot: Cleaning up producer thread... [23/Sep/2018:19:42:06.285012364 -0400] - INFO - import_main_offline - import userRoot: Indexing complete. Post-processing... [23/Sep/2018:19:42:06.285497826 -0400] - INFO - import_main_offline - import userRoot: Generating numsubordinates (this may take several minutes to complete)... [23/Sep/2018:19:42:06.288480730 -0400] - INFO - import_main_offline - import userRoot: Generating numSubordinates complete. [23/Sep/2018:19:42:06.289224100 -0400] - INFO - ldbm_get_nonleaf_ids - import userRoot: Gathering ancestorid non-leaf IDs... [23/Sep/2018:19:42:06.289767220 -0400] - INFO - ldbm_get_nonleaf_ids - import userRoot: Finished gathering ancestorid non-leaf IDs. [23/Sep/2018:19:42:06.291142590 -0400] - INFO - ldbm_ancestorid_new_idl_create_index - import userRoot: Creating ancestorid index (new idl)... [23/Sep/2018:19:42:06.327860763 -0400] - INFO - ldbm_ancestorid_new_idl_create_index - import userRoot: Created ancestorid index (new idl). [23/Sep/2018:19:42:06.328570124 -0400] - INFO - import_main_offline - import userRoot: Flushing caches... [23/Sep/2018:19:42:06.329102525 -0400] - INFO - import_main_offline - import userRoot: Closing files... [23/Sep/2018:19:42:06.484924404 -0400] - INFO - dblayer_pre_close - All database threads now stopped [23/Sep/2018:19:42:06.486025490 -0400] - INFO - import_main_offline - import userRoot: Import complete. Processed 10008 entries in 2 seconds. (5004.00 entries/sec) | |||
Passed | suites/memberof_plugin/regression_test.py::test_memberof_with_repl | 96.10 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. topologies.py 106 INFO Instance with parameters {'ldap-port': 39101, 'ldap-secureport': 63801, 'server-id': 'hub1', 'suffix': 'dc=example,dc=com'} was created. topologies.py 106 INFO Instance with parameters {'ldap-port': 39201, 'ldap-secureport': 63901, 'server-id': 'consumer1', 'suffix': 'dc=example,dc=com'} was created. topologies.py 471 INFO Creating replication topology. replica.py 1500 INFO SUCCESS: bootstrap to ldap://server.example.com:39101 completed replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39101 is was created replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39001 to ldap://server.example.com:39101 is working replica.py 1627 INFO SUCCESS: joined consumer from ldap://server.example.com:39001 to ldap://server.example.com:39101 replica.py 1500 INFO SUCCESS: bootstrap to ldap://server.example.com:39201 completed replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39101 to ldap://server.example.com:39201 is was created replica.py 1684 INFO SUCCESS: joined consumer from ldap://server.example.com:39101 to ldap://server.example.com:39201 replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39001 to ldap://server.example.com:39201 is working------------------------------ Captured log call ------------------------------- regression_test.py 77 INFO update cn=101,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config to add nsDS5ReplicatedAttributeListTotal regression_test.py 77 INFO update cn=201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config to add nsDS5ReplicatedAttributeListTotal regression_test.py 439 INFO !!!!!!! uid=user_0,ou=People,dc=example,dc=com: memberof->b'cn=group10,ou=Groups,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! uid=user_0,ou=People,dc=example,dc=com: memberof->b'cn=group10,ou=Groups,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! uid=user_0,ou=People,dc=example,dc=com: memberof->b'cn=group10,ou=Groups,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! uid=user_0,ou=People,dc=example,dc=com: memberof->b'cn=group10,ou=Groups,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! uid=user_0,ou=People,dc=example,dc=com: memberof->b'cn=group10,ou=Groups,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! uid=user_0,ou=People,dc=example,dc=com: memberof->b'cn=group10,ou=Groups,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! uid=user_0,ou=People,dc=example,dc=com: memberof->b'cn=group10,ou=Groups,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! uid=user_0,ou=People,dc=example,dc=com: memberof->b'cn=group11,ou=Groups,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! uid=user_0,ou=People,dc=example,dc=com: memberof->b'cn=group10,ou=Groups,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! uid=user_0,ou=People,dc=example,dc=com: memberof->b'cn=group11,ou=Groups,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! uid=user_0,ou=People,dc=example,dc=com: memberof->b'cn=group10,ou=Groups,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! uid=user_0,ou=People,dc=example,dc=com: memberof->b'cn=group11,ou=Groups,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! cn=group10,ou=Groups,dc=example,dc=com: memberof->b'cn=group11,ou=Groups,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! cn=group10,ou=Groups,dc=example,dc=com: memberof->b'cn=group11,ou=Groups,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! cn=group10,ou=Groups,dc=example,dc=com: memberof->b'cn=group11,ou=Groups,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! uid=user_0,ou=People,dc=example,dc=com: memberof->b'cn=group10,ou=Groups,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! uid=user_0,ou=People,dc=example,dc=com: memberof->b'cn=group10,ou=Groups,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! uid=user_0,ou=People,dc=example,dc=com: memberof->b'cn=group10,ou=Groups,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! uid=user_0,ou=People,dc=example,dc=com: memberof->b'cn=group10,ou=Groups,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! uid=user_0,ou=People,dc=example,dc=com: memberof->b'cn=group10,ou=Groups,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! uid=user_0,ou=People,dc=example,dc=com: memberof->b'cn=group10,ou=Groups,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! uid=user_0,ou=People,dc=example,dc=com: memberof->b'cn=group10,ou=Groups,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! uid=user_0,ou=People,dc=example,dc=com: memberof->b'cn=group10,ou=Groups,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! uid=user_0,ou=People,dc=example,dc=com: memberof->b'cn=group10,ou=Groups,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! uid=user_0,ou=People,dc=example,dc=com: memberof->b'cn=group10,ou=Groups,dc=example,dc=com' | |||
Passed | suites/memberof_plugin/regression_test.py::test_scheme_violation_errors_logged | 3.90 | |
---------------------------- Captured stdout setup ----------------------------- Instance slapd-master1 removed. OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 39001, 'ldap-secureport': 63701, 'server-id': 'master1', 'suffix': 'dc=example,dc=com'} was created. topologies.py 106 INFO Instance with parameters {'ldap-port': 39002, 'ldap-secureport': 63702, 'server-id': 'master2', 'suffix': 'dc=example,dc=com'} was created. topologies.py 139 INFO Creating replication topology. topologies.py 153 INFO Joining master master2 to master1 ... replica.py 1500 INFO SUCCESS: bootstrap to ldap://server.example.com:39002 completed replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 is was created replica.py 1781 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 is was created replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39001 to ldap://server.example.com:39002 is working replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39002 to ldap://server.example.com:39001 is working replica.py 1569 INFO SUCCESS: joined master from ldap://server.example.com:39001 to ldap://server.example.com:39002 topologies.py 161 INFO Ensuring master master1 to master2 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39001 to ldap://server.example.com:39002 already exists topologies.py 161 INFO Ensuring master master2 to master1 ... replica.py 1754 INFO SUCCESS: Agreement from ldap://server.example.com:39002 to ldap://server.example.com:39001 already exists------------------------------ Captured log call ------------------------------- regression_test.py 318 INFO memberOf attr value - cn=group1,ou=Groups,dc=example,dc=com regression_test.py 321 INFO 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 | 54.05 | |
------------------------------ Captured log call ------------------------------- regression_test.py 353 INFO Configure memberof on M1 and M2 regression_test.py 364 INFO On M1, add 999 test entries allowing memberof regression_test.py 51 INFO Adding 999 users regression_test.py 367 INFO On M1, add a group with these 999 entries as members regression_test.py 375 INFO Adding the test group using async function regression_test.py 385 INFO Check the log messages for error regression_test.py 389 INFO Check that the replication is working fine both ways, M1 <-> M2 replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39001 to ldap://server.example.com:39002 is working replica.py 1912 INFO SUCCESS: Replication from ldap://server.example.com:39002 to ldap://server.example.com:39001 is working | |||
Passed | suites/memberof_plugin/regression_test.py::test_memberof_group | 4.40 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.------------------------------ Captured log call ------------------------------- regression_test.py 480 INFO Enable memberof plugin and set the scope as cn=sub1,dc=example,dc=com regression_test.py 439 INFO !!!!!!! uid=test_m1,cn=sub1,dc=example,dc=com: memberof->b'cn=g1,cn=sub1,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! uid=test_m2,cn=sub1,dc=example,dc=com: memberof->b'cn=g1,cn=sub1,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! uid=test_m1,cn=sub1,dc=example,dc=com: memberof->b'cn=g1,cn=sub1,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! uid=test_m2,cn=sub1,dc=example,dc=com: memberof->b'cn=g1,cn=sub1,dc=example,dc=com' regression_test.py 426 CRITICAL Renaming user (cn=g2,cn=sub2,dc=example,dc=com): new cn=g2-new regression_test.py 439 INFO !!!!!!! uid=test_m1,cn=sub1,dc=example,dc=com: memberof->b'cn=g1,cn=sub1,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! uid=test_m2,cn=sub1,dc=example,dc=com: memberof->b'cn=g1,cn=sub1,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! uid=test_m1,cn=sub1,dc=example,dc=com: memberof->b'cn=g1,cn=sub1,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! uid=test_m1,cn=sub1,dc=example,dc=com: memberof->b'cn=g2-new,cn=sub1,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! uid=test_m2,cn=sub1,dc=example,dc=com: memberof->b'cn=g1,cn=sub1,dc=example,dc=com' regression_test.py 439 INFO !!!!!!! uid=test_m2,cn=sub1,dc=example,dc=com: memberof->b'cn=g2-new,cn=sub1,dc=example,dc=com' | |||
Passed | suites/monitor/monitor_test.py::test_monitor | 0.01 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.------------------------------ Captured log call ------------------------------- monitor_test.py 42 INFO connection: ['64:20180923234606Z:2:1:-:cn=directory manager:0:0:0:1:ip=fe80::f816:3eff:fe00:a83%eth0'], currentconnections: ['1'], totalconnections: ['1'] monitor_test.py 46 INFO version :: ['64:20180923234606Z:5:4:-:cn=directory manager:0:0:0:1:ip=fe80::f816:3eff:fe00:a83%eth0'] monitor_test.py 50 INFO threads: ['24'],currentconnectionsatmaxthreads: ['0'],maxthreadsperconnhits: ['0'] monitor_test.py 54 INFO nbackends: ['1'], backendmonitordn: ['cn=monitor,cn=userRoot,cn=ldbm database,cn=plugins,cn=config'] monitor_test.py 58 INFO opsinitiated: ['11'], opscompleted: ['12'] monitor_test.py 62 INFO dtablesize: ['1024'],readwaiters: ['0'],entriessent: ['13'],bytessent: ['1059'],currenttime: ['20180923234606Z'],starttime: ['20180923234606Z'] | |||
Passed | suites/paged_results/paged_results_test.py::test_search_success[6-5] | 5.87 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. paged_results_test.py 54 INFO Adding user simplepaged_test------------------------------ Captured log call ------------------------------- paged_results_test.py 131 INFO Adding 5 users paged_results_test.py 244 INFO Set user bind simplepaged_test paged_results_test.py 194 INFO 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 0x7f3de8b476d8>]. paged_results_test.py 197 INFO Getting page 0 paged_results_test.py 250 INFO 5 results paged_results_test.py 153 INFO Deleting 5 users | |||
Passed | suites/paged_results/paged_results_test.py::test_search_success[5-5] | 0.20 | |
------------------------------ Captured log call ------------------------------- paged_results_test.py 131 INFO Adding 5 users paged_results_test.py 244 INFO Set user bind simplepaged_test paged_results_test.py 194 INFO 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 0x7f3de8b4d198>]. paged_results_test.py 197 INFO Getting page 0 paged_results_test.py 250 INFO 5 results paged_results_test.py 153 INFO Deleting 5 users | |||
Passed | suites/paged_results/paged_results_test.py::test_search_success[5-25] | 0.80 | |
------------------------------ Captured log call ------------------------------- paged_results_test.py 131 INFO Adding 25 users paged_results_test.py 244 INFO Set user bind simplepaged_test paged_results_test.py 194 INFO 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 0x7f3de8b4a128>]. paged_results_test.py 197 INFO Getting page 0 paged_results_test.py 197 INFO Getting page 1 paged_results_test.py 197 INFO Getting page 2 paged_results_test.py 197 INFO Getting page 3 paged_results_test.py 197 INFO Getting page 4 paged_results_test.py 250 INFO 25 results paged_results_test.py 153 INFO 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] | 6.09 | |
------------------------------ Captured log call ------------------------------- paged_results_test.py 131 INFO Adding 200 users paged_results_test.py 168 INFO Set nsslapd-idlistscanlimit to 100. Previous value - b'4000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. paged_results_test.py 295 INFO Set user bind paged_results_test.py 298 INFO Create simple paged results control instance paged_results_test.py 304 INFO Initiate ldapsearch with created control instance paged_results_test.py 316 INFO Getting page 0 paged_results_test.py 153 INFO Deleting 200 users paged_results_test.py 168 INFO 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.57 | |
------------------------------ Captured log call ------------------------------- paged_results_test.py 131 INFO Adding 15 users paged_results_test.py 168 INFO Set nsslapd-timelimit to 20. Previous value - b'3600'. Modified suffix - cn=config. paged_results_test.py 295 INFO Set user bind paged_results_test.py 298 INFO Create simple paged results control instance paged_results_test.py 304 INFO Initiate ldapsearch with created control instance paged_results_test.py 316 INFO Getting page 0 paged_results_test.py 153 INFO Deleting 15 users paged_results_test.py 168 INFO 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] | 1.61 | |
------------------------------ Captured log call ------------------------------- paged_results_test.py 131 INFO Adding 50 users paged_results_test.py 168 INFO Set nsslapd-sizelimit to 20. Previous value - b'2000'. Modified suffix - cn=config. paged_results_test.py 295 INFO Set user bind paged_results_test.py 298 INFO Create simple paged results control instance paged_results_test.py 304 INFO Initiate ldapsearch with created control instance paged_results_test.py 316 INFO Getting page 0 paged_results_test.py 153 INFO Deleting 50 users paged_results_test.py 168 INFO 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] | 6.64 | |
------------------------------ Captured log call ------------------------------- paged_results_test.py 131 INFO Adding 50 users paged_results_test.py 168 INFO Set nsslapd-pagedsizelimit to 5. Previous value - b'0'. Modified suffix - cn=config. paged_results_test.py 295 INFO Set user bind paged_results_test.py 298 INFO Create simple paged results control instance paged_results_test.py 304 INFO Initiate ldapsearch with created control instance paged_results_test.py 316 INFO Getting page 0 paged_results_test.py 153 INFO Deleting 50 users paged_results_test.py 168 INFO 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] | 1.56 | |
------------------------------ Captured log call ------------------------------- paged_results_test.py 131 INFO Adding 50 users paged_results_test.py 168 INFO Set nsslapd-lookthroughlimit to 20. Previous value - b'5000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. paged_results_test.py 295 INFO Set user bind paged_results_test.py 298 INFO Create simple paged results control instance paged_results_test.py 304 INFO Initiate ldapsearch with created control instance paged_results_test.py 316 INFO Getting page 0 paged_results_test.py 153 INFO Deleting 50 users paged_results_test.py 168 INFO 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 | 1.60 | |
------------------------------ Captured log call ------------------------------- paged_results_test.py 131 INFO Adding 50 users paged_results_test.py 375 INFO Initiate ldapsearch with created control instance paged_results_test.py 376 INFO Collect data with sorting paged_results_test.py 194 INFO 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 0x7f3dfc22a240>, <lib389._controls.SSSRequestControl object at 0x7f3dfc22a7b8>]. paged_results_test.py 197 INFO Getting page 0 paged_results_test.py 197 INFO Getting page 1 paged_results_test.py 197 INFO Getting page 2 paged_results_test.py 197 INFO Getting page 3 paged_results_test.py 197 INFO Getting page 4 paged_results_test.py 197 INFO Getting page 5 paged_results_test.py 197 INFO Getting page 6 paged_results_test.py 197 INFO Getting page 7 paged_results_test.py 197 INFO Getting page 8 paged_results_test.py 197 INFO Getting page 9 paged_results_test.py 381 INFO Substring numbers from user DNs paged_results_test.py 385 INFO Assert that list is sorted paged_results_test.py 153 INFO Deleting 50 users | |||
Passed | suites/paged_results/paged_results_test.py::test_search_abandon | 5.36 | |
------------------------------ Captured log call ------------------------------- paged_results_test.py 131 INFO Adding 10 users paged_results_test.py 416 INFO Set user bind paged_results_test.py 419 INFO Create simple paged results control instance paged_results_test.py 423 INFO Initiate a search with a paged results control paged_results_test.py 426 INFO Abandon the search paged_results_test.py 429 INFO Expect an ldap.TIMEOUT exception, while trying to get the search results paged_results_test.py 153 INFO Deleting 10 users | |||
Passed | suites/paged_results/paged_results_test.py::test_search_with_timelimit | 33.15 | |
------------------------------ Captured log call ------------------------------- paged_results_test.py 131 INFO Adding 100 users paged_results_test.py 465 INFO Set user bind paged_results_test.py 468 INFO Create simple paged results control instance paged_results_test.py 473 INFO Iteration 0 paged_results_test.py 480 INFO Getting page 0 paged_results_test.py 480 INFO Getting page 1 paged_results_test.py 497 INFO Done with this search - sleeping 10 seconds paged_results_test.py 473 INFO Iteration 1 paged_results_test.py 480 INFO Getting page 0 paged_results_test.py 480 INFO Getting page 1 paged_results_test.py 497 INFO Done with this search - sleeping 10 seconds paged_results_test.py 473 INFO Iteration 2 paged_results_test.py 480 INFO Getting page 0 paged_results_test.py 480 INFO Getting page 1 paged_results_test.py 497 INFO Done with this search - sleeping 10 seconds paged_results_test.py 153 INFO Deleting 100 users | |||
Passed | suites/paged_results/paged_results_test.py::test_search_dns_ip_aci[dns = "server.example.com"] | 3.06 | |
------------------------------ Captured log call ------------------------------- paged_results_test.py 131 INFO Adding 100 users paged_results_test.py 542 INFO Back up current suffix ACI paged_results_test.py 545 INFO Add test ACI paged_results_test.py 551 INFO Set user bind paged_results_test.py 554 INFO Create simple paged results control instance paged_results_test.py 558 INFO Initiate three searches with a paged results control paged_results_test.py 560 INFO 1 search paged_results_test.py 194 INFO 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 0x7f3dfc473b70>]. paged_results_test.py 197 INFO Getting page 0 paged_results_test.py 197 INFO Getting page 1 paged_results_test.py 197 INFO Getting page 2 paged_results_test.py 197 INFO Getting page 3 paged_results_test.py 197 INFO Getting page 4 paged_results_test.py 197 INFO Getting page 5 paged_results_test.py 197 INFO Getting page 6 paged_results_test.py 197 INFO Getting page 7 paged_results_test.py 197 INFO Getting page 8 paged_results_test.py 197 INFO Getting page 9 paged_results_test.py 197 INFO Getting page 10 paged_results_test.py 197 INFO Getting page 11 paged_results_test.py 197 INFO Getting page 12 paged_results_test.py 197 INFO Getting page 13 paged_results_test.py 197 INFO Getting page 14 paged_results_test.py 197 INFO Getting page 15 paged_results_test.py 197 INFO Getting page 16 paged_results_test.py 197 INFO Getting page 17 paged_results_test.py 197 INFO Getting page 18 paged_results_test.py 197 INFO Getting page 19 paged_results_test.py 563 INFO 100 results paged_results_test.py 560 INFO 2 search paged_results_test.py 194 INFO 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 0x7f3dfc473b70>]. paged_results_test.py 197 INFO Getting page 0 paged_results_test.py 197 INFO Getting page 1 paged_results_test.py 197 INFO Getting page 2 paged_results_test.py 197 INFO Getting page 3 paged_results_test.py 197 INFO Getting page 4 paged_results_test.py 197 INFO Getting page 5 paged_results_test.py 197 INFO Getting page 6 paged_results_test.py 197 INFO Getting page 7 paged_results_test.py 197 INFO Getting page 8 paged_results_test.py 197 INFO Getting page 9 paged_results_test.py 197 INFO Getting page 10 paged_results_test.py 197 INFO Getting page 11 paged_results_test.py 197 INFO Getting page 12 paged_results_test.py 197 INFO Getting page 13 paged_results_test.py 197 INFO Getting page 14 paged_results_test.py 197 INFO Getting page 15 paged_results_test.py 197 INFO Getting page 16 paged_results_test.py 197 INFO Getting page 17 paged_results_test.py 197 INFO Getting page 18 paged_results_test.py 197 INFO Getting page 19 paged_results_test.py 563 INFO 100 results paged_results_test.py 560 INFO 3 search paged_results_test.py 194 INFO 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 0x7f3dfc473b70>]. paged_results_test.py 197 INFO Getting page 0 paged_results_test.py 197 INFO Getting page 1 paged_results_test.py 197 INFO Getting page 2 paged_results_test.py 197 INFO Getting page 3 paged_results_test.py 197 INFO Getting page 4 paged_results_test.py 197 INFO Getting page 5 paged_results_test.py 197 INFO Getting page 6 paged_results_test.py 197 INFO Getting page 7 paged_results_test.py 197 INFO Getting page 8 paged_results_test.py 197 INFO Getting page 9 paged_results_test.py 197 INFO Getting page 10 paged_results_test.py 197 INFO Getting page 11 paged_results_test.py 197 INFO Getting page 12 paged_results_test.py 197 INFO Getting page 13 paged_results_test.py 197 INFO Getting page 14 paged_results_test.py 197 INFO Getting page 15 paged_results_test.py 197 INFO Getting page 16 paged_results_test.py 197 INFO Getting page 17 paged_results_test.py 197 INFO Getting page 18 paged_results_test.py 197 INFO Getting page 19 paged_results_test.py 563 INFO 100 results paged_results_test.py 565 INFO If we are here, then no error has happened. We are good. paged_results_test.py 568 INFO Restore ACI paged_results_test.py 153 INFO Deleting 100 users | |||
Passed | suites/paged_results/paged_results_test.py::test_search_multiple_paging | 3.06 | |
------------------------------ Captured log call ------------------------------- paged_results_test.py 131 INFO Adding 100 users paged_results_test.py 601 INFO Set user bind paged_results_test.py 604 INFO Create simple paged results control instance paged_results_test.py 609 INFO Iteration 0 paged_results_test.py 609 INFO Iteration 1 paged_results_test.py 609 INFO Iteration 2 paged_results_test.py 153 INFO Deleting 100 users | |||
Passed | suites/paged_results/paged_results_test.py::test_search_invalid_cookie[1000] | 3.00 | |
------------------------------ Captured log call ------------------------------- paged_results_test.py 131 INFO Adding 100 users paged_results_test.py 655 INFO Set user bind paged_results_test.py 658 INFO Create simple paged results control instance paged_results_test.py 667 INFO Put an invalid cookie (1000) to the control. TypeError is expected paged_results_test.py 153 INFO Deleting 100 users | |||
Passed | suites/paged_results/paged_results_test.py::test_search_invalid_cookie[-1] | 2.99 | |
------------------------------ Captured log call ------------------------------- paged_results_test.py 131 INFO Adding 100 users paged_results_test.py 655 INFO Set user bind paged_results_test.py 658 INFO Create simple paged results control instance paged_results_test.py 667 INFO Put an invalid cookie (-1) to the control. TypeError is expected paged_results_test.py 153 INFO Deleting 100 users | |||
Passed | suites/paged_results/paged_results_test.py::test_search_abandon_with_zero_size | 0.35 | |
------------------------------ Captured log call ------------------------------- paged_results_test.py 131 INFO Adding 10 users paged_results_test.py 699 INFO Set user bind paged_results_test.py 702 INFO Create simple paged results control instance paged_results_test.py 153 INFO Deleting 10 users | |||
Passed | suites/paged_results/paged_results_test.py::test_search_pagedsizelimit_success | 0.37 | |
------------------------------ Captured log call ------------------------------- paged_results_test.py 168 INFO Set nsslapd-pagedsizelimit to 20. Previous value - b'0'. Modified suffix - cn=config. paged_results_test.py 131 INFO Adding 10 users paged_results_test.py 748 INFO Set user bind paged_results_test.py 194 INFO 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 0x7f3dfc1c62e8>]. paged_results_test.py 197 INFO Getting page 0 paged_results_test.py 756 INFO 10 results paged_results_test.py 153 INFO Deleting 10 users paged_results_test.py 168 INFO 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.37 | |
------------------------------ Captured log call ------------------------------- paged_results_test.py 131 INFO Adding 10 users paged_results_test.py 168 INFO Set nsslapd-pagedsizelimit to 5. Previous value - b'0'. Modified suffix - cn=config. paged_results_test.py 168 INFO Set nsPagedSizeLimit to 15. Previous value - None. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com. paged_results_test.py 810 INFO Set user bind paged_results_test.py 821 INFO Expect to pass paged_results_test.py 194 INFO 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 0x7f3dfc18c908>]. paged_results_test.py 197 INFO Getting page 0 paged_results_test.py 823 INFO 10 results paged_results_test.py 153 INFO Deleting 10 users paged_results_test.py 168 INFO Set nsslapd-pagedsizelimit to b'0'. Previous value - b'5'. Modified suffix - cn=config. paged_results_test.py 168 INFO 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.37 | |
------------------------------ Captured log call ------------------------------- paged_results_test.py 131 INFO Adding 10 users paged_results_test.py 168 INFO Set nsslapd-pagedsizelimit to 15. Previous value - b'0'. Modified suffix - cn=config. paged_results_test.py 168 INFO Set nsPagedSizeLimit to 5. Previous value - None. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com. paged_results_test.py 810 INFO Set user bind paged_results_test.py 817 INFO Expect to fail with SIZELIMIT_EXCEEDED paged_results_test.py 194 INFO 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 0x7f3dfc1c6b70>]. paged_results_test.py 197 INFO Getting page 0 paged_results_test.py 153 INFO Deleting 10 users paged_results_test.py 168 INFO Set nsslapd-pagedsizelimit to b'0'. Previous value - b'15'. Modified suffix - cn=config. paged_results_test.py 168 INFO 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] | 3.07 | |
------------------------------ Captured log call ------------------------------- paged_results_test.py 131 INFO Adding 101 users paged_results_test.py 168 INFO Set nsslapd-sizelimit to 5000. Previous value - b'2000'. Modified suffix - cn=config. paged_results_test.py 168 INFO Set nsslapd-pagedsizelimit to 5000. Previous value - b'0'. Modified suffix - cn=config. paged_results_test.py 168 INFO Set nsslapd-idlistscanlimit to 100. Previous value - b'4000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. paged_results_test.py 168 INFO Set nsslapd-lookthroughlimit to 100. Previous value - b'5000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. paged_results_test.py 881 INFO Set user bind paged_results_test.py 888 INFO Expect to fail with ADMINLIMIT_EXCEEDED paged_results_test.py 194 INFO 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 0x7f3dfc0c2518>]. paged_results_test.py 197 INFO Getting page 0 paged_results_test.py 197 INFO Getting page 1 paged_results_test.py 197 INFO Getting page 2 paged_results_test.py 197 INFO Getting page 3 paged_results_test.py 197 INFO Getting page 4 paged_results_test.py 197 INFO Getting page 5 paged_results_test.py 197 INFO Getting page 6 paged_results_test.py 197 INFO Getting page 7 paged_results_test.py 197 INFO Getting page 8 paged_results_test.py 153 INFO Deleting 101 users paged_results_test.py 168 INFO Set nsslapd-sizelimit to b'2000'. Previous value - b'5000'. Modified suffix - cn=config. paged_results_test.py 168 INFO Set nsslapd-pagedsizelimit to b'0'. Previous value - b'5000'. Modified suffix - cn=config. paged_results_test.py 168 INFO Set nsslapd-lookthroughlimit to b'5000'. Previous value - b'100'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. paged_results_test.py 168 INFO 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] | 3.12 | |
------------------------------ Captured log call ------------------------------- paged_results_test.py 131 INFO Adding 101 users paged_results_test.py 168 INFO Set nsslapd-sizelimit to 5000. Previous value - b'2000'. Modified suffix - cn=config. paged_results_test.py 168 INFO Set nsslapd-pagedsizelimit to 5000. Previous value - b'0'. Modified suffix - cn=config. paged_results_test.py 168 INFO Set nsslapd-idlistscanlimit to 120. Previous value - b'4000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. paged_results_test.py 168 INFO Set nsslapd-lookthroughlimit to 122. Previous value - b'5000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. paged_results_test.py 881 INFO Set user bind paged_results_test.py 892 INFO Expect to pass paged_results_test.py 194 INFO 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 0x7f3dfc0109b0>]. paged_results_test.py 197 INFO Getting page 0 paged_results_test.py 197 INFO Getting page 1 paged_results_test.py 197 INFO Getting page 2 paged_results_test.py 197 INFO Getting page 3 paged_results_test.py 197 INFO Getting page 4 paged_results_test.py 197 INFO Getting page 5 paged_results_test.py 197 INFO Getting page 6 paged_results_test.py 197 INFO Getting page 7 paged_results_test.py 197 INFO Getting page 8 paged_results_test.py 197 INFO Getting page 9 paged_results_test.py 197 INFO Getting page 10 paged_results_test.py 894 INFO 101 results paged_results_test.py 153 INFO Deleting 101 users paged_results_test.py 168 INFO Set nsslapd-sizelimit to b'2000'. Previous value - b'5000'. Modified suffix - cn=config. paged_results_test.py 168 INFO Set nsslapd-pagedsizelimit to b'0'. Previous value - b'5000'. Modified suffix - cn=config. paged_results_test.py 168 INFO Set nsslapd-lookthroughlimit to b'5000'. Previous value - b'122'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. paged_results_test.py 168 INFO 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] | 3.08 | |
------------------------------ Captured log call ------------------------------- paged_results_test.py 131 INFO Adding 101 users paged_results_test.py 168 INFO Set nsslapd-lookthroughlimit to 1000. Previous value - b'5000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. paged_results_test.py 168 INFO Set nsslapd-idlistscanlimit to 1000. Previous value - b'4000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. paged_results_test.py 168 INFO Set nsPagedIDListScanLimit to 100. Previous value - None. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com. paged_results_test.py 168 INFO Set nsPagedLookthroughLimit to 100. Previous value - None. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com. paged_results_test.py 954 INFO Set user bind paged_results_test.py 961 INFO Expect to fail with ADMINLIMIT_EXCEEDED paged_results_test.py 194 INFO 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 0x7f3dfc0b07b8>]. paged_results_test.py 197 INFO Getting page 0 paged_results_test.py 197 INFO Getting page 1 paged_results_test.py 197 INFO Getting page 2 paged_results_test.py 197 INFO Getting page 3 paged_results_test.py 197 INFO Getting page 4 paged_results_test.py 197 INFO Getting page 5 paged_results_test.py 197 INFO Getting page 6 paged_results_test.py 197 INFO Getting page 7 paged_results_test.py 197 INFO Getting page 8 paged_results_test.py 153 INFO Deleting 101 users paged_results_test.py 168 INFO Set nsslapd-lookthroughlimit to b'5000'. Previous value - b'1000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. paged_results_test.py 168 INFO Set nsslapd-idlistscanlimit to b'4000'. Previous value - b'1000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. paged_results_test.py 168 INFO Set nsPagedIDListScanLimit to None. Previous value - b'100'. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com. paged_results_test.py 168 INFO 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] | 3.21 | |
------------------------------ Captured log call ------------------------------- paged_results_test.py 131 INFO Adding 101 users paged_results_test.py 168 INFO Set nsslapd-lookthroughlimit to 1000. Previous value - b'5000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. paged_results_test.py 168 INFO Set nsslapd-idlistscanlimit to 1000. Previous value - b'4000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. paged_results_test.py 168 INFO Set nsPagedIDListScanLimit to 120. Previous value - None. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com. paged_results_test.py 168 INFO Set nsPagedLookthroughLimit to 122. Previous value - None. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com. paged_results_test.py 954 INFO Set user bind paged_results_test.py 965 INFO Expect to pass paged_results_test.py 194 INFO 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 0x7f3dfbf80198>]. paged_results_test.py 197 INFO Getting page 0 paged_results_test.py 197 INFO Getting page 1 paged_results_test.py 197 INFO Getting page 2 paged_results_test.py 197 INFO Getting page 3 paged_results_test.py 197 INFO Getting page 4 paged_results_test.py 197 INFO Getting page 5 paged_results_test.py 197 INFO Getting page 6 paged_results_test.py 197 INFO Getting page 7 paged_results_test.py 197 INFO Getting page 8 paged_results_test.py 197 INFO Getting page 9 paged_results_test.py 197 INFO Getting page 10 paged_results_test.py 967 INFO 101 results paged_results_test.py 153 INFO Deleting 101 users paged_results_test.py 168 INFO Set nsslapd-lookthroughlimit to b'5000'. Previous value - b'1000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. paged_results_test.py 168 INFO Set nsslapd-idlistscanlimit to b'4000'. Previous value - b'1000'. Modified suffix - cn=config,cn=ldbm database,cn=plugins,cn=config. paged_results_test.py 168 INFO Set nsPagedIDListScanLimit to None. Previous value - b'120'. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com. paged_results_test.py 168 INFO Set nsPagedLookthroughLimit to None. Previous value - b'122'. Modified suffix - uid=simplepaged_test,ou=People,dc=example,dc=com. | |||
Passed | suites/paged_results/paged_results_test.py::test_ger_basic | 0.61 | |
------------------------------ Captured log call ------------------------------- paged_results_test.py 131 INFO Adding 20 users paged_results_test.py 194 INFO 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 0x7f3dfbf014e0>, <ldap.controls.simple.GetEffectiveRightsControl object at 0x7f3dfbf01c18>]. paged_results_test.py 197 INFO Getting page 0 paged_results_test.py 197 INFO Getting page 1 paged_results_test.py 197 INFO Getting page 2 paged_results_test.py 197 INFO Getting page 3 paged_results_test.py 197 INFO Getting page 4 paged_results_test.py 197 INFO Getting page 5 paged_results_test.py 1005 INFO 20 results paged_results_test.py 1007 INFO Check for attributeLevelRights paged_results_test.py 1010 INFO Remove added users paged_results_test.py 153 INFO Deleting 20 users | |||
Passed | suites/paged_results/paged_results_test.py::test_multi_suffix_search | 8.92 | |
------------------------------ Captured log setup ------------------------------ paged_results_test.py 85 INFO Adding suffix:o=test_parent and backend: parent_base paged_results_test.py 94 INFO Adding ACI to allow our test user to search paged_results_test.py 106 INFO Adding suffix:ou=child,o=test_parent and backend: child_base------------------------------ Captured log call ------------------------------- paged_results_test.py 1041 INFO Clear the access log paged_results_test.py 131 INFO Adding 10 users paged_results_test.py 131 INFO Adding 10 users paged_results_test.py 194 INFO 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 0x7f3dfc082128>]. paged_results_test.py 197 INFO Getting page 0 paged_results_test.py 197 INFO Getting page 1 paged_results_test.py 197 INFO Getting page 2 paged_results_test.py 197 INFO Getting page 3 paged_results_test.py 197 INFO Getting page 4 paged_results_test.py 197 INFO Getting page 5 paged_results_test.py 1052 INFO 20 results paged_results_test.py 1055 INFO Restart the server to flush the logs paged_results_test.py 1061 INFO Assert that last pr_cookie == -1 and others pr_cookie == 0 paged_results_test.py 1066 INFO Remove added users paged_results_test.py 153 INFO Deleting 10 users paged_results_test.py 153 INFO Deleting 10 users | |||
Passed | suites/paged_results/paged_results_test.py::test_maxsimplepaged_per_conn_success[None] | 0.92 | |
------------------------------ Captured log call ------------------------------- paged_results_test.py 131 INFO Adding 20 users paged_results_test.py 1098 INFO Set user bind paged_results_test.py 194 INFO 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 0x7f3de8b2fd30>]. paged_results_test.py 197 INFO Getting page 0 paged_results_test.py 197 INFO Getting page 1 paged_results_test.py 197 INFO Getting page 2 paged_results_test.py 197 INFO Getting page 3 paged_results_test.py 197 INFO Getting page 4 paged_results_test.py 1105 INFO 20 results paged_results_test.py 1108 INFO Remove added users paged_results_test.py 153 INFO Deleting 20 users | |||
Passed | suites/paged_results/paged_results_test.py::test_maxsimplepaged_per_conn_success[-1] | 0.67 | |
------------------------------ Captured log call ------------------------------- paged_results_test.py 131 INFO Adding 20 users paged_results_test.py 168 INFO Set nsslapd-maxsimplepaged-per-conn to -1. Previous value - b'-1'. Modified suffix - cn=config. paged_results_test.py 1098 INFO Set user bind paged_results_test.py 194 INFO 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 0x7f3dfc2e2f60>]. paged_results_test.py 197 INFO Getting page 0 paged_results_test.py 197 INFO Getting page 1 paged_results_test.py 197 INFO Getting page 2 paged_results_test.py 197 INFO Getting page 3 paged_results_test.py 197 INFO Getting page 4 paged_results_test.py 1105 INFO 20 results paged_results_test.py 1108 INFO Remove added users paged_results_test.py 153 INFO Deleting 20 users paged_results_test.py 168 INFO 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] | 0.68 | |
------------------------------ Captured log call ------------------------------- paged_results_test.py 131 INFO Adding 20 users paged_results_test.py 168 INFO Set nsslapd-maxsimplepaged-per-conn to 1000. Previous value - b'-1'. Modified suffix - cn=config. paged_results_test.py 1098 INFO Set user bind paged_results_test.py 194 INFO 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 0x7f3df8534b00>]. paged_results_test.py 197 INFO Getting page 0 paged_results_test.py 197 INFO Getting page 1 paged_results_test.py 197 INFO Getting page 2 paged_results_test.py 197 INFO Getting page 3 paged_results_test.py 197 INFO Getting page 4 paged_results_test.py 1105 INFO 20 results paged_results_test.py 1108 INFO Remove added users paged_results_test.py 153 INFO Deleting 20 users paged_results_test.py 168 INFO Set nsslapd-maxsimplepaged-per-conn to b'-1'. Previous value - b'1000'. Modified suffix - cn=config. | |||
Passed | suites/paged_results/paged_results_test.py::test_maxsimplepaged_per_conn_failure[0] | 1.66 | |
------------------------------ Captured log call ------------------------------- paged_results_test.py 131 INFO Adding 20 users paged_results_test.py 168 INFO Set nsslapd-maxsimplepaged-per-conn to 0. Previous value - b'-1'. Modified suffix - cn=config. paged_results_test.py 1142 INFO Set user bind paged_results_test.py 1145 INFO Create simple paged results control instance paged_results_test.py 1160 INFO Remove added users paged_results_test.py 153 INFO Deleting 20 users paged_results_test.py 168 INFO 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.67 | |
------------------------------ Captured log call ------------------------------- paged_results_test.py 131 INFO Adding 20 users paged_results_test.py 168 INFO Set nsslapd-maxsimplepaged-per-conn to 1. Previous value - b'-1'. Modified suffix - cn=config. paged_results_test.py 1142 INFO Set user bind paged_results_test.py 1145 INFO Create simple paged results control instance paged_results_test.py 1160 INFO Remove added users paged_results_test.py 153 INFO Deleting 20 users paged_results_test.py 168 INFO Set nsslapd-maxsimplepaged-per-conn to b'-1'. Previous value - b'1'. Modified suffix - cn=config. | |||
Passed | suites/password/password_test.py::test_password_delete_specific_password | 0.32 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.------------------------------ Captured log call ------------------------------- password_test.py 42 INFO Running test_password_delete_specific_password... password_test.py 63 INFO test_password_delete_specific_password: PASSED | |||
Passed | suites/password/pbkdf2_upgrade_plugin_test.py::test_pbkdf2_upgrade | 8.93 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO 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 | 5.17 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. pwdAdmin_test.py 44 INFO test_pwdAdmin_init: Creating Password Administrator entries... pwdAdmin_test.py 83 INFO test_pwdAdmin_init: Configuring password policy... pwdAdmin_test.py 98 INFO Add aci to allow password admin to add/update entries... pwdAdmin_test.py 113 INFO test_pwdAdmin_init: Bind as the Password Administrator (before activating)... pwdAdmin_test.py 126 INFO test_pwdAdmin_init: Attempt to add entries with invalid passwords, these adds should fail...------------------------------ Captured log call ------------------------------- pwdAdmin_test.py 165 INFO test_pwdAdmin: Activate the Password Administator... | |||
Passed | suites/password/pwdAdmin_test.py::test_pwdAdmin_no_admin | 0.09 | |
No log output captured. | |||
Passed | suites/password/pwdAdmin_test.py::test_pwdAdmin_modify | 0.15 | |
No log output captured. | |||
Passed | suites/password/pwdAdmin_test.py::test_pwdAdmin_group | 5.15 | |
No log output captured. | |||
Passed | suites/password/pwdAdmin_test.py::test_pwdAdmin_config_validation | 0.02 | |
No log output captured. | |||
Passed | suites/password/pwdPolicy_attribute_test.py::test_change_pwd[on-off-UNWILLING_TO_PERFORM] | 1.17 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ---------------------------- Captured stderr setup ----------------------------- ldap_add: Already exists (68) Container entries added. ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. pwdPolicy_attribute_test.py 38 INFO Adding user uid=simplepaged_test,ou=people,dc=example,dc=com pwdPolicy_attribute_test.py 66 INFO Enable fine-grained policy pwdPolicy_attribute_test.py 76 INFO Create password policy for subtree ou=people,dc=example,dc=com pwdPolicy_attribute_test.py 87 INFO Add pwdpolicysubentry attribute to ou=people,dc=example,dc=com pwdPolicy_attribute_test.py 98 INFO Create password policy for subtree uid=simplepaged_test,ou=people,dc=example,dc=com pwdPolicy_attribute_test.py 109 INFO Add pwdpolicysubentry attribute to uid=simplepaged_test,ou=people,dc=example,dc=com------------------------------ Captured log call ------------------------------- pwdPolicy_attribute_test.py 149 INFO Set passwordChange to "on" - cn="cn=nsPwPolicyEntry,ou=people,dc=example,dc=com",cn=nsPwPolicyContainer,ou=people,dc=example,dc=com pwdPolicy_attribute_test.py 161 INFO Set passwordChange to "off" - cn="cn=nsPwPolicyEntry,uid=simplepaged_test,ou=people,dc=example,dc=com",cn=nsPwPolicyContainer,ou=people,dc=example,dc=com pwdPolicy_attribute_test.py 174 INFO Bind as user and modify userPassword pwdPolicy_attribute_test.py 190 INFO Bind as DM | |||
Passed | suites/password/pwdPolicy_attribute_test.py::test_change_pwd[off-off-UNWILLING_TO_PERFORM] | 1.16 | |
------------------------------ Captured log call ------------------------------- pwdPolicy_attribute_test.py 149 INFO Set passwordChange to "off" - cn="cn=nsPwPolicyEntry,ou=people,dc=example,dc=com",cn=nsPwPolicyContainer,ou=people,dc=example,dc=com pwdPolicy_attribute_test.py 161 INFO Set passwordChange to "off" - cn="cn=nsPwPolicyEntry,uid=simplepaged_test,ou=people,dc=example,dc=com",cn=nsPwPolicyContainer,ou=people,dc=example,dc=com pwdPolicy_attribute_test.py 174 INFO Bind as user and modify userPassword pwdPolicy_attribute_test.py 190 INFO Bind as DM | |||
Passed | suites/password/pwdPolicy_attribute_test.py::test_change_pwd[off-on-None] | 1.18 | |
------------------------------ Captured log call ------------------------------- pwdPolicy_attribute_test.py 149 INFO Set passwordChange to "off" - cn="cn=nsPwPolicyEntry,ou=people,dc=example,dc=com",cn=nsPwPolicyContainer,ou=people,dc=example,dc=com pwdPolicy_attribute_test.py 161 INFO Set passwordChange to "on" - cn="cn=nsPwPolicyEntry,uid=simplepaged_test,ou=people,dc=example,dc=com",cn=nsPwPolicyContainer,ou=people,dc=example,dc=com pwdPolicy_attribute_test.py 174 INFO Bind as user and modify userPassword pwdPolicy_attribute_test.py 190 INFO Bind as DM | |||
Passed | suites/password/pwdPolicy_attribute_test.py::test_change_pwd[on-on-None] | 1.19 | |
------------------------------ Captured log call ------------------------------- pwdPolicy_attribute_test.py 149 INFO Set passwordChange to "on" - cn="cn=nsPwPolicyEntry,ou=people,dc=example,dc=com",cn=nsPwPolicyContainer,ou=people,dc=example,dc=com pwdPolicy_attribute_test.py 161 INFO Set passwordChange to "on" - cn="cn=nsPwPolicyEntry,uid=simplepaged_test,ou=people,dc=example,dc=com",cn=nsPwPolicyContainer,ou=people,dc=example,dc=com pwdPolicy_attribute_test.py 174 INFO Bind as user and modify userPassword pwdPolicy_attribute_test.py 190 INFO Bind as DM | |||
Passed | suites/password/pwdPolicy_attribute_test.py::test_pwd_min_age | 14.28 | |
------------------------------ Captured log call ------------------------------- pwdPolicy_attribute_test.py 227 INFO Set passwordminage to "10" - cn="cn=nsPwPolicyEntry,ou=people,dc=example,dc=com",cn=nsPwPolicyContainer,ou=people,dc=example,dc=com pwdPolicy_attribute_test.py 238 INFO Set passwordminage to "10" - cn="cn=nsPwPolicyEntry,uid=simplepaged_test,ou=people,dc=example,dc=com",cn=nsPwPolicyContainer,ou=people,dc=example,dc=com pwdPolicy_attribute_test.py 249 INFO Set passwordminage to "10" - cn=config pwdPolicy_attribute_test.py 262 INFO Bind as user and modify userPassword pwdPolicy_attribute_test.py 273 INFO Bind as user and modify userPassword straight away after previous change pwdPolicy_attribute_test.py 280 INFO Wait 12 second pwdPolicy_attribute_test.py 284 INFO Bind as user and modify userPassword pwdPolicy_attribute_test.py 294 INFO Bind as DM | |||
Passed | suites/password/pwdPolicy_controls_test.py::test_pwd_must_change | 2.41 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.------------------------------ Captured log call ------------------------------- pwdPolicy_controls_test.py 109 INFO Configure password policy with paswordMustChange set to "on" pwdPolicy_controls_test.py 116 INFO Reset userpassword as Directory Manager pwdPolicy_controls_test.py 125 INFO Bind should return ctrl with error code 2 (changeAfterReset) | |||
Passed | suites/password/pwdPolicy_controls_test.py::test_pwd_expired_grace_limit | 6.57 | |
------------------------------ Captured log call ------------------------------- pwdPolicy_controls_test.py 159 INFO Configure password policy with grace limit set tot 2 pwdPolicy_controls_test.py 164 INFO Change password and wait for it to expire pwdPolicy_controls_test.py 168 INFO Bind and use up one grace login (only one left) pwdPolicy_controls_test.py 178 INFO Use up last grace login, should get control pwdPolicy_controls_test.py 184 INFO No grace login available, bind should fail, and no control should be returned | |||
Passed | suites/password/pwdPolicy_controls_test.py::test_pwd_expiring_with_warning | 5.44 | |
------------------------------ Captured log call ------------------------------- pwdPolicy_controls_test.py 206 INFO Configure password policy pwdPolicy_controls_test.py 211 INFO Change password and get controls pwdPolicy_controls_test.py 222 INFO 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.57 | |
------------------------------ Captured log call ------------------------------- pwdPolicy_controls_test.py 250 INFO Configure password policy pwdPolicy_controls_test.py 255 INFO When the warning is less than the max age, we never send expiring control response pwdPolicy_controls_test.py 262 INFO Turn on sending expiring control regardless of warning pwdPolicy_controls_test.py 274 INFO Check expiring time again pwdPolicy_controls_test.py 285 INFO 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 stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. pwdPolicy_inherit_global_test.py 43 INFO Adding user uid=buser,dc=example,dc=com pwdPolicy_inherit_global_test.py 53 INFO Adding an aci for the bind user pwdPolicy_inherit_global_test.py 82 INFO Enable fine-grained policy pwdPolicy_inherit_global_test.py 90 INFO Create password policy for subtree ou=People,dc=example,dc=com pwdPolicy_inherit_global_test.py 101 INFO Add pwdpolicysubentry attribute to ou=People,dc=example,dc=com pwdPolicy_inherit_global_test.py 112 INFO Set the default settings for the policy container. pwdPolicy_inherit_global_test.py 135 INFO Default value of nsslapd-pwpolicy-inherit-global is off pwdPolicy_inherit_global_test.py 135 INFO Default value of passwordCheckSyntax is off------------------------------ Captured log call ------------------------------- pwdPolicy_inherit_global_test.py 164 INFO Set nsslapd-pwpolicy-inherit-global to off pwdPolicy_inherit_global_test.py 165 INFO Set passwordCheckSyntax to off pwdPolicy_inherit_global_test.py 135 INFO Default value of nsslapd-pwpolicy-inherit-global is off pwdPolicy_inherit_global_test.py 135 INFO Default value of passwordCheckSyntax is off pwdPolicy_inherit_global_test.py 174 INFO Bind as test user pwdPolicy_inherit_global_test.py 177 INFO Make sure an entry added to ou=people has no password syntax restrictions. pwdPolicy_inherit_global_test.py 193 INFO Bind as DM user pwdPolicy_inherit_global_test.py 195 INFO Remove cn=test0,ou=People,dc=example,dc=com | |||
Passed | suites/password/pwdPolicy_inherit_global_test.py::test_entry_has_no_restrictions[on-off] | 1.16 | |
------------------------------ Captured log call ------------------------------- pwdPolicy_inherit_global_test.py 164 INFO Set nsslapd-pwpolicy-inherit-global to on pwdPolicy_inherit_global_test.py 165 INFO Set passwordCheckSyntax to off pwdPolicy_inherit_global_test.py 135 INFO Default value of nsslapd-pwpolicy-inherit-global is on pwdPolicy_inherit_global_test.py 135 INFO Default value of passwordCheckSyntax is off pwdPolicy_inherit_global_test.py 174 INFO Bind as test user pwdPolicy_inherit_global_test.py 177 INFO Make sure an entry added to ou=people has no password syntax restrictions. pwdPolicy_inherit_global_test.py 193 INFO Bind as DM user pwdPolicy_inherit_global_test.py 195 INFO Remove cn=test0,ou=People,dc=example,dc=com | |||
Passed | suites/password/pwdPolicy_inherit_global_test.py::test_entry_has_no_restrictions[off-on] | 1.18 | |
------------------------------ Captured log call ------------------------------- pwdPolicy_inherit_global_test.py 164 INFO Set nsslapd-pwpolicy-inherit-global to off pwdPolicy_inherit_global_test.py 165 INFO Set passwordCheckSyntax to on pwdPolicy_inherit_global_test.py 135 INFO Default value of nsslapd-pwpolicy-inherit-global is off pwdPolicy_inherit_global_test.py 135 INFO Default value of passwordCheckSyntax is on pwdPolicy_inherit_global_test.py 174 INFO Bind as test user pwdPolicy_inherit_global_test.py 177 INFO Make sure an entry added to ou=people has no password syntax restrictions. pwdPolicy_inherit_global_test.py 193 INFO Bind as DM user pwdPolicy_inherit_global_test.py 195 INFO Remove cn=test0,ou=People,dc=example,dc=com | |||
Passed | suites/password/pwdPolicy_inherit_global_test.py::test_entry_has_restrictions[cn=config] | 1.41 | |
------------------------------ Captured log call ------------------------------- pwdPolicy_inherit_global_test.py 231 INFO Set nsslapd-pwpolicy-inherit-global to on pwdPolicy_inherit_global_test.py 232 INFO Set passwordCheckSyntax to on pwdPolicy_inherit_global_test.py 135 INFO Default value of nsslapd-pwpolicy-inherit-global is on pwdPolicy_inherit_global_test.py 135 INFO Default value of passwordCheckSyntax is on pwdPolicy_inherit_global_test.py 243 INFO Bind as test user pwdPolicy_inherit_global_test.py 246 INFO Try to add user with a short password (<9) pwdPolicy_inherit_global_test.py 257 INFO Try to add user with a long password (>9) pwdPolicy_inherit_global_test.py 272 INFO Bind as DM user pwdPolicy_inherit_global_test.py 274 INFO Remove cn=test0,ou=People,dc=example,dc=com pwdPolicy_inherit_global_test.py 278 INFO There is no cn=test0,ou=People,dc=example,dc=com, it is okay | |||
Passed | suites/password/pwdPolicy_inherit_global_test.py::test_entry_has_restrictions[cn="cn=nsPwPolicyEntry,ou=People,dc=example,dc=com",cn=nsPwPolicyContainer,ou=People,dc=example,dc=com] | 1.16 | |
------------------------------ Captured log call ------------------------------- pwdPolicy_inherit_global_test.py 231 INFO Set nsslapd-pwpolicy-inherit-global to on pwdPolicy_inherit_global_test.py 232 INFO Set passwordCheckSyntax to on pwdPolicy_inherit_global_test.py 135 INFO Default value of nsslapd-pwpolicy-inherit-global is on pwdPolicy_inherit_global_test.py 135 INFO Default value of passwordCheckSyntax is on pwdPolicy_inherit_global_test.py 243 INFO Bind as test user pwdPolicy_inherit_global_test.py 246 INFO Try to add user with a short password (<9) pwdPolicy_inherit_global_test.py 257 INFO Try to add user with a long password (>9) pwdPolicy_inherit_global_test.py 272 INFO Bind as DM user pwdPolicy_inherit_global_test.py 274 INFO Remove cn=test0,ou=People,dc=example,dc=com pwdPolicy_inherit_global_test.py 278 INFO There is no cn=test0,ou=People,dc=example,dc=com, it is okay | |||
Passed | suites/password/pwdPolicy_syntax_test.py::test_basic | 9.92 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. pwdPolicy_syntax_test.py 30 INFO Enable global password policy. Check for syntax.------------------------------ Captured log call ------------------------------- pwdPolicy_syntax_test.py 116 INFO Invalid password correctly rejected by passwordMinLength: length too short pwdPolicy_syntax_test.py 116 INFO Invalid password correctly rejected by passwordMinDigits: does not contain minimum number of digits pwdPolicy_syntax_test.py 116 INFO Invalid password correctly rejected by passwordMinAlphas: does not contain minimum number of alphas pwdPolicy_syntax_test.py 116 INFO Invalid password correctly rejected by passwordMaxRepeats: too many repeating characters pwdPolicy_syntax_test.py 116 INFO Invalid password correctly rejected by passwordMinSpecials: does not contain minimum number of special characters pwdPolicy_syntax_test.py 116 INFO Invalid password correctly rejected by passwordMinLowers: does not contain minimum number of lowercase characters pwdPolicy_syntax_test.py 116 INFO Invalid password correctly rejected by passwordMinUppers: does not contain minimum number of lowercase characters pwdPolicy_syntax_test.py 116 INFO Invalid password correctly rejected by passwordDictCheck: Password found in dictionary pwdPolicy_syntax_test.py 116 INFO Invalid password correctly rejected by passwordPalindrome: Password is palindrome pwdPolicy_syntax_test.py 116 INFO Invalid password correctly rejected by passwordMaxSequence: Max montonic sequence is not allowed pwdPolicy_syntax_test.py 116 INFO Invalid password correctly rejected by passwordMaxSequence: Max montonic sequence is not allowed pwdPolicy_syntax_test.py 116 INFO Invalid password correctly rejected by passwordMaxSequence: Max montonic sequence is not allowed pwdPolicy_syntax_test.py 116 INFO Invalid password correctly rejected by passwordMaxSequence: Max montonic sequence is not allowed pwdPolicy_syntax_test.py 116 INFO Invalid password correctly rejected by passwordMaxSeqSets: Max montonic sequence is not allowed pwdPolicy_syntax_test.py 116 INFO Invalid password correctly rejected by passwordMaxClassChars: Too may consecutive characters from the same class pwdPolicy_syntax_test.py 116 INFO Invalid password correctly rejected by passwordMaxClassChars: Too may consecutive characters from the same class pwdPolicy_syntax_test.py 116 INFO Invalid password correctly rejected by passwordMaxClassChars: Too may consecutive characters from the same class pwdPolicy_syntax_test.py 116 INFO Invalid password correctly rejected by passwordMaxClassChars: Too may consecutive characters from the same class pwdPolicy_syntax_test.py 116 INFO Invalid password correctly rejected by passwordBadWords: Too may consecutive characters from the same class pwdPolicy_syntax_test.py 116 INFO Invalid password correctly rejected by passwordBadWords: Too may consecutive characters from the same class pwdPolicy_syntax_test.py 116 INFO Invalid password correctly rejected by passwordUserAttributes: Password found in user entry pwdPolicy_syntax_test.py 307 INFO pwdPolicy tests PASSED | |||
Passed | suites/password/pwdPolicy_token_test.py::test_token_lengths | 3.70 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.------------------------------ Captured log call ------------------------------- pwdPolicy_token_test.py 59 INFO Testing password len 4 token (test) pwdPolicy_token_test.py 64 INFO Password correctly rejected: {'desc': 'Constraint violation', 'info': 'invalid password syntax - password based off of user entry'} pwdPolicy_token_test.py 59 INFO Testing password len 6 token (test_u) pwdPolicy_token_test.py 64 INFO Password correctly rejected: {'desc': 'Constraint violation', 'info': 'invalid password syntax - password based off of user entry'} pwdPolicy_token_test.py 59 INFO Testing password len 10 token (test_user1) pwdPolicy_token_test.py 64 INFO Password correctly rejected: {'desc': 'Constraint violation', 'info': 'invalid password syntax - password based off of user entry'} | |||
Passed | suites/password/pwdPolicy_warning_test.py::test_different_values[ ] | 0.01 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.------------------------------ Captured log call ------------------------------- pwdPolicy_warning_test.py 247 INFO Get the default value pwdPolicy_warning_test.py 251 INFO An invalid value is being tested pwdPolicy_warning_test.py 162 INFO Setting passwordSendExpiringTime to pwdPolicy_warning_test.py 255 INFO Now check the value is unchanged pwdPolicy_warning_test.py 258 INFO Invalid value was rejected correctly | |||
Passed | suites/password/pwdPolicy_warning_test.py::test_different_values[junk123] | 0.01 | |
------------------------------ Captured log call ------------------------------- pwdPolicy_warning_test.py 247 INFO Get the default value pwdPolicy_warning_test.py 251 INFO An invalid value is being tested pwdPolicy_warning_test.py 162 INFO Setting passwordSendExpiringTime to junk123 pwdPolicy_warning_test.py 255 INFO Now check the value is unchanged pwdPolicy_warning_test.py 258 INFO Invalid value junk123 was rejected correctly | |||
Passed | suites/password/pwdPolicy_warning_test.py::test_different_values[on] | 1.02 | |
------------------------------ Captured log call ------------------------------- pwdPolicy_warning_test.py 247 INFO Get the default value pwdPolicy_warning_test.py 260 INFO A valid value is being tested pwdPolicy_warning_test.py 162 INFO Setting passwordSendExpiringTime to on pwdPolicy_warning_test.py 263 INFO Now check that the value has been changed pwdPolicy_warning_test.py 266 INFO passwordSendExpiringTime is now set to on pwdPolicy_warning_test.py 268 INFO Set passwordSendExpiringTime back to the default value pwdPolicy_warning_test.py 162 INFO Setting passwordSendExpiringTime to b'off' | |||
Passed | suites/password/pwdPolicy_warning_test.py::test_different_values[off] | 1.02 | |
------------------------------ Captured log call ------------------------------- pwdPolicy_warning_test.py 247 INFO Get the default value pwdPolicy_warning_test.py 260 INFO A valid value is being tested pwdPolicy_warning_test.py 162 INFO Setting passwordSendExpiringTime to off pwdPolicy_warning_test.py 263 INFO Now check that the value has been changed pwdPolicy_warning_test.py 266 INFO passwordSendExpiringTime is now set to off pwdPolicy_warning_test.py 268 INFO Set passwordSendExpiringTime back to the default value pwdPolicy_warning_test.py 162 INFO Setting passwordSendExpiringTime to b'off' | |||
Passed | suites/password/pwdPolicy_warning_test.py::test_expiry_time | 0.13 | |
------------------------------ Captured log setup ------------------------------ pwdPolicy_warning_test.py 41 INFO Get the default values pwdPolicy_warning_test.py 48 INFO Set the new values pwdPolicy_warning_test.py 115 INFO Add the user------------------------------ Captured log call ------------------------------- pwdPolicy_warning_test.py 295 INFO Get the password expiry warning time pwdPolicy_warning_test.py 297 INFO Binding with (uid=tuser,dc=example,dc=com) and requesting the password expiry warning time pwdPolicy_warning_test.py 149 INFO Bind with the user and request the password expiry warning time pwdPolicy_warning_test.py 300 INFO Check whether the time is returned pwdPolicy_warning_test.py 304 INFO user's password will expire in 172800 seconds pwdPolicy_warning_test.py 306 INFO Rebinding as DM | |||
Passed | suites/password/pwdPolicy_warning_test.py::test_password_warning[passwordSendExpiringTime-off] | 0.63 | |
------------------------------ Captured log setup ------------------------------ pwdPolicy_warning_test.py 41 INFO Get the default values pwdPolicy_warning_test.py 48 INFO Set the new values pwdPolicy_warning_test.py 115 INFO Add the user------------------------------ Captured log call ------------------------------- pwdPolicy_warning_test.py 337 INFO Set configuration parameter pwdPolicy_warning_test.py 162 INFO Setting passwordSendExpiringTime to off pwdPolicy_warning_test.py 341 INFO Binding with (uid=tuser,dc=example,dc=com) and requesting password expiry warning time pwdPolicy_warning_test.py 149 INFO Bind with the user and request the password expiry warning time pwdPolicy_warning_test.py 344 INFO Check the state of the control pwdPolicy_warning_test.py 347 INFO Password Expiry warning time is not returned as passwordSendExpiringTime is set to off pwdPolicy_warning_test.py 352 INFO Rebinding as DM | |||
Passed | suites/password/pwdPolicy_warning_test.py::test_password_warning[passwordWarning-3600] | 0.64 | |
------------------------------ Captured log setup ------------------------------ pwdPolicy_warning_test.py 41 INFO Get the default values pwdPolicy_warning_test.py 48 INFO Set the new values pwdPolicy_warning_test.py 115 INFO Add the user------------------------------ Captured log call ------------------------------- pwdPolicy_warning_test.py 337 INFO Set configuration parameter pwdPolicy_warning_test.py 162 INFO Setting passwordWarning to 3600 pwdPolicy_warning_test.py 341 INFO Binding with (uid=tuser,dc=example,dc=com) and requesting password expiry warning time pwdPolicy_warning_test.py 149 INFO Bind with the user and request the password expiry warning time pwdPolicy_warning_test.py 344 INFO Check the state of the control pwdPolicy_warning_test.py 350 INFO (uid=tuser,dc=example,dc=com) password will expire in 172800 seconds pwdPolicy_warning_test.py 352 INFO Rebinding as DM | |||
Passed | suites/password/pwdPolicy_warning_test.py::test_with_different_password_states | 0.26 | |
------------------------------ Captured log setup ------------------------------ pwdPolicy_warning_test.py 41 INFO Get the default values pwdPolicy_warning_test.py 48 INFO Set the new values pwdPolicy_warning_test.py 115 INFO Add the user------------------------------ Captured log call ------------------------------- pwdPolicy_warning_test.py 385 INFO Expire user's password by changingpasswordExpirationTime timestamp pwdPolicy_warning_test.py 390 INFO Old passwordExpirationTime: b'20180925235100Z' pwdPolicy_warning_test.py 392 INFO New passwordExpirationTime: 20180825235100Z pwdPolicy_warning_test.py 396 INFO Attempting to bind with user uid=tuser,dc=example,dc=com and retrive the password expiry warning time pwdPolicy_warning_test.py 149 INFO Bind with the user and request the password expiry warning time pwdPolicy_warning_test.py 400 INFO Bind Failed, error: /usr/lib64/python3.6/site-packages/ldap/ldapobject.py:313: ldap.INVALID_CREDENTIALS: {'desc': 'Invalid credentials', 'info': 'password expired!'} pwdPolicy_warning_test.py 402 INFO Rebinding as DM pwdPolicy_warning_test.py 405 INFO Reverting back user's passwordExpirationTime pwdPolicy_warning_test.py 409 INFO Rebinding with uid=tuser,dc=example,dc=com and retrieving the password expiry warning time pwdPolicy_warning_test.py 149 INFO Bind with the user and request the password expiry warning time pwdPolicy_warning_test.py 412 INFO Check that the control is returned pwdPolicy_warning_test.py 416 INFO user's password will expire in 172800 seconds pwdPolicy_warning_test.py 418 INFO Rebinding as DM | |||
Passed | suites/password/pwdPolicy_warning_test.py::test_default_behavior | 0.13 | |
------------------------------ Captured log setup ------------------------------ pwdPolicy_warning_test.py 78 INFO Get the default values pwdPolicy_warning_test.py 84 INFO Set the new values pwdPolicy_warning_test.py 115 INFO Add the user------------------------------ Captured log call ------------------------------- pwdPolicy_warning_test.py 445 INFO Binding with uid=tuser,dc=example,dc=com and requesting the password expiry warning time pwdPolicy_warning_test.py 149 INFO Bind with the user and request the password expiry warning time pwdPolicy_warning_test.py 448 INFO Check that no control is returned pwdPolicy_warning_test.py 451 INFO Rebinding as DM | |||
Passed | suites/password/pwdPolicy_warning_test.py::test_when_maxage_and_warning_are_the_same | 0.22 | |
------------------------------ Captured log setup ------------------------------ pwdPolicy_warning_test.py 78 INFO Get the default values pwdPolicy_warning_test.py 84 INFO Set the new values pwdPolicy_warning_test.py 115 INFO Add the user------------------------------ Captured log call ------------------------------- pwdPolicy_warning_test.py 480 INFO Set the new values pwdPolicy_warning_test.py 484 INFO First change user's password to reset its password expiration time pwdPolicy_warning_test.py 490 INFO Binding with uid=tuser,dc=example,dc=com and requesting the password expiry warning time pwdPolicy_warning_test.py 149 INFO Bind with the user and request the password expiry warning time pwdPolicy_warning_test.py 493 INFO Check that control is returned evenif passwordSendExpiringTime is set to off pwdPolicy_warning_test.py 498 INFO user's password will expire in 86400 seconds pwdPolicy_warning_test.py 500 INFO 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 ------------------------------ pwdPolicy_warning_test.py 41 INFO Get the default values pwdPolicy_warning_test.py 48 INFO Set the new values pwdPolicy_warning_test.py 115 INFO Add the user pwdPolicy_warning_test.py 132 INFO Setting fine grained policy for user (uid=tuser,dc=example,dc=com)------------------------------ Captured log call ------------------------------- pwdPolicy_warning_test.py 528 INFO Attempting to get password expiry warning time for user uid=tuser,dc=example,dc=com pwdPolicy_warning_test.py 149 INFO Bind with the user and request the password expiry warning time pwdPolicy_warning_test.py 531 INFO Check that the control is not returned pwdPolicy_warning_test.py 534 INFO Password expiry warning time is not returned pwdPolicy_warning_test.py 536 INFO Rebinding as DM | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[CLEAR] | 0.20 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.------------------------------ Captured log call ------------------------------- pwd_algo_test.py 139 INFO Test CLEAR PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[CRYPT] | 0.16 | |
------------------------------ Captured log call ------------------------------- pwd_algo_test.py 139 INFO Test CRYPT PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[CRYPT-MD5] | 0.14 | |
------------------------------ Captured log call ------------------------------- pwd_algo_test.py 139 INFO Test CRYPT-MD5 PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[CRYPT-SHA256] | 0.16 | |
------------------------------ Captured log call ------------------------------- pwd_algo_test.py 139 INFO Test CRYPT-SHA256 PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[CRYPT-SHA512] | 1.16 | |
------------------------------ Captured log call ------------------------------- pwd_algo_test.py 139 INFO Test CRYPT-SHA512 PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[MD5] | 0.19 | |
------------------------------ Captured log call ------------------------------- pwd_algo_test.py 139 INFO Test MD5 PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[SHA] | 0.20 | |
------------------------------ Captured log call ------------------------------- pwd_algo_test.py 139 INFO Test SHA PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[SHA256] | 0.19 | |
------------------------------ Captured log call ------------------------------- pwd_algo_test.py 139 INFO Test SHA256 PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[SHA384] | 0.19 | |
------------------------------ Captured log call ------------------------------- pwd_algo_test.py 139 INFO Test SHA384 PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[SHA512] | 0.19 | |
------------------------------ Captured log call ------------------------------- pwd_algo_test.py 139 INFO Test SHA512 PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[SMD5] | 0.19 | |
------------------------------ Captured log call ------------------------------- pwd_algo_test.py 139 INFO Test SMD5 PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[SSHA] | 0.19 | |
------------------------------ Captured log call ------------------------------- pwd_algo_test.py 139 INFO Test SSHA PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[SSHA256] | 1.19 | |
------------------------------ Captured log call ------------------------------- pwd_algo_test.py 139 INFO Test SSHA256 PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[SSHA384] | 0.19 | |
------------------------------ Captured log call ------------------------------- pwd_algo_test.py 139 INFO Test SSHA384 PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[SSHA512] | 0.19 | |
------------------------------ Captured log call ------------------------------- pwd_algo_test.py 139 INFO Test SSHA512 PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[PBKDF2_SHA256] | 0.40 | |
------------------------------ Captured log call ------------------------------- pwd_algo_test.py 139 INFO Test PBKDF2_SHA256 PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pwd_algo_test[DEFAULT] | 0.40 | |
------------------------------ Captured log call ------------------------------- pwd_algo_test.py 139 INFO Test DEFAULT PASSED | |||
Passed | suites/password/pwd_algo_test.py::test_pbkdf2_algo | 2.44 | |
------------------------------ Captured log call ------------------------------- pwd_algo_test.py 170 INFO Test PASSED | |||
Passed | suites/password/pwd_lockout_bypass_test.py::test_lockout_bypass | 0.22 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO 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.12 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.------------------------------ Captured log call ------------------------------- pwd_log_test.py 97 INFO Test complete pwd_log_test.py 112 INFO Test complete | |||
Passed | suites/password/pwp_history_test.py::test_basic | 8.14 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created.------------------------------ Captured log call ------------------------------- pwp_history_test.py 62 INFO Configured password policy. pwp_history_test.py 95 INFO Password change correctly rejected pwp_history_test.py 173 INFO Correct number of passwords found in history. pwp_history_test.py 187 INFO Password change correctly rejected pwp_history_test.py 199 INFO Password change correctly rejected pwp_history_test.py 209 INFO Password change correctly rejected pwp_history_test.py 246 INFO Password change correctly rejected pwp_history_test.py 251 INFO Test suite PASSED. | |||
Passed | suites/password/regression_test.py::test_pwp_local_unlock | 4.24 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ou=people,dc=example,dc=com ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. regression_test.py 44 INFO Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to on regression_test.py 52 INFO Configure subtree password policy for ou=people,dc=example,dc=com regression_test.py 74 INFO Adding user-uid=UIDpwtest1,ou=people,dc=example,dc=com------------------------------ Captured log call ------------------------------- regression_test.py 107 INFO Verify user can bind... regression_test.py 110 INFO Test passwordUnlock default - user should be able to reset password after lockout regression_test.py 121 INFO Verify account is locked regression_test.py 125 INFO Wait for lockout duration... regression_test.py 128 INFO Check if user can now bind with correct password | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[CNpwtest1] | 5.09 | |
------------------------------ Captured log call ------------------------------- regression_test.py 153 INFO Replace userPassword attribute with CNpwtest1 | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[SNpwtest1] | 0.08 | |
------------------------------ Captured log call ------------------------------- regression_test.py 153 INFO Replace userPassword attribute with SNpwtest1 | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[UIDpwtest1] | 0.10 | |
------------------------------ Captured log call ------------------------------- regression_test.py 153 INFO Replace userPassword attribute with UIDpwtest1 | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[MAILpwtest1@redhat.com] | 0.08 | |
------------------------------ Captured log call ------------------------------- regression_test.py 153 INFO Replace userPassword attribute with MAILpwtest1@redhat.com | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[GNpwtest1] | 0.08 | |
------------------------------ Captured log call ------------------------------- regression_test.py 153 INFO Replace userPassword attribute with GNpwtest1 | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[CNpwtest1ZZZZ] | 0.08 | |
------------------------------ Captured log call ------------------------------- regression_test.py 153 INFO Replace userPassword attribute with CNpwtest1ZZZZ | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[ZZZZZCNpwtest1] | 0.08 | |
------------------------------ Captured log call ------------------------------- regression_test.py 153 INFO Replace userPassword attribute with ZZZZZCNpwtest1 | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[ZCNpwtest1] | 0.08 | |
------------------------------ Captured log call ------------------------------- regression_test.py 153 INFO Replace userPassword attribute with ZCNpwtest1 | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[CNpwtest1Z] | 0.09 | |
------------------------------ Captured log call ------------------------------- regression_test.py 153 INFO Replace userPassword attribute with CNpwtest1Z | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[ZCNpwtest1Z] | 0.08 | |
------------------------------ Captured log call ------------------------------- regression_test.py 153 INFO Replace userPassword attribute with ZCNpwtest1Z | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[ZZCNpwtest1] | 0.08 | |
------------------------------ Captured log call ------------------------------- regression_test.py 153 INFO Replace userPassword attribute with ZZCNpwtest1 | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[CNpwtest1ZZ] | 0.08 | |
------------------------------ Captured log call ------------------------------- regression_test.py 153 INFO Replace userPassword attribute with CNpwtest1ZZ | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[ZZCNpwtest1ZZ] | 0.08 | |
------------------------------ Captured log call ------------------------------- regression_test.py 153 INFO Replace userPassword attribute with ZZCNpwtest1ZZ | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[ZZZCNpwtest1] | 0.08 | |
------------------------------ Captured log call ------------------------------- regression_test.py 153 INFO Replace userPassword attribute with ZZZCNpwtest1 | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[CNpwtest1ZZZ] | 0.08 | |
------------------------------ Captured log call ------------------------------- regression_test.py 153 INFO Replace userPassword attribute with CNpwtest1ZZZ | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[ZZZCNpwtest1ZZZ] | 0.08 | |
------------------------------ Captured log call ------------------------------- regression_test.py 153 INFO Replace userPassword attribute with ZZZCNpwtest1ZZZ | |||
Passed | suites/password/regression_test.py::test_trivial_passw_check[ZZZZZZCNpwtest1ZZZZZZZZ] | 0.08 | |
------------------------------ Captured log call ------------------------------- regression_test.py 153 INFO Replace userPassword attribute with ZZZZZZCNpwtest1ZZZZZZZZ | |||
Passed | suites/password/regression_test.py::test_global_vs_local[CNpwtest1] | 0.12 | |
------------------------------ Captured log call ------------------------------- regression_test.py 179 INFO Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off regression_test.py 183 INFO Replace userPassword attribute with CNpwtest1 | |||
Passed | suites/password/regression_test.py::test_global_vs_local[SNpwtest1] | 0.11 | |
------------------------------ Captured log call ------------------------------- regression_test.py 179 INFO Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off regression_test.py 183 INFO Replace userPassword attribute with SNpwtest1 | |||
Passed | suites/password/regression_test.py::test_global_vs_local[UIDpwtest1] | 0.11 | |
------------------------------ Captured log call ------------------------------- regression_test.py 179 INFO Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off regression_test.py 183 INFO Replace userPassword attribute with UIDpwtest1 | |||
Passed | suites/password/regression_test.py::test_global_vs_local[MAILpwtest1@redhat.com] | 0.12 | |
------------------------------ Captured log call ------------------------------- regression_test.py 179 INFO Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off regression_test.py 183 INFO Replace userPassword attribute with MAILpwtest1@redhat.com | |||
Passed | suites/password/regression_test.py::test_global_vs_local[GNpwtest1] | 5.12 | |
------------------------------ Captured log call ------------------------------- regression_test.py 179 INFO Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off regression_test.py 183 INFO Replace userPassword attribute with GNpwtest1 | |||
Passed | suites/password/regression_test.py::test_global_vs_local[CNpwtest1ZZZZ] | 0.12 | |
------------------------------ Captured log call ------------------------------- regression_test.py 179 INFO Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off regression_test.py 183 INFO Replace userPassword attribute with CNpwtest1ZZZZ | |||
Passed | suites/password/regression_test.py::test_global_vs_local[ZZZZZCNpwtest1] | 0.11 | |
------------------------------ Captured log call ------------------------------- regression_test.py 179 INFO Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off regression_test.py 183 INFO Replace userPassword attribute with ZZZZZCNpwtest1 | |||
Passed | suites/password/regression_test.py::test_global_vs_local[ZCNpwtest1] | 0.12 | |
------------------------------ Captured log call ------------------------------- regression_test.py 179 INFO Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off regression_test.py 183 INFO Replace userPassword attribute with ZCNpwtest1 | |||
Passed | suites/password/regression_test.py::test_global_vs_local[CNpwtest1Z] | 0.12 | |
------------------------------ Captured log call ------------------------------- regression_test.py 179 INFO Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off regression_test.py 183 INFO Replace userPassword attribute with CNpwtest1Z | |||
Passed | suites/password/regression_test.py::test_global_vs_local[ZCNpwtest1Z] | 0.12 | |
------------------------------ Captured log call ------------------------------- regression_test.py 179 INFO Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off regression_test.py 183 INFO Replace userPassword attribute with ZCNpwtest1Z | |||
Passed | suites/password/regression_test.py::test_global_vs_local[ZZCNpwtest1] | 0.11 | |
------------------------------ Captured log call ------------------------------- regression_test.py 179 INFO Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off regression_test.py 183 INFO Replace userPassword attribute with ZZCNpwtest1 | |||
Passed | suites/password/regression_test.py::test_global_vs_local[CNpwtest1ZZ] | 0.11 | |
------------------------------ Captured log call ------------------------------- regression_test.py 179 INFO Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off regression_test.py 183 INFO Replace userPassword attribute with CNpwtest1ZZ | |||
Passed | suites/password/regression_test.py::test_global_vs_local[ZZCNpwtest1ZZ] | 0.12 | |
------------------------------ Captured log call ------------------------------- regression_test.py 179 INFO Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off regression_test.py 183 INFO Replace userPassword attribute with ZZCNpwtest1ZZ | |||
Passed | suites/password/regression_test.py::test_global_vs_local[ZZZCNpwtest1] | 0.11 | |
------------------------------ Captured log call ------------------------------- regression_test.py 179 INFO Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off regression_test.py 183 INFO Replace userPassword attribute with ZZZCNpwtest1 | |||
Passed | suites/password/regression_test.py::test_global_vs_local[CNpwtest1ZZZ] | 0.12 | |
------------------------------ Captured log call ------------------------------- regression_test.py 179 INFO Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off regression_test.py 183 INFO Replace userPassword attribute with CNpwtest1ZZZ | |||
Passed | suites/password/regression_test.py::test_global_vs_local[ZZZCNpwtest1ZZZ] | 0.11 | |
------------------------------ Captured log call ------------------------------- regression_test.py 179 INFO Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off regression_test.py 183 INFO Replace userPassword attribute with ZZZCNpwtest1ZZZ | |||
Passed | suites/password/regression_test.py::test_global_vs_local[ZZZZZZCNpwtest1ZZZZZZZZ] | 0.11 | |
------------------------------ Captured log call ------------------------------- regression_test.py 179 INFO Configure Pwpolicy with PasswordCheckSyntax and nsslapd-pwpolicy-local set to off regression_test.py 183 INFO Replace userPassword attribute with ZZZZZZCNpwtest1ZZZZZZZZ | |||
Passed | suites/plugins/acceptance_test.py::test_acctpolicy | 10.97 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. topologies.py 106 INFO Instance with parameters {'ldap-port': 38902, 'ldap-secureport': 63602, 'server-id': 'standalone2', 'suffix': 'dc=example,dc=com'} was created.----------------------------- Captured stderr call ----------------------------- Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. | |||
Passed | suites/plugins/acceptance_test.py::test_attruniq | 14.39 | |
----------------------------- Captured stderr call ----------------------------- Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. | |||
Passed | suites/plugins/acceptance_test.py::test_automember | 21.48 | |
----------------------------- Captured stderr call ----------------------------- Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. | |||
Passed | suites/plugins/acceptance_test.py::test_dna | 14.42 | |
----------------------------- Captured stderr call ----------------------------- Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. | |||
Passed | suites/plugins/acceptance_test.py::test_linkedattrs | 21.45 | |
----------------------------- Captured stderr call ----------------------------- Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. | |||
Passed | suites/plugins/acceptance_test.py::test_memberof | 38.43 | |
----------------------------- Captured stderr call ----------------------------- Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. | |||
Passed | suites/plugins/acceptance_test.py::test_mep | 14.48 | |
----------------------------- Captured stderr call ----------------------------- Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. | |||
Passed | suites/plugins/acceptance_test.py::test_passthru | 23.95 | |
----------------------------- Captured stderr call ----------------------------- Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. | |||
Passed | suites/plugins/acceptance_test.py::test_referint | 10.12 | |
----------------------------- Captured stderr call ----------------------------- Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. | |||
Passed | suites/plugins/acceptance_test.py::test_retrocl | 19.01 | |
----------------------------- Captured stderr call ----------------------------- Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. | |||
Passed | suites/plugins/acceptance_test.py::test_rootdn | 30.14 | |
----------------------------- Captured stderr call ----------------------------- Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. Job for dirsrv@standalone1.service failed because the control process exited with error code. See "systemctl status dirsrv@standalone1.service" and "journalctl -xe" for details. | |||
Passed | suites/plugins/accpol_test.py::test_glact_inact | 27.52 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. accpol_test.py 32 INFO Configuring Global account policy plugin, pwpolicy attributes and restarting the server------------------------------ Captured log call ------------------------------- accpol_test.py 343 INFO AccountInactivityLimit set to 12. Account will be inactivated if not accessed in 12 secs accpol_test.py 266 INFO add_users: Pass all of these as parameters suffix, subtree, userid and nousrs accpol_test.py 345 INFO Sleep for 10 secs to check if account is not inactivated, expected value 0 accpol_test.py 347 INFO Account should not be inactivated since AccountInactivityLimit not exceeded accpol_test.py 349 INFO Sleep for 3 more secs to check if account is inactivated accpol_test.py 352 INFO Sleep +10 secs to check if account glinactusr3 is inactivated accpol_test.py 285 INFO del_users: Pass all of these as parameters suffix, subtree, userid and nousrs | |||
Passed | suites/plugins/accpol_test.py::test_glremv_lastlogin | 19.41 | |
------------------------------ Captured log call ------------------------------- accpol_test.py 386 INFO AccountInactivityLimit set to 12. Account will be inactivated if not accessed in 12 secs accpol_test.py 266 INFO add_users: Pass all of these as parameters suffix, subtree, userid and nousrs accpol_test.py 388 INFO Sleep for 6 secs to check if account is not inactivated, expected value 0 accpol_test.py 390 INFO Account should not be inactivated since AccountInactivityLimit not exceeded accpol_test.py 249 INFO Delete lastLoginTime/createTimeStamp/ModifyTimeStamp attribute from user account accpol_test.py 393 INFO Sleep for 7 more secs to check if account is inactivated accpol_test.py 214 INFO Enable account by replacing lastLoginTime/createTimeStamp/ModifyTimeStamp attribute accpol_test.py 397 INFO Check if account is activated, expected 0 accpol_test.py 285 INFO del_users: Pass all of these as parameters suffix, subtree, userid and nousrs | |||
Passed | suites/plugins/accpol_test.py::test_glact_login | 23.41 | |
------------------------------ Captured log call ------------------------------- accpol_test.py 426 INFO AccountInactivityLimit set to 12. Account will be inactivated if not accessed in 12 secs accpol_test.py 266 INFO add_users: Pass all of these as parameters suffix, subtree, userid and nousrs accpol_test.py 428 INFO Sleep for 13 secs to check if account is inactivated, expected error 19 accpol_test.py 214 INFO Enable account by replacing lastLoginTime/createTimeStamp/ModifyTimeStamp attribute accpol_test.py 432 INFO Check if account is activated, expected 0 accpol_test.py 285 INFO del_users: Pass all of these as parameters suffix, subtree, userid and nousrs | |||
Passed | suites/plugins/accpol_test.py::test_glinact_limit | 123.01 | |
------------------------------ Captured log call ------------------------------- accpol_test.py 484 INFO AccountInactivityLimit set to 12. Account will be inactivated if not accessed in 12 secs accpol_test.py 266 INFO add_users: Pass all of these as parameters suffix, subtree, userid and nousrs accpol_test.py 486 INFO Sleep for 9 secs to check if account is not inactivated, expected 0 accpol_test.py 184 INFO Modify attribute value for a given DN accpol_test.py 184 INFO Modify attribute value for a given DN accpol_test.py 266 INFO add_users: Pass all of these as parameters suffix, subtree, userid and nousrs accpol_test.py 184 INFO Modify attribute value for a given DN accpol_test.py 266 INFO add_users: Pass all of these as parameters suffix, subtree, userid and nousrs accpol_test.py 508 INFO Check if account is activated, expected 0 accpol_test.py 214 INFO Enable account by replacing lastLoginTime/createTimeStamp/ModifyTimeStamp attribute accpol_test.py 184 INFO Modify attribute value for a given DN accpol_test.py 285 INFO del_users: Pass all of these as parameters suffix, subtree, userid and nousrs | |||
Passed | suites/plugins/accpol_test.py::test_glnologin_attr | 82.97 | |
------------------------------ Captured log call ------------------------------- accpol_test.py 567 INFO AccountInactivityLimit set to 12. Account will be inactivated if not accessed in 12 secs accpol_test.py 568 INFO Set attribute StateAttrName to createTimestamp, loginTime attr wont be considered accpol_test.py 184 INFO Modify attribute value for a given DN accpol_test.py 266 INFO add_users: Pass all of these as parameters suffix, subtree, userid and nousrs accpol_test.py 572 INFO Sleep for 9 secs to check if account is not inactivated, expected 0 accpol_test.py 184 INFO Modify attribute value for a given DN accpol_test.py 184 INFO Modify attribute value for a given DN accpol_test.py 266 INFO add_users: Pass all of these as parameters suffix, subtree, userid and nousrs accpol_test.py 184 INFO Modify attribute value for a given DN accpol_test.py 266 INFO add_users: Pass all of these as parameters suffix, subtree, userid and nousrs accpol_test.py 184 INFO Modify attribute value for a given DN accpol_test.py 597 INFO Set attribute StateAttrName to lastLoginTime, the default accpol_test.py 184 INFO Modify attribute value for a given DN accpol_test.py 214 INFO Enable account by replacing lastLoginTime/createTimeStamp/ModifyTimeStamp attribute accpol_test.py 601 INFO Check if account is activated, expected 0 accpol_test.py 285 INFO del_users: Pass all of these as parameters suffix, subtree, userid and nousrs | |||
Passed | suites/plugins/accpol_test.py::test_glnoalt_stattr | 56.49 | |
------------------------------ Captured log call ------------------------------- accpol_test.py 632 INFO Set attribute altStateAttrName to 1.1 accpol_test.py 184 INFO Modify attribute value for a given DN accpol_test.py 266 INFO add_users: Pass all of these as parameters suffix, subtree, userid and nousrs accpol_test.py 636 INFO Sleep for 13 secs to check if account is not inactivated, expected 0 accpol_test.py 639 INFO lastLoginTime attribute is added from the above ldap bind by userdn accpol_test.py 249 INFO Delete lastLoginTime/createTimeStamp/ModifyTimeStamp attribute from user account accpol_test.py 184 INFO Modify attribute value for a given DN accpol_test.py 214 INFO Enable account by replacing lastLoginTime/createTimeStamp/ModifyTimeStamp attribute accpol_test.py 285 INFO del_users: Pass all of these as parameters suffix, subtree, userid and nousrs | |||
Passed | suites/plugins/accpol_test.py::test_glattr_modtime | 44.97 | |
------------------------------ Captured log call ------------------------------- accpol_test.py 679 INFO Set attribute altStateAttrName to modifyTimestamp accpol_test.py 184 INFO Modify attribute value for a given DN accpol_test.py 266 INFO add_users: Pass all of these as parameters suffix, subtree, userid and nousrs accpol_test.py 683 INFO Sleep for 13 secs to check if account is inactivated, expected 0 accpol_test.py 197 INFO Check ModifyTimeStamp attribute present for user accpol_test.py 232 INFO Enable account by replacing cn attribute value, value of modifyTimeStamp changed accpol_test.py 184 INFO Modify attribute value for a given DN accpol_test.py 249 INFO Delete lastLoginTime/createTimeStamp/ModifyTimeStamp attribute from user account accpol_test.py 214 INFO Enable account by replacing lastLoginTime/createTimeStamp/ModifyTimeStamp attribute accpol_test.py 285 INFO del_users: Pass all of these as parameters suffix, subtree, userid and nousrs | |||
Passed | suites/plugins/accpol_test.py::test_glnoalt_nologin | 55.45 | |
------------------------------ Captured log call ------------------------------- accpol_test.py 734 INFO Set attribute altStateAttrName to 1.1 accpol_test.py 184 INFO Modify attribute value for a given DN accpol_test.py 736 INFO Set attribute alwaysrecordlogin to No accpol_test.py 184 INFO Modify attribute value for a given DN accpol_test.py 266 INFO add_users: Pass all of these as parameters suffix, subtree, userid and nousrs accpol_test.py 740 INFO Sleep for 13 secs to check if account is not inactivated, expected 0 accpol_test.py 745 INFO Set attribute altStateAttrName to createTimestamp accpol_test.py 184 INFO Modify attribute value for a given DN accpol_test.py 750 INFO Reset the default attribute values accpol_test.py 184 INFO Modify attribute value for a given DN accpol_test.py 214 INFO Enable account by replacing lastLoginTime/createTimeStamp/ModifyTimeStamp attribute accpol_test.py 285 INFO del_users: Pass all of these as parameters suffix, subtree, userid and nousrs | |||
Passed | suites/plugins/accpol_test.py::test_glinact_nsact | 37.50 | |
------------------------------ Captured log call ------------------------------- accpol_test.py 790 INFO AccountInactivityLimit set to 12. Account will be inactivated if not accessed in 12 secs accpol_test.py 266 INFO add_users: Pass all of these as parameters suffix, subtree, userid and nousrs accpol_test.py 792 INFO Sleep for 3 secs to check if account is not inactivated, expected value 0 accpol_test.py 157 INFO Account activate/in-activate/status using ns-activate/inactivate/accountstatus.pl accpol_test.py 161 INFO Running ns-activate.pl for user uid=nsactusr1,ou=groups,dc=example,dc=com accpol_test.py 175 INFO output: b'uid=nsactusr1,ou=groups,dc=example,dc=com already activated.\n' accpol_test.py 795 INFO Sleep for 10 secs to check if account is inactivated, expected value 19 accpol_test.py 157 INFO Account activate/in-activate/status using ns-activate/inactivate/accountstatus.pl accpol_test.py 161 INFO Running ns-activate.pl for user uid=nsactusr1,ou=groups,dc=example,dc=com accpol_test.py 175 INFO output: b'uid=nsactusr1,ou=groups,dc=example,dc=com already activated.\n' accpol_test.py 157 INFO Account activate/in-activate/status using ns-activate/inactivate/accountstatus.pl accpol_test.py 161 INFO Running ns-accountstatus.pl for user uid=nsactusr1,ou=groups,dc=example,dc=com accpol_test.py 175 INFO output: b'uid=nsactusr1,ou=groups,dc=example,dc=com - inactivated (inactivity limit exceeded).\n' accpol_test.py 214 INFO Enable account by replacing lastLoginTime/createTimeStamp/ModifyTimeStamp attribute accpol_test.py 157 INFO Account activate/in-activate/status using ns-activate/inactivate/accountstatus.pl accpol_test.py 161 INFO Running ns-accountstatus.pl for user uid=nsactusr1,ou=groups,dc=example,dc=com accpol_test.py 175 INFO output: b'uid=nsactusr1,ou=groups,dc=example,dc=com - activated.\n' accpol_test.py 285 INFO del_users: Pass all of these as parameters suffix, subtree, userid and nousrs | |||
Passed | suites/plugins/accpol_test.py::test_glinact_acclock | 40.50 | |
------------------------------ Captured log call ------------------------------- accpol_test.py 835 INFO AccountInactivityLimit set to 12. Account will be inactivated if not accessed in 12 secs accpol_test.py 266 INFO add_users: Pass all of these as parameters suffix, subtree, userid and nousrs accpol_test.py 837 INFO Sleep for 3 secs and try invalid binds to lockout the user accpol_test.py 114 INFO Lockout user account by attempting invalid password binds accpol_test.py 841 INFO Sleep for 10 secs to check if account is inactivated, expected value 19 accpol_test.py 845 INFO Add lastLoginTime to activate the user account accpol_test.py 214 INFO Enable account by replacing lastLoginTime/createTimeStamp/ModifyTimeStamp attribute accpol_test.py 849 INFO Checking if account is unlocked after passwordlockoutduration, but inactivated after accountInactivityLimit accpol_test.py 114 INFO Lockout user account by attempting invalid password binds accpol_test.py 853 INFO Account is expected to be unlocked after 5 secs of passwordlockoutduration accpol_test.py 857 INFO Sleep 13s and check if account inactivated based on accountInactivityLimit, expected 19 accpol_test.py 285 INFO del_users: Pass all of these as parameters suffix, subtree, userid and nousrs | |||
Passed | suites/plugins/accpol_test.py::test_glnact_pwexp | 50.27 | |
------------------------------ Captured log call ------------------------------- accpol_test.py 901 INFO AccountInactivityLimit set to 12. Account will be inactivated if not accessed in 12 secs accpol_test.py 902 INFO Passwordmaxage is set to 9. Password will expire in 9 secs accpol_test.py 266 INFO add_users: Pass all of these as parameters suffix, subtree, userid and nousrs accpol_test.py 905 INFO Sleep for 9 secs and check if password expired accpol_test.py 911 INFO Add lastLoginTime to activate the user account accpol_test.py 214 INFO Enable account by replacing lastLoginTime/createTimeStamp/ModifyTimeStamp attribute accpol_test.py 135 INFO Reset user password for user-uid=pwexpusr1,ou=groups,dc=example,dc=com accpol_test.py 135 INFO Reset user password for user-uid=pwexpusr1,ou=groups,dc=example,dc=com accpol_test.py 922 INFO Sleep for 4 secs and check if account is now inactivated, expected error 19 accpol_test.py 135 INFO Reset user password for user-uid=pwexpusr1,ou=groups,dc=example,dc=com accpol_test.py 214 INFO Enable account by replacing lastLoginTime/createTimeStamp/ModifyTimeStamp attribute accpol_test.py 135 INFO Reset user password for user-uid=pwexpusr1,ou=groups,dc=example,dc=com accpol_test.py 285 INFO del_users: Pass all of these as parameters suffix, subtree, userid and nousrs | |||
Passed | suites/plugins/accpol_test.py::test_locact_inact | 31.45 | |
------------------------------ Captured log setup ------------------------------ accpol_test.py 74 INFO Adding Local account policy plugin configuration entries------------------------------ Captured log call ------------------------------- accpol_test.py 974 INFO AccountInactivityLimit set to 10. Account will be inactivated if not accessed in 10 secs accpol_test.py 266 INFO add_users: Pass all of these as parameters suffix, subtree, userid and nousrs accpol_test.py 976 INFO Sleep for 9 secs to check if account is not inactivated, expected value 0 accpol_test.py 978 INFO Account should not be inactivated since AccountInactivityLimit not exceeded accpol_test.py 980 INFO Sleep for 2 more secs to check if account is inactivated accpol_test.py 983 INFO Sleep +9 secs to check if account inactusr3 is inactivated accpol_test.py 986 INFO Add lastLoginTime attribute to all users and check if its activated accpol_test.py 214 INFO Enable account by replacing lastLoginTime/createTimeStamp/ModifyTimeStamp attribute accpol_test.py 285 INFO del_users: Pass all of these as parameters suffix, subtree, userid and nousrs | |||
Passed | suites/plugins/accpol_test.py::test_locinact_modrdn | 27.43 | |
------------------------------ Captured log call ------------------------------- accpol_test.py 1020 INFO Account should not be inactivated since the subtree is not configured accpol_test.py 266 INFO add_users: Pass all of these as parameters suffix, subtree, userid and nousrs accpol_test.py 1022 INFO Sleep for 11 secs to check if account is not inactivated, expected value 0 accpol_test.py 1025 INFO Moving users from ou=groups to ou=people subtree accpol_test.py 1034 INFO Then wait for 11 secs and check if entries are inactivated accpol_test.py 214 INFO Enable account by replacing lastLoginTime/createTimeStamp/ModifyTimeStamp attribute accpol_test.py 285 INFO del_users: Pass all of these as parameters suffix, subtree, userid and nousrs | |||
Passed | suites/plugins/accpol_test.py::test_locact_modrdn | 15.28 | |
------------------------------ Captured log call ------------------------------- accpol_test.py 1066 INFO Account should be inactivated since the subtree is configured accpol_test.py 266 INFO add_users: Pass all of these as parameters suffix, subtree, userid and nousrs accpol_test.py 1068 INFO Sleep for 11 secs to check if account is inactivated, expected value 19 accpol_test.py 1071 INFO Moving users from ou=people to ou=groups subtree accpol_test.py 1079 INFO Sleep for +2 secs and check users from both ou=people and ou=groups subtree accpol_test.py 285 INFO 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.53 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO Instance with parameters {'ldap-port': 38901, 'ldap-secureport': 63601, 'server-id': 'standalone1', 'suffix': 'dc=example,dc=com'} was created. attr_nsslapd-pluginarg_test.py 30 INFO Ticket 47431 - 0: Enable 7bit plugin...------------------------------ Captured log call ------------------------------- attr_nsslapd-pluginarg_test.py 55 INFO Ticket 47431 - 1: Check 26 duplicate values are treated as one... attr_nsslapd-pluginarg_test.py 58 DEBUG modify_s cn=7-bit check,cn=plugins,cn=config attr_nsslapd-pluginarg_test.py 82 DEBUG line: [23/Sep/2018:20:07:25.528200338 -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. attr_nsslapd-pluginarg_test.py 83 INFO 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 attr_nsslapd-pluginarg_test.py 85 INFO Ticket 47431 - 1: done | |||
Passed | suites/plugins/attr_nsslapd-pluginarg_test.py::test_multiple_value | 4.60 | |
------------------------------ Captured log call ------------------------------- attr_nsslapd-pluginarg_test.py 110 INFO Ticket 47431 - 2: Check two values belonging to one arg is fixed... attr_nsslapd-pluginarg_test.py 130 DEBUG line - [23/Sep/2018:20:07:30.025925873 -0400] - DEBUG - NS7bitAttr - NS7bitAttr_Init - 0: uid attr_nsslapd-pluginarg_test.py 131 DEBUG ATTRS[0] uid attr_nsslapd-pluginarg_test.py 135 DEBUG uid was logged attr_nsslapd-pluginarg_test.py 130 DEBUG line - [23/Sep/2018:20:07:30.026640082 -0400] - DEBUG - NS7bitAttr - NS7bitAttr_Init - 1: mail attr_nsslapd-pluginarg_test.py 131 DEBUG ATTRS[1] mail attr_nsslapd-pluginarg_test.py 135 DEBUG mail was logged attr_nsslapd-pluginarg_test.py 130 DEBUG line - [23/Sep/2018:20:07:30.027141989 -0400] - DEBUG - NS7bitAttr - NS7bitAttr_Init - 2: userpassword attr_nsslapd-pluginarg_test.py 131 DEBUG ATTRS[2] userpassword attr_nsslapd-pluginarg_test.py 135 DEBUG userpassword was logged attr_nsslapd-pluginarg_test.py 130 DEBUG line - [23/Sep/2018:20:07:30.027637339 -0400] - DEBUG - NS7bitAttr - NS7bitAttr_Init - 3: , attr_nsslapd-pluginarg_test.py 131 DEBUG ATTRS[3] , attr_nsslapd-pluginarg_test.py 135 DEBUG , was logged attr_nsslapd-pluginarg_test.py 130 DEBUG line - [23/Sep/2018:20:07:30.028130900 -0400] - DEBUG - NS7bitAttr - NS7bitAttr_Init - 4: dc=example,dc=com attr_nsslapd-pluginarg_test.py 131 DEBUG ATTRS[4] dc=example,dc=com attr_nsslapd-pluginarg_test.py 135 DEBUG dc=example,dc=com was logged attr_nsslapd-pluginarg_test.py 141 INFO Ticket 47431 - 2: done | |||
Passed | suites/plugins/attr_nsslapd-pluginarg_test.py::test_missing_args | 3.56 | |
------------------------------ Captured log call ------------------------------- attr_nsslapd-pluginarg_test.py 169 INFO Ticket 47431 - 3: Check missing args are fixed... attr_nsslapd-pluginarg_test.py 196 DEBUG uid was logged attr_nsslapd-pluginarg_test.py 196 DEBUG mail was logged attr_nsslapd-pluginarg_test.py 196 DEBUG userpassword was logged attr_nsslapd-pluginarg_test.py 196 DEBUG , was logged attr_nsslapd-pluginarg_test.py 196 DEBUG dc=example,dc=com was logged attr_nsslapd-pluginarg_test.py 202 INFO Ticket 47431 - 3: done attr_nsslapd-pluginarg_test.py 203 INFO Test complete | |||
Passed | suites/plugins/memberof_test.py::test_betxnpostoperation_replace | 4.40 | |
---------------------------- Captured stdout setup ----------------------------- OK group dirsrv exists OK user dirsrv exists ------------------------------ Captured log setup ------------------------------ topologies.py 106 INFO 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.00 | |
No log output captured. | |||
Passed | suites/plugins/memberof_test.py::test_enable | 4.35 | |
------------------------------ Captured log call ------------------------------- memberof_test.py 179 INFO Enable MemberOf plugin | |||
Passed | suites/plugins/memberof_test.py::test_member_add | 0.02 | |
------------------------------ Captured log call ------------------------------- memberof_test.py 65 INFO Create user uid=user_memofenh1,ou=people,dc=example,dc=com memberof_test.py 65 INFO Create user uid=user_memofenh2,ou=people,dc=example,dc=com memberof_test.py 81 INFO Create group cn=group_memofegrp1,ou=groups,dc=example,dc=com memberof_test.py 81 INFO Create group cn=group_memofegrp2,ou=groups,dc=example,dc=com memberof_test.py 209 INFO Update b'uid=user_memofenh1,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp1,ou=groups,dc=example,dc=com' (member) memberof_test.py 210 INFO Update b'uid=user_memofenh2,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp1,ou=groups,dc=example,dc=com' (uniqueMember) memberof_test.py 213 INFO Update b'uid=user_memofenh1,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp2,ou=groups,dc=example,dc=com' (member) memberof_test.py 214 INFO Update b'uid=user_memofenh2,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp2,ou=groups,dc=example,dc=com' (uniqueMember) memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified | |||
Passed | suites/plugins/memberof_test.py::test_member_delete_gr1 | 0.00 | |
------------------------------ Captured log call ------------------------------- memberof_test.py 244 INFO 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) memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified | |||
Passed | suites/plugins/memberof_test.py::test_member_delete_gr2 | 0.01 | |
------------------------------ Captured log call ------------------------------- memberof_test.py 276 INFO 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) memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com | |||
Passed | suites/plugins/memberof_test.py::test_member_delete_all | 0.01 | |
------------------------------ Captured log call ------------------------------- memberof_test.py 308 INFO 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) memberof_test.py 312 INFO 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) memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' | |||
Passed | suites/plugins/memberof_test.py::test_member_after_restart | 8.63 | |
------------------------------ Captured log call ------------------------------- memberof_test.py 347 INFO Update b'uid=user_memofenh1,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp1,ou=groups,dc=example,dc=com' (member) memberof_test.py 351 INFO Update b'uid=user_memofenh2,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp2,ou=groups,dc=example,dc=com' (uniqueMember) memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 362 INFO Remove uniqueMember as a memberofgrpattr memberof_test.py 369 INFO Assert that this change of configuration did change the already set values memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified | |||
Passed | suites/plugins/memberof_test.py::test_memberofgroupattr_uid | 0.00 | |
------------------------------ Captured log call ------------------------------- memberof_test.py 398 ERROR Setting 'memberUid' as memberofgroupattr is rejected (expected) | |||
Passed | suites/plugins/memberof_test.py::test_member_add_duplicate_usr1 | 0.00 | |
------------------------------ Captured log call ------------------------------- memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 420 INFO Try b'uid=user_memofenh1,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp1,ou=groups,dc=example,dc=com' (member) memberof_test.py 427 ERROR 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.26 | |
------------------------------ Captured log call ------------------------------- memberof_test.py 448 INFO Check initial status memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 458 INFO Try b'uid=user_memofenh2,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp2,ou=groups,dc=example,dc=com' (member) memberof_test.py 465 ERROR 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) memberof_test.py 468 INFO Check final status memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified | |||
Passed | suites/plugins/memberof_test.py::test_member_uniquemember_same_user | 0.02 | |
------------------------------ Captured log call ------------------------------- memberof_test.py 555 INFO Check initial status memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 81 INFO Create group cn=group_memofegrp3,ou=groups,dc=example,dc=com memberof_test.py 567 INFO Update b'uid=user_memofenh1,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp3,ou=groups,dc=example,dc=com' (member) memberof_test.py 568 INFO Update b'uid=user_memofenh1,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp3,ou=groups,dc=example,dc=com' (uniqueMember) memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 580 INFO 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) memberof_test.py 584 INFO Update b'uid=user_memofenh2,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp3,ou=groups,dc=example,dc=com' (member) memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 611 INFO Checking final status memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified | |||
Passed | suites/plugins/memberof_test.py::test_member_not_exists | 0.01 | |
------------------------------ Captured log call ------------------------------- memberof_test.py 669 INFO Checking Initial status memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 81 INFO Create group cn=group_memofegrp015,ou=groups,dc=example,dc=com memberof_test.py 689 INFO Update b'uid=user_dummy1,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp015,ou=groups,dc=example,dc=com' (member) memberof_test.py 690 INFO Update b'uid=user_dummy2,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp015,ou=groups,dc=example,dc=com' (uniqueMember) memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com | |||
Passed | suites/plugins/memberof_test.py::test_member_not_exists_complex | 0.02 | |
------------------------------ Captured log call ------------------------------- memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 81 INFO Create group cn=group_memofegrp016,ou=groups,dc=example,dc=com memberof_test.py 804 INFO Update b'uid=user_memofenh1,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp016,ou=groups,dc=example,dc=com' (member) memberof_test.py 805 INFO Update b'uid=user_memofenh1,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp016,ou=groups,dc=example,dc=com' (uniqueMember) memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 833 INFO Update b'uid=user_dummy1,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp016,ou=groups,dc=example,dc=com' (member) memberof_test.py 843 INFO Update b'uid=user_dummy1,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp016,ou=groups,dc=example,dc=com' (uniqueMember) memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com | |||
Passed | suites/plugins/memberof_test.py::test_complex_group_scenario_1 | 0.28 | |
------------------------------ Captured log call ------------------------------- memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 65 INFO Create user uid=user_memofuser1,ou=people,dc=example,dc=com memberof_test.py 65 INFO Create user uid=user_memofuser2,ou=people,dc=example,dc=com memberof_test.py 65 INFO Create user uid=user_memofuser3,ou=people,dc=example,dc=com memberof_test.py 81 INFO Create group cn=group_memofegrp017,ou=groups,dc=example,dc=com memberof_test.py 1009 INFO Update b'uid=user_memofuser1,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp017,ou=groups,dc=example,dc=com' (member) memberof_test.py 1010 INFO Update b'uid=user_memofuser2,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp017,ou=groups,dc=example,dc=com' (uniqueMember) memberof_test.py 1011 INFO Update b'uid=user_memofuser3,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp017,ou=groups,dc=example,dc=com' (memberuid) memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' memberof_test.py 107 INFO 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.03 | |
------------------------------ Captured log call ------------------------------- memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' memberof_test.py 81 INFO Create group cn=group_memofegrp018,ou=groups,dc=example,dc=com memberof_test.py 1259 INFO Update b'uid=user_memofuser1,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp017,ou=groups,dc=example,dc=com' (member) memberof_test.py 1260 INFO Update b'uid=user_memofuser1,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp017,ou=groups,dc=example,dc=com' (uniqueMember) memberof_test.py 1261 INFO Update b'uid=user_memofuser1,ou=people,dc=example,dc=com' is memberof b'cn=group_memofegrp017,ou=groups,dc=example,dc=com' (memberuid) memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp018,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp018,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp018,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp018,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp018,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp018,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 1281 INFO 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) memberof_test.py 1282 INFO 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) memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp017,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com | |||
Passed | suites/plugins/memberof_test.py::test_complex_group_scenario_3 | 0.06 | |
------------------------------ Captured log call ------------------------------- memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 65 INFO Create user uid=user_memofuser2,ou=people,dc=example,dc=com memberof_test.py 65 INFO Create user uid=user_memofuser3,ou=people,dc=example,dc=com memberof_test.py 81 INFO Create group cn=group_memofegrp019_2,ou=groups,dc=example,dc=com memberof_test.py 81 INFO Create group cn=group_memofegrp019_3,ou=groups,dc=example,dc=com memberof_test.py 81 INFO Create group cn=group_memofegrp019_1,ou=groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'cn=group_memofegrp019_1,ou=groups,dc=example,dc=com' memberof_test.py 107 INFO Lookup memberof from b'cn=group_memofegrp019_1,ou=groups,dc=example,dc=com' memberof_test.py 107 INFO Lookup memberof from b'cn=group_memofegrp019_1,ou=groups,dc=example,dc=com' memberof_test.py 107 INFO Lookup memberof from b'cn=group_memofegrp019_1,ou=groups,dc=example,dc=com' memberof_test.py 107 INFO Lookup memberof from b'cn=group_memofegrp019_1,ou=groups,dc=example,dc=com' memberof_test.py 107 INFO Lookup memberof from b'cn=group_memofegrp019_1,ou=groups,dc=example,dc=com' memberof_test.py 107 INFO Lookup memberof from b'cn=group_memofegrp019_1,ou=groups,dc=example,dc=com' memberof_test.py 107 INFO Lookup memberof from b'cn=group_memofegrp019_1,ou=groups,dc=example,dc=com' memberof_test.py 107 INFO Lookup memberof from b'cn=group_memofegrp019_1,ou=groups,dc=example,dc=com' memberof_test.py 107 INFO Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'cn=group_memofegrp019_2,ou=groups,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_2,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser2,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_2,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp019_1,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofuser3,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp019_3,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py 114 INFO memberof: cn=group_memofegrp1,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp3,ou=Groups,dc=example,dc=com memberof_test.py 114 INFO memberof: cn=group_memofegrp016,ou=Groups,dc=example,dc=com memberof_test.py 117 INFO --> membership verified memberof_test.py 107 INFO Lookup memberof from b'uid=user_memofenh1,ou=people,dc=example,dc=com' memberof_test.py |