tests: Add LDAP URI to ldappasswd explicitly

Tests should always rely on api.env.* values when possible.
Without this running the tests remotely can result in errors such
as ldap{search,modify,passwd} attempting to connect to the
wrong URI and failing.

https://fedorahosted.org/freeipa/ticket/6622

Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
Reviewed-By: Rob Crittenden <rcritten@redhat.com>
This commit is contained in:
David Kupka
2017-01-19 09:18:32 +01:00
committed by Tomas Krizek
parent 7a3da27816
commit 53abf0105b
2 changed files with 3 additions and 2 deletions

View File

@@ -1326,9 +1326,10 @@ def ldappasswd_user_change(user, oldpw, newpw, master):
basedn = master.domain.basedn
userdn = "uid={},{},{}".format(user, container_user, basedn)
master_ldap_uri = "ldap://{}".format(master.external_hostname)
args = [paths.LDAPPASSWD, '-D', userdn, '-w', oldpw, '-a', oldpw,
'-s', newpw, '-x']
'-s', newpw, '-x', '-H', master_ldap_uri]
master.run_command(args)