diff options
Diffstat (limited to 'tempest/api/identity/admin/v3/test_trusts.py')
-rw-r--r-- | tempest/api/identity/admin/v3/test_trusts.py | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/tempest/api/identity/admin/v3/test_trusts.py b/tempest/api/identity/admin/v3/test_trusts.py index 4e69de8c6..1a466a003 100644 --- a/tempest/api/identity/admin/v3/test_trusts.py +++ b/tempest/api/identity/admin/v3/test_trusts.py @@ -20,6 +20,7 @@ from tempest import clients from tempest.common import credentials_factory as common_creds from tempest.common.utils import data_utils from tempest import config +from tempest.lib import decorators from tempest.lib import exceptions as lib_exc from tempest import test @@ -197,7 +198,7 @@ class TrustsV3TestJSON(BaseTrustsV3Test): self.create_trustor_and_roles() self.addCleanup(self.cleanup_user_and_roles) - @test.idempotent_id('5a0a91a4-baef-4a14-baba-59bf4d7fcace') + @decorators.idempotent_id('5a0a91a4-baef-4a14-baba-59bf4d7fcace') def test_trust_impersonate(self): # Test case to check we can create, get and delete a trust # updates are not supported for trusts @@ -209,7 +210,7 @@ class TrustsV3TestJSON(BaseTrustsV3Test): self.check_trust_roles() - @test.idempotent_id('ed2a8779-a7ac-49dc-afd7-30f32f936ed2') + @decorators.idempotent_id('ed2a8779-a7ac-49dc-afd7-30f32f936ed2') def test_trust_noimpersonate(self): # Test case to check we can create, get and delete a trust # with impersonation=False @@ -221,7 +222,7 @@ class TrustsV3TestJSON(BaseTrustsV3Test): self.check_trust_roles() - @test.idempotent_id('0ed14b66-cefd-4b5c-a964-65759453e292') + @decorators.idempotent_id('0ed14b66-cefd-4b5c-a964-65759453e292') def test_trust_expire(self): # Test case to check we can create, get and delete a trust # with an expiry specified @@ -246,7 +247,7 @@ class TrustsV3TestJSON(BaseTrustsV3Test): self.check_trust_roles() - @test.idempotent_id('3e48f95d-e660-4fa9-85e0-5a3d85594384') + @decorators.idempotent_id('3e48f95d-e660-4fa9-85e0-5a3d85594384') def test_trust_expire_invalid(self): # Test case to check we can check an invalid expiry time # is rejected with the correct error @@ -256,7 +257,7 @@ class TrustsV3TestJSON(BaseTrustsV3Test): self.create_trust, expires=expires_str) - @test.idempotent_id('6268b345-87ca-47c0-9ce3-37792b43403a') + @decorators.idempotent_id('6268b345-87ca-47c0-9ce3-37792b43403a') def test_get_trusts_query(self): self.create_trust() trusts_get = self.trustor_client.list_trusts( @@ -265,7 +266,7 @@ class TrustsV3TestJSON(BaseTrustsV3Test): self.validate_trust(trusts_get[0], summary=True) @test.attr(type='smoke') - @test.idempotent_id('4773ebd5-ecbf-4255-b8d8-b63e6f72b65d') + @decorators.idempotent_id('4773ebd5-ecbf-4255-b8d8-b63e6f72b65d') def test_get_trusts_all(self): # Simple function that can be used for cleanup |