Merge "Add missing test for the object storage v1 API"

This commit is contained in:
Jenkins 2016-06-03 19:49:56 +00:00 committed by Gerrit Code Review
commit 6e5dee3acf
1 changed files with 11 additions and 0 deletions

View File

@ -226,6 +226,17 @@ class AccountTest(base.BaseObjectTest):
self.assertEqual(len(container_list),
min(limit, self.containers_count - 2))
@test.idempotent_id('365e6fc7-1cfe-463b-a37c-8bd08d47b6aa')
def test_list_containers_with_prefix(self):
# list containers that have a name that starts with a prefix
prefix = '{0}-a'.format(CONF.resources_prefix)
params = {'prefix': prefix}
resp, container_list = self.account_client.list_account_containers(
params=params)
self.assertHeaders(resp, 'Account', 'GET')
for container in container_list:
self.assertEqual(True, container.startswith(prefix))
@test.attr(type='smoke')
@test.idempotent_id('4894c312-6056-4587-8d6f-86ffbf861f80')
def test_list_account_metadata(self):