summaryrefslogtreecommitdiff
path: root/tempest/api/object_storage/test_container_acl_negative.py
diff options
context:
space:
mode:
authorSean Dague <sean@dague.net>2015-04-27 09:00:33 -0400
committerSean Dague <sean@dague.net>2015-04-27 09:13:25 -0400
commit639f2fab968486784c275c08682aa37414b96442 (patch)
treea59d1f9995b8178ea286d6120e4f7402b7f2a5b8 /tempest/api/object_storage/test_container_acl_negative.py
parent1b05daaf2add62dc79335e3c559aac3c5482268f (diff)
downloadtempest-639f2fab968486784c275c08682aa37414b96442.tar.gz
remove gate tag (part 2)
This removes all the gate tags from negative tagged tests. The gate tag is obsolete, and it's existence in the code just makes for confusion. Change-Id: I2564d56fe1e0e21a88f3e1b19da8b644864d57cf
Diffstat (limited to 'tempest/api/object_storage/test_container_acl_negative.py')
-rw-r--r--tempest/api/object_storage/test_container_acl_negative.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/tempest/api/object_storage/test_container_acl_negative.py b/tempest/api/object_storage/test_container_acl_negative.py
index bbb44f4c6..f80cda488 100644
--- a/tempest/api/object_storage/test_container_acl_negative.py
+++ b/tempest/api/object_storage/test_container_acl_negative.py
@@ -46,7 +46,7 @@ class ObjectACLsNegativeTest(base.BaseObjectTest):
self.delete_containers([self.container_name])
super(ObjectACLsNegativeTest, self).tearDown()
- @test.attr(type=['negative', 'gate'])
+ @test.attr(type=['negative'])
@test.idempotent_id('af587587-0c24-4e15-9822-8352ce711013')
def test_write_object_without_using_creds(self):
# trying to create object with empty headers
@@ -60,7 +60,7 @@ class ObjectACLsNegativeTest(base.BaseObjectTest):
self.object_client.create_object,
self.container_name, object_name, 'data', headers={})
- @test.attr(type=['negative', 'gate'])
+ @test.attr(type=['negative'])
@test.idempotent_id('af85af0b-a025-4e72-a90e-121babf55720')
def test_delete_object_without_using_creds(self):
# create object
@@ -77,7 +77,7 @@ class ObjectACLsNegativeTest(base.BaseObjectTest):
self.object_client.delete_object,
self.container_name, object_name)
- @test.attr(type=['negative', 'gate'])
+ @test.attr(type=['negative'])
@test.idempotent_id('63d84e37-55a6-42e2-9e5f-276e60e26a00')
def test_write_object_with_non_authorized_user(self):
# attempt to upload another file using non-authorized user
@@ -92,7 +92,7 @@ class ObjectACLsNegativeTest(base.BaseObjectTest):
self.object_client.create_object,
self.container_name, object_name, 'data', headers={})
- @test.attr(type=['negative', 'gate'])
+ @test.attr(type=['negative'])
@test.idempotent_id('abf63359-be52-4feb-87dd-447689fc77fd')
def test_read_object_with_non_authorized_user(self):
# attempt to read object using non-authorized user
@@ -110,7 +110,7 @@ class ObjectACLsNegativeTest(base.BaseObjectTest):
self.object_client.get_object,
self.container_name, object_name)
- @test.attr(type=['negative', 'gate'])
+ @test.attr(type=['negative'])
@test.idempotent_id('7343ac3d-cfed-4198-9bb0-00149741a492')
def test_delete_object_with_non_authorized_user(self):
# attempt to delete object using non-authorized user