summaryrefslogtreecommitdiffstats
path: root/ipatests/test_xmlrpc
diff options
context:
space:
mode:
authorLenka Doudova <ldoudova@redhat.com>2016-08-22 10:32:50 +0200
committerMartin Basti <mbasti@redhat.com>2016-08-24 16:00:25 +0200
commit3a555ece7978a863ed4cbb9a8c73eb489f58a876 (patch)
tree9a43be789c22fae987cf346aebfbefaed3d3f613 /ipatests/test_xmlrpc
parent95a594af4c99255ea4da27e609cf41b79ca7ed91 (diff)
downloadfreeipa-3a555ece7978a863ed4cbb9a8c73eb489f58a876.tar.gz
freeipa-3a555ece7978a863ed4cbb9a8c73eb489f58a876.tar.xz
freeipa-3a555ece7978a863ed4cbb9a8c73eb489f58a876.zip
Tests: Host tracker does not recognize 'ipakrboktoauthasdelegate' attribute
Due to [1] being implemented, retrieve and search tests with --all option specified fail due to extra attribute. [1] https://fedorahosted.org/freeipa/ticket/5764 Ticket: https://fedorahosted.org/freeipa/ticket/6240 Reviewed-By: Ganna Kaihorodova <gkaihoro@redhat.com>
Diffstat (limited to 'ipatests/test_xmlrpc')
-rw-r--r--ipatests/test_xmlrpc/tracker/host_plugin.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/ipatests/test_xmlrpc/tracker/host_plugin.py b/ipatests/test_xmlrpc/tracker/host_plugin.py
index 45be169e0..756190667 100644
--- a/ipatests/test_xmlrpc/tracker/host_plugin.py
+++ b/ipatests/test_xmlrpc/tracker/host_plugin.py
@@ -40,7 +40,7 @@ class HostTracker(KerberosAliasMixin, Tracker):
retrieve_all_keys = retrieve_keys | {
u'cn', u'ipakrbokasdelegate', u'ipakrbrequirespreauth', u'ipauniqueid',
u'krbcanonicalname', u'managing_host', u'objectclass',
- u'serverhostname'}
+ u'serverhostname', u'ipakrboktoauthasdelegate'}
create_keys = retrieve_keys | {'objectclass', 'ipauniqueid',
'randompassword'}
update_keys = retrieve_keys - {'dn'}
@@ -112,6 +112,7 @@ class HostTracker(KerberosAliasMixin, Tracker):
ipakrbrequirespreauth=True,
managing_host=[self.fqdn],
serverhostname=[self.shortname],
+ ipakrboktoauthasdelegate=False,
)
self.exists = True