Update v3 identity inherits tests to work w/ pre-prov

I don't see any limitations by using pre-provisioned credentials
for the tests:

* test_inherit_assign_list_check_revoke_roles_on_domains_group
* test_inherit_assign_check_revoke_roles_on_projects_group
* test_inherit_assign_list_check_revoke_roles_on_domains_user
* test_inherit_assign_list_check_revoke_roles_on_domains_group
* test_inherit_assign_check_revoke_roles_on_projects_user
* test_inherit_assign_list_revoke_user_roles_on_domain
* test_inherit_assign_list_revoke_user_roles_on_project_tree

By setting force_tenant_isolation=False these tests now be
can executed with backends that don't allow user creation
(immutable user source) like LDAP.

Partial-Bug: #1714277

Change-Id: I6b7bfbaef3355afede2adba56f342d5bfcbe3975
This commit is contained in:
Trevor McCasland 2019-01-17 10:04:40 -06:00 committed by Nicolas Helgeson
parent c3f07b441f
commit bd89841dc6
1 changed files with 4 additions and 0 deletions

View File

@ -21,6 +21,10 @@ CONF = config.CONF
class InheritsV3TestJSON(base.BaseIdentityV3AdminTest):
# NOTE: force_tenant_isolation is true in the base class by default but
# overridden to false here to allow test execution for clouds using the
# pre-provisioned credentials provider.
force_tenant_isolation = False
@classmethod
def skip_checks(cls):