Build failed in Jenkins: NIGHTLY #102
by mareynol@redhat.com
See <http://vm-166.abc.idm.lab.eng.brq.redhat.com:8080/job/NIGHTLY/102/display...>
------------------------------------------
[...truncated 4641 lines...]
suites/replication/acceptance_test.py::test_modify_stripattrs PASSED
suites/replication/acceptance_test.py::test_new_suffix PASSED
suites/replication/acceptance_test.py::test_many_attrs PASSED
suites/replication/acceptance_test.py::test_double_delete PASSED
suites/replication/acceptance_test.py::test_password_repl_error PASSED
suites/replication/acceptance_test.py::test_invalid_agmt PASSED
suites/replication/changelog_test.py::test_verify_changelog PASSED
suites/replication/changelog_test.py::test_verify_changelog_online_backup PASSED
suites/replication/changelog_test.py::test_verify_changelog_offline_backup PASSED
suites/replication/cleanallruv_test.py::test_clean PASSED
suites/replication/cleanallruv_test.py::test_clean_restart PASSED
suites/replication/cleanallruv_test.py::test_clean_force PASSED
suites/replication/cleanallruv_test.py::test_abort PASSED
suites/replication/cleanallruv_test.py::test_abort_restart PASSED
suites/replication/cleanallruv_test.py::test_abort_certify PASSED
suites/replication/cleanallruv_test.py::test_stress_clean PASSED
suites/replication/cleanallruv_test.py::test_multiple_tasks_with_force PASSED
suites/replication/ruvstore_test.py::test_ruv_entry_backup PASSED
suites/replication/ruvstore_test.py::test_memoryruv_sync_with_databaseruv PASSED
suites/replication/single_master_test.py::test_mail_attr_repl PASSED
suites/replication/single_master_test.py::test_lastupdate_attr_before_init PASSED
suites/replication/tombstone_test.py::test_purge_success PASSED
suites/replication/wait_for_async_feature_test.py::test_not_int_value PASSED
suites/replication/wait_for_async_feature_test.py::test_multi_value PASSED
suites/replication/wait_for_async_feature_test.py::test_value_check[waitfor_async_attr0] PASSED
suites/replication/wait_for_async_feature_test.py::test_value_check[waitfor_async_attr1] PASSED
suites/replication/wait_for_async_feature_test.py::test_value_check[waitfor_async_attr2] PASSED
suites/replication/wait_for_async_feature_test.py::test_value_check[waitfor_async_attr3] PASSED
suites/replication/wait_for_async_feature_test.py::test_behavior_with_value[waitfor_async_attr0] PASSED
suites/replication/wait_for_async_feature_test.py::test_behavior_with_value[waitfor_async_attr1] PASSED
suites/replication/wait_for_async_feature_test.py::test_behavior_with_value[waitfor_async_attr2] PASSED
suites/replication/wait_for_async_feature_test.py::test_behavior_with_value[waitfor_async_attr3] PASSED
suites/schema/schema_reload_test.py::test_valid_schema PASSED
suites/schema/schema_reload_test.py::test_invalid_schema PASSED
suites/schema/test_eduperson.py::test_account_locking PASSED
suites/schema/test_schema.py::test_schema_comparewithfiles PASSED
suites/setup_ds/setup_ds_test.py::test_slapd_InstScriptsEnabled[true] PASSED
suites/setup_ds/setup_ds_test.py::test_slapd_InstScriptsEnabled[false] PASSED
=================================== FAILURES ===================================
_______________________________ test_ticket48944 _______________________________
topo = <lib389.topologies.TopologyMain object at 0x7f0651a91150>
def test_ticket48944(topo):
"""On a read only replica invalid state info can accumulate
:ID: 833be131-f3bf-493e-97c6-3121438a07b1
:feature: Account Policy Plugin
:setup: Two master and two consumer setup
:steps: 1. Configure Account policy plugin with alwaysrecordlogin set to yes
2. Check if entries are synced across masters and consumers
3. Stop all masters and consumers
4. Start master1 and bind as user1 to create lastLoginTime attribute
5. Start master2 and wait for the sync of lastLoginTime attribute
6. Stop master1 and bind as user1 from master2
7. Check if lastLoginTime attribute is updated and greater than master1
8. Stop master2, start consumer1, consumer2 and then master2
9. Check if lastLoginTime attribute is updated on both consumers
10. Bind as user1 to both consumers and check the value is updated
11. Check if lastLoginTime attribute is not updated from consumers
12. Start master1 and make sure the lastLoginTime attribute is not updated on consumers
13. Bind as user1 from master1 and check if all masters and consumers have the same value
14. Check error logs of consumers for "deletedattribute;deleted" message
:expectedresults: No accumulation of replica invalid state info on consumers
"""
log.info("Ticket 48944 - On a read only replica invalid state info can accumulate")
user_name = '\''newbzusr'\''
tuserdn = '\''uid={}1,ou=people,{}'\''.format(user_name, SUFFIX)
inst_list = ['\''master1'\'', '\''master2'\'', '\''consumer1'\'', '\''consumer2'\'']
for inst_name in inst_list:
_enable_plugin(topo, inst_name)
log.info('\''Sleep for 10secs for the server to come up'\'')
time.sleep(10)
log.info('\''Add few entries to server and check if entries are replicated'\'')
for nos in range(10):
userdn = '\''uid={}{},ou=people,{}'\''.format(user_name, nos, SUFFIX)
try:
topo.ms['\''master1'\''].add_s(Entry((userdn, {
'\''objectclass'\'': '\''top person'\''.split(),
'\''objectclass'\'': '\''inetorgperson'\'',
'\''cn'\'': user_name,
'\''sn'\'': user_name,
'\''userpassword'\'': USER_PW,
'\''mail'\'': '\''{}(a)redhat.com'\''.format(user_name)})))
except ldap.LDAPError as e:
log.error('\''Failed to add {} user: error {}'\''.format(userdn, e.message['\''desc'\'']))
raise e
log.info('\''Checking if entries are synced across masters and consumers'\'')
entries_m1 = topo.ms['\''master1'\''].search_s(SUFFIX, ldap.SCOPE_SUBTREE, '\''uid={}*'\''.format(user_name), ['\''uid=*'\''])
exp_entries = str(entries_m1).count('\''dn: uid={}*'\''.format(user_name))
entries_m2 = topo.ms['\''master2'\''].search_s(SUFFIX, ldap.SCOPE_SUBTREE, '\''uid={}*'\''.format(user_name), ['\''uid=*'\''])
act_entries = str(entries_m2).count('\''dn: uid={}*'\''.format(user_name))
assert act_entries == exp_entries
inst_list = ['\''consumer1'\'', '\''consumer2'\'']
for inst in inst_list:
entries_other = topo.cs[inst].search_s(SUFFIX, ldap.SCOPE_SUBTREE, '\''uid={}*'\''.format(user_name), ['\''uid=*'\''])
act_entries = str(entries_other).count('\''dn: uid={}*'\''.format(user_name))
assert act_entries == exp_entries
topo.ms['\''master2'\''].stop(timeout=10)
topo.ms['\''master1'\''].stop(timeout=10)
topo.cs['\''consumer1'\''].stop(timeout=10)
topo.cs['\''consumer2'\''].stop(timeout=10)
topo.ms['\''master1'\''].start(timeout=10)
lastLogin_m1_1 = _last_login_time(topo, tuserdn, '\''master1'\'', '\''bind_n_check'\'')
log.info('\''Start master2 to sync lastLoginTime attribute from master1'\'')
topo.ms['\''master2'\''].start(timeout=10)
time.sleep(5)
log.info('\''Stop master1'\'')
topo.ms['\''master1'\''].stop(timeout=10)
log.info('\''Bind as user1 to master2 and check if lastLoginTime attribute is greater than master1'\'')
> lastLogin_m2_1 = _last_login_time(topo, tuserdn, '\''master2'\'', '\''bind_n_check'\'')
<http://vm-166.abc.idm.lab.eng.brq.redhat.com:8080/job/NIGHTLY/ws/source/3...>:156:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
<http://vm-166.abc.idm.lab.eng.brq.redhat.com:8080/job/NIGHTLY/ws/source/3...>:34: in _last_login_time
topo.ms[inst_name].simple_bind_s(userdn, USER_PW)
<http://vm-166.abc.idm.lab.eng.brq.redhat.com:8080/job/NIGHTLY/ws/source/l...>:162: in inner
return f(*args, **kwargs)
/usr/lib64/python2.7/site-packages/ldap/ldapobject.py:223: in simple_bind_s
resp_type, resp_data, resp_msgid, resp_ctrls = self.result3(msgid,all=1,timeout=self.timeout)
<http://vm-166.abc.idm.lab.eng.brq.redhat.com:8080/job/NIGHTLY/ws/source/l...>:162: in inner
return f(*args, **kwargs)
/usr/lib64/python2.7/site-packages/ldap/ldapobject.py:514: in result3
resp_ctrl_classes=resp_ctrl_classes
<http://vm-166.abc.idm.lab.eng.brq.redhat.com:8080/job/NIGHTLY/ws/source/l...>:162: in inner
return f(*args, **kwargs)
/usr/lib64/python2.7/site-packages/ldap/ldapobject.py:521: in result4
ldap_result = self._ldap_call(self._l.result4,msgid,all,timeout,add_ctrls,add_intermediates,add_extop)
<http://vm-166.abc.idm.lab.eng.brq.redhat.com:8080/job/NIGHTLY/ws/source/l...>:162: in inner
return f(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <lib389.DirSrv object at 0x7f0651bb4750>
func = <built-in method result4 of LDAP object at 0x7f06524f6bc0>
args = (2, 1, -1, 0, 0, 0), kwargs = {}, diagnostic_message_success = None
e = INVALID_CREDENTIALS({'\''desc'\'': '\''Invalid credentials'\''},)
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 INVALID_CREDENTIALS: {'\''desc'\'': '\''Invalid credentials'\''}
/usr/lib64/python2.7/site-packages/ldap/ldapobject.py:106: INVALID_CREDENTIALS
---------------------------- 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
('\''Update succeeded: status '\'', '\''0 Total update succeeded'\'')
('\''Update succeeded: status '\'', '\''0 Total update succeeded'\'')
('\''Update succeeded: status '\'', '\''0 Total update succeeded'\'')
---------------------------- Captured stderr setup -----------------------------
INFO:lib389.topologies:Instance with parameters {'\''ldap-port'\'': 39201, '\''suffix'\'': '\''dc=example,dc=com'\'', '\''krb5_realm'\'': None, '\''deployed-dir'\'': '\''/usr'\'', '\''inst-backupdir'\'': '\''/tmp'\'', '\''hostname'\'': '\''localhost'\'', '\''server-id'\'': '\''consumer1'\'', '\''root-pw'\'': '\''password'\'', '\''root-dn'\'': '\''cn=Directory Manager'\'', '\''group-id'\'': None, '\''InstScriptsEnabled'\'': None, '\''user-id'\'': None, '\''ldap-secureport'\'': None} was created.
INFO:lib389:Found entry dn: cn=replrepl,cn=config
cn: bind dn pseudo user
cn: replrepl
objectClass: top
objectClass: person
sn: bind dn pseudo user
userPassword: {PBKDF2_SHA256}AAAIAJ+Q9XaOfANyIdQxq9DuoYP5DlmQKaWdjEm0h2S9quClBUIbeqKZUTEHPrLU2peGTH08MknfZhsXZxQpGeL1pSDgdvWN33KQGin551lewNP0qB0N2wWltQpQ0BdsG9f9my2kGHTgONeMZqpnGNjQpiw+DRKkNaOFXL2ZRUmXNqtOxj1XRoyu4NwERrqIIsZD9zmsIIALLwXvmDj8alL8O3IdlNwOkDYZwpiFfDTsg5gPTV8dI8VFHKJdK+x1asaBiJ4p/TmXAyevM695wZqxmVmaCtc4qb9b7tHHpUD4a2oF8x+mnuDjzM4CDhNgreSoUjSannD4s+1ev8RerOtoTwk4pI0Ym8BDWlncGjKtCK5RrC9BiEqICMFX0oGiJQFV5Vck1VWozqlJsOTYBEYcLkJFhtoM8sT604xBJ14aFbAD
INFO:lib389.topologies:Instance with parameters {'\''ldap-port'\'': 39202, '\''suffix'\'': '\''dc=example,dc=com'\'', '\''krb5_realm'\'': None, '\''deployed-dir'\'': '\''/usr'\'', '\''inst-backupdir'\'': '\''/tmp'\'', '\''hostname'\'': '\''localhost'\'', '\''server-id'\'': '\''consumer2'\'', '\''root-pw'\'': '\''password'\'', '\''root-dn'\'': '\''cn=Directory Manager'\'', '\''group-id'\'': None, '\''InstScriptsEnabled'\'': None, '\''user-id'\'': None, '\''ldap-secureport'\'': None} was created.
INFO:lib389:Found entry dn: cn=replrepl,cn=config
cn: bind dn pseudo user
cn: replrepl
objectClass: top
objectClass: person
sn: bind dn pseudo user
userPassword: {PBKDF2_SHA256}AAAIADl94NV/5RgWbLTsBNgXGnuUvsMxaZtbsLlqfCo6+eSFm6rh5UToHcy1Qk6J3qRXXsgVVczvbE9/kiEhsg1lWRp1p3mpde/Lb3K5A2sL9RDMvfrtXZA9yXyzZ1h8qsOunPKhl+dlO2MFQ+RxmYQ0Z47uTxgPjvEtLfqNq9eBjLrMsqom0FOf/9L6mYR/QkqzVTDpB5Wfu1+cgr0/sdj624K2W2Vt0EupiEzOjziEIaOLJrSN9ZxFaTBJXwiDjXbHRAFMp72/8d2u/6mWk6Ilt2+vCAc+QiipS0N51uKd0Dn9Y3REZsXgSueVwBKwGzhsR4xV/9x4RwVJhoiufl7TbgM5xjnQKZh5noUKONxIDnHLq7ujewhkZOvfAoFgzqkC+geMVQO9LhopE+KyZBZ2jn3V5XOalZvh2ct0PZf5/zaa
INFO:lib389.topologies:Instance with parameters {'\''ldap-port'\'': 39001, '\''suffix'\'': '\''dc=example,dc=com'\'', '\''krb5_realm'\'': None, '\''deployed-dir'\'': '\''/usr'\'', '\''inst-backupdir'\'': '\''/tmp'\'', '\''hostname'\'': '\''localhost'\'', '\''server-id'\'': '\''master1'\'', '\''root-pw'\'': '\''password'\'', '\''root-dn'\'': '\''cn=Directory Manager'\'', '\''group-id'\'': None, '\''InstScriptsEnabled'\'': None, '\''user-id'\'': None, '\''ldap-secureport'\'': None} was created.
INFO:lib389:Found entry dn: cn=replrepl,cn=config
cn: bind dn pseudo user
cn: replrepl
objectClass: top
objectClass: person
sn: bind dn pseudo user
userPassword: {PBKDF2_SHA256}AAAIAHhDRcaOkv8wUcJHinQ7Z994nVNXTnh8EOe/d0HQGG+M68tEdbtEAzCGS0fL8Fzm4W8R9AHlU28YBWFzka3COf0jVYOplV+5SbwRmG7CR4ZX+IYXUl2xpzRthuRts6FE3UStOdrkuw/QBix0VfbCEfV3FHBYpyhThDGiqJkTN7j7i8zA4mjCHPiKWRNPozKH6aVAGl2gw41AtA6/0RjtF7wEn1vEYdFU93ei6I5ixq7v8uhtYk5Q/B1zoRRIG1X+h+3seUFE66+f/n7MsU8Fm/ZAOp/WUBGRQ8TiPyjZCkaeb3n4/h72nos6yfKFHzsUQY0gHUEUVhku3wFLG7fiX2skJbHsSwINaloL6y1b+dewn1uSefGCMi5G+QkjwqKyCJyj6b/Kb9DiAt/ornUNhBMoYB9QD0QGlnHNmr/EP83h
INFO:lib389.topologies:Instance with parameters {'\''ldap-port'\'': 39002, '\''suffix'\'': '\''dc=example,dc=com'\'', '\''krb5_realm'\'': None, '\''deployed-dir'\'': '\''/usr'\'', '\''inst-backupdir'\'': '\''/tmp'\'', '\''hostname'\'': '\''localhost'\'', '\''server-id'\'': '\''master2'\'', '\''root-pw'\'': '\''password'\'', '\''root-dn'\'': '\''cn=Directory Manager'\'', '\''group-id'\'': None, '\''InstScriptsEnabled'\'': None, '\''user-id'\'': None, '\''ldap-secureport'\'': None} was created.
INFO:lib389:Found entry dn: cn=replrepl,cn=config
cn: bind dn pseudo user
cn: replrepl
objectClass: top
objectClass: person
sn: bind dn pseudo user
userPassword: {PBKDF2_SHA256}AAAIAN7VzsqBEJ4iBqm9ckJlKg4PelTR7/cHsCNM8dds+CUNGGu/L4Kfb4ghpVTb8F04wsmlDshJAkpPUnjUTU673M9UppmnwN/kFMTOk2CJH01ks5JfOTS43+GsOkXQCGUQmHsSsiw03jAaDqlZdnmMJIFAOeG3dyu6TtieWvLezTLtAM3ddtmdUqMVA36L40oSaBKM2oTHqvlXa5zUBbEtdO71G395oEsDaMTx6cBxCd6hHx0OUEWUOuI7ERjK77h8bHp4JEWdhFvLB6LfyLnA5EmFDWSMS5clF9GJw6PJyAi/+A1JPz7eh03pylTxuZTauql2FAsyMvNUOTxeKFZitJ7eXHRLulueld8qDSjHQ3UGu8ztfIKjC811f1GtsZtQYVMM1OIFYabf6zS6GsjGTgqII/vwe/ZG44Iy8eOhsdGo
INFO:Replica:Starting async replication cn=meTo_localhost:39002,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config
INFO:Replica:Starting async replication cn=meTo_localhost:39201,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config
INFO:Replica:Starting async replication cn=meTo_localhost:39202,cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config
----------------------------- Captured stderr call -----------------------------
INFO:dirsrvtests.tests.tickets.ticket48944_test:Ticket 48944 - On a read only replica invalid state info can accumulate
INFO:dirsrvtests.tests.tickets.ticket48944_test:Enable account policy plugin and configure required attributes
INFO:dirsrvtests.tests.tickets.ticket48944_test:Configure Account policy plugin on master1
INFO:dirsrvtests.tests.tickets.ticket48944_test:Enable account policy plugin and configure required attributes
INFO:dirsrvtests.tests.tickets.ticket48944_test:Configure Account policy plugin on master2
INFO:dirsrvtests.tests.tickets.ticket48944_test:Enable account policy plugin and configure required attributes
INFO:dirsrvtests.tests.tickets.ticket48944_test:Configure Account policy plugin on consumer1
INFO:dirsrvtests.tests.tickets.ticket48944_test:Enable account policy plugin and configure required attributes
INFO:dirsrvtests.tests.tickets.ticket48944_test:Configure Account policy plugin on consumer2
INFO:dirsrvtests.tests.tickets.ticket48944_test:Sleep for 10secs for the server to come up
INFO:dirsrvtests.tests.tickets.ticket48944_test:Add few entries to server and check if entries are replicated
INFO:dirsrvtests.tests.tickets.ticket48944_test:Checking if entries are synced across masters and consumers
INFO:dirsrvtests.tests.tickets.ticket48944_test:Start master2 to sync lastLoginTime attribute from master1
INFO:dirsrvtests.tests.tickets.ticket48944_test:Stop master1
INFO:dirsrvtests.tests.tickets.ticket48944_test:Bind as user1 to master2 and check if lastLoginTime attribute is greater than master1
============== 1 failed, 621 passed, 1 skipped in 9143.01 seconds =============='
+ '[' 1 -ne 0 ']'
+ echo CI Tests 'FAILED!'
CI Tests FAILED!
+ MSG=FAILED
+ RC=1
+ sudo /usr/sbin/sendmail mreynolds(a)redhat.com firstyear(a)redhat.com
+ sudo rm -rf /var/tmp/slapd.vg.19176 /var/tmp/slapd.vg.46037 /var/tmp/slapd.vg.46166 /var/tmp/slapd.vg.63176
+ exit 1
Build step 'Execute shell' marked build as failure
5 years, 11 months
Build failed in Jenkins: NIGHTLY #100
by mareynol@redhat.com
See <http://vm-166.abc.idm.lab.eng.brq.redhat.com:8080/job/NIGHTLY/100/display...>
------------------------------------------
[...truncated 4467 lines...]
tickets/ticket49073_test.py:2: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
_________________ ERROR collecting tickets/ticket49076_test.py _________________
tickets/ticket49076_test.py:5: in <module>
from lib389 import DirSrv, Entry, tools, tasks
E ImportError: No module named lib389
_________________ ERROR collecting tickets/ticket49095_test.py _________________
tickets/ticket49095_test.py:5: in <module>
from lib389 import DirSrv, Entry, tools, tasks
E ImportError: No module named lib389
_________________ ERROR collecting tickets/ticket49104_test.py _________________
tickets/ticket49104_test.py:13: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
_________________ ERROR collecting tickets/ticket49121_test.py _________________
tickets/ticket49121_test.py:12: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
_________________ ERROR collecting tickets/ticket49122_test.py _________________
tickets/ticket49122_test.py:5: in <module>
from lib389 import Entry
E ImportError: No module named lib389
_________________ ERROR collecting tickets/ticket49180_test.py _________________
tickets/ticket49180_test.py:12: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
_________________ ERROR collecting tickets/ticket49184_test.py _________________
tickets/ticket49184_test.py:5: in <module>
from lib389 import DirSrv, Entry, tools, tasks
E ImportError: No module named lib389
_________________ ERROR collecting tickets/ticket49192_test.py _________________
tickets/ticket49192_test.py:5: in <module>
from lib389 import Entry
E ImportError: No module named lib389
_________________ ERROR collecting tickets/ticket49227_test.py _________________
tickets/ticket49227_test.py:6: in <module>
from lib389._constants import *
E ImportError: No module named lib389._constants
_________________ ERROR collecting tickets/ticket49249_test.py _________________
tickets/ticket49249_test.py:5: in <module>
from lib389 import DirSrv, Entry, tools, tasks
E ImportError: No module named lib389
_________________ ERROR collecting tickets/ticket49273_test.py _________________
tickets/ticket49273_test.py:13: in <module>
from lib389.topologies import topology_st
E ImportError: No module named lib389.topologies
_________________ ERROR collecting tickets/ticket49287_test.py _________________
tickets/ticket49287_test.py:10: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
_________________ ERROR collecting tickets/ticket49290_test.py _________________
tickets/ticket49290_test.py:13: in <module>
from lib389.topologies import topology_st
E ImportError: No module named lib389.topologies
_________________ ERROR collecting tickets/ticket49303_test.py _________________
tickets/ticket49303_test.py:14: in <module>
from lib389.topologies import topology_st as topo
E ImportError: No module named lib389.topologies
__________________ ERROR collecting tickets/ticket548_test.py __________________
tickets/ticket548_test.py:10: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
___________________ ERROR collecting suites/acl/acl_test.py ____________________
suites/acl/acl_test.py:11: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
_________________ ERROR collecting suites/basic/basic_test.py __________________
suites/basic/basic_test.py:17: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
_________________ ERROR collecting suites/betxns/betxn_test.py _________________
suites/betxns/betxn_test.py:11: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
___________________ ERROR collecting suites/clu/clu_test.py ____________________
suites/clu/clu_test.py:11: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
______________ ERROR collecting suites/config/autotuning_test.py _______________
suites/config/autotuning_test.py:10: in <module>
from lib389._mapped_object import DSLdapObject
E ImportError: No module named lib389._mapped_object
________________ ERROR collecting suites/config/config_test.py _________________
suites/config/config_test.py:12: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
_______________ ERROR collecting suites/cos/indirect_cos_test.py _______________
suites/cos/indirect_cos_test.py:8: in <module>
from lib389 import Entry
E ImportError: No module named lib389
_______________ ERROR collecting suites/ds_logs/ds_logs_test.py ________________
suites/ds_logs/ds_logs_test.py:12: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
______________ ERROR collecting suites/ds_logs/regression_test.py ______________
suites/ds_logs/regression_test.py:11: in <module>
from lib389.dseldif import DSEldif
E ImportError: No module named lib389.dseldif
_______________ ERROR collecting suites/ds_tools/logpipe_test.py _______________
suites/ds_tools/logpipe_test.py:11: in <module>
from lib389.utils import *
E ImportError: No module named lib389.utils
_______ ERROR collecting suites/dynamic_plugins/dynamic_plugins_test.py ________
suites/dynamic_plugins/dynamic_plugins_test.py:18: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
________________ ERROR collecting suites/filter/filter_test.py _________________
suites/filter/filter_test.py:12: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
________ ERROR collecting suites/filter/rfc3673_all_oper_attrs_test.py _________
suites/filter/rfc3673_all_oper_attrs_test.py:10: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
___________ ERROR collecting suites/gssapi_repl/gssapi_repl_test.py ____________
suites/gssapi_repl/gssapi_repl_test.py:10: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
__________ ERROR collecting suites/memory_leaks/range_search_test.py ___________
suites/memory_leaks/range_search_test.py:10: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
_________ ERROR collecting suites/paged_results/paged_results_test.py __________
suites/paged_results/paged_results_test.py:13: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
______________ ERROR collecting suites/password/password_test.py _______________
suites/password/password_test.py:12: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
______________ ERROR collecting suites/password/pwdAdmin_test.py _______________
suites/password/pwdAdmin_test.py:10: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
_________ ERROR collecting suites/password/pwdPolicy_attribute_test.py _________
suites/password/pwdPolicy_attribute_test.py:10: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
_________ ERROR collecting suites/password/pwdPolicy_controls_test.py __________
suites/password/pwdPolicy_controls_test.py:7: in <module>
from lib389.topologies import topology_st as topo
E ImportError: No module named lib389.topologies
______ ERROR collecting suites/password/pwdPolicy_inherit_global_test.py _______
suites/password/pwdPolicy_inherit_global_test.py:15: in <module>
from lib389 import Entry
E ImportError: No module named lib389
__________ ERROR collecting suites/password/pwdPolicy_syntax_test.py ___________
suites/password/pwdPolicy_syntax_test.py:12: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
__________ ERROR collecting suites/password/pwdPolicy_warning_test.py __________
suites/password/pwdPolicy_warning_test.py:12: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
______________ ERROR collecting suites/password/pwd_algo_test.py _______________
suites/password/pwd_algo_test.py:10: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
_________ ERROR collecting suites/password/pwd_lockout_bypass_test.py __________
suites/password/pwd_lockout_bypass_test.py:10: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
_____________ ERROR collecting suites/password/pwp_history_test.py _____________
suites/password/pwp_history_test.py:10: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
_____________ ERROR collecting suites/password/regression_test.py ______________
suites/password/regression_test.py:9: in <module>
from lib389._constants import SUFFIX, PASSWORD
E ImportError: No module named lib389._constants
________________ ERROR collecting suites/plugins/accpol_test.py ________________
suites/plugins/accpol_test.py:11: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
___________ ERROR collecting suites/plugins/attr_uniqueness_test.py ____________
suites/plugins/attr_uniqueness_test.py:10: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
_________________ ERROR collecting suites/plugins/dna_test.py __________________
suites/plugins/dna_test.py:10: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
_______________ ERROR collecting suites/plugins/memberof_test.py _______________
suites/plugins/memberof_test.py:10: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
____________ ERROR collecting suites/plugins/rootdn_plugin_test.py _____________
suites/plugins/rootdn_plugin_test.py:13: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
_______________ ERROR collecting suites/psearch/psearch_test.py ________________
suites/psearch/psearch_test.py:10: in <module>
from lib389._constants import DEFAULT_SUFFIX
E ImportError: No module named lib389._constants
____________ ERROR collecting suites/replication/acceptance_test.py ____________
suites/replication/acceptance_test.py:10: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
____________ ERROR collecting suites/replication/changelog_test.py _____________
suites/replication/changelog_test.py:14: in <module>
from lib389.properties import TASK_WAIT
E ImportError: No module named lib389.properties
___________ ERROR collecting suites/replication/cleanallruv_test.py ____________
suites/replication/cleanallruv_test.py:12: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
_____________ ERROR collecting suites/replication/ruvstore_test.py _____________
suites/replication/ruvstore_test.py:14: in <module>
from lib389.replica import Replicas
E ImportError: No module named lib389.replica
__________ ERROR collecting suites/replication/single_master_test.py ___________
suites/replication/single_master_test.py:10: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
____________ ERROR collecting suites/replication/tombstone_test.py _____________
suites/replication/tombstone_test.py:10: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
______ ERROR collecting suites/replication/wait_for_async_feature_test.py ______
suites/replication/wait_for_async_feature_test.py:12: in <module>
from lib389.tasks import *
E ImportError: No module named lib389.tasks
_____________ ERROR collecting suites/schema/schema_reload_test.py _____________
suites/schema/schema_reload_test.py:13: in <module>
from lib389.topologies import topology_st as topo
E ImportError: No module named lib389.topologies
_______________ ERROR collecting suites/schema/test_eduperson.py _______________
suites/schema/test_eduperson.py:16: in <module>
from lib389.idm.user import UserAccounts
E ImportError: No module named lib389.idm.user
________________ ERROR collecting suites/schema/test_schema.py _________________
suites/schema/test_schema.py:21: in <module>
from lib389._constants import *
E ImportError: No module named lib389._constants
______________ ERROR collecting suites/setup_ds/setup_ds_test.py _______________
suites/setup_ds/setup_ds_test.py:2: in <module>
from lib389.utils import *
E ImportError: No module named lib389.utils
========================== 162 error in 4.71 seconds ==========================='
+ '[' 1 -ne 0 ']'
+ echo CI Tests 'FAILED!'
CI Tests FAILED!
+ MSG=FAILED
+ RC=1
+ sudo /usr/sbin/sendmail mreynolds(a)redhat.com firstyear(a)redhat.com
+ sudo rm -rf '/var/tmp/slapd*'
+ exit 1
Build step 'Execute shell' marked build as failure
5 years, 11 months