diff options
author | Lenka Doudova <ldoudova@redhat.com> | 2016-08-22 13:39:32 +0200 |
---|---|---|
committer | Martin Basti <mbasti@redhat.com> | 2016-08-22 14:11:16 +0200 |
commit | 3d159c39c72ac43ae502f0cb978e534aa37f3b20 (patch) | |
tree | 82763e0c78bab04ec81bf8830c9140cc5f583c40 | |
parent | a14ebbea895a20f5a68052e32ba65c4fd7fdf670 (diff) | |
download | freeipa-3d159c39c72ac43ae502f0cb978e534aa37f3b20.tar.gz freeipa-3d159c39c72ac43ae502f0cb978e534aa37f3b20.tar.xz freeipa-3d159c39c72ac43ae502f0cb978e534aa37f3b20.zip |
Tests: ID views tests do not recognize ipakrboktoauthasdelegate sttribute
Due to implementation of [1], new attribute 'ipakrboktoauthasdelegate' was presented, but is not recognized by ID views tests, thus causing them to fail.
[1] https://fedorahosted.org/freeipa/ticket/5764
https://fedorahosted.org/freeipa/ticket/6241
Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
-rw-r--r-- | ipatests/test_xmlrpc/test_idviews_plugin.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ipatests/test_xmlrpc/test_idviews_plugin.py b/ipatests/test_xmlrpc/test_idviews_plugin.py index 9cd44fe2f..eeadc7cec 100644 --- a/ipatests/test_xmlrpc/test_idviews_plugin.py +++ b/ipatests/test_xmlrpc/test_idviews_plugin.py @@ -1027,6 +1027,7 @@ class test_idviews(Declarative): objectclass=objectclasses.host, serverhostname=[host3], ipaassignedidview=[idview1], + ipakrboktoauthasdelegate=False, ), ), ), @@ -1056,6 +1057,7 @@ class test_idviews(Declarative): serverhostname=[host2], memberof_hostgroup=[hostgroup2], memberofindirect_hostgroup=[hostgroup1], + ipakrboktoauthasdelegate=False, ), ), ), @@ -1109,6 +1111,7 @@ class test_idviews(Declarative): memberof_hostgroup=[hostgroup2], memberofindirect_hostgroup=[hostgroup1], ipaassignedidview=[idview1], + ipakrboktoauthasdelegate=False, ), ), ), @@ -1138,6 +1141,7 @@ class test_idviews(Declarative): serverhostname=[host1], memberof_hostgroup=[hostgroup1], ipaassignedidview=[idview1], + ipakrboktoauthasdelegate=False, ), ), ), @@ -1210,6 +1214,7 @@ class test_idviews(Declarative): objectclass=objectclasses.host, serverhostname=[host1], memberof_hostgroup=[hostgroup1], + ipakrboktoauthasdelegate=False, ), ), ), @@ -1237,6 +1242,7 @@ class test_idviews(Declarative): managing_host=[get_fqdn(host3)], objectclass=objectclasses.host, serverhostname=[host3], + ipakrboktoauthasdelegate=False, ), ), ), @@ -1489,6 +1495,7 @@ class test_idviews(Declarative): managing_host=[get_fqdn(host4)], objectclass=objectclasses.host, serverhostname=[host4], + ipakrboktoauthasdelegate=False, ), ), ), |