mirror of
https://github.com/ceph/s3-tests.git
synced 2024-11-22 09:29:43 +00:00
Add test for querying location
This commit is contained in:
parent
4a67f6c0f3
commit
ffdad9e22f
1 changed files with 10 additions and 0 deletions
|
@ -2798,6 +2798,16 @@ def test_bucket_create_exists():
|
||||||
get_new_bucket(targets.main.default, bucket.name)
|
get_new_bucket(targets.main.default, bucket.name)
|
||||||
|
|
||||||
|
|
||||||
|
@attr(resource='bucket')
|
||||||
|
@attr(method='get')
|
||||||
|
@attr(operation='get location')
|
||||||
|
def test_bucket_get_location():
|
||||||
|
bucket = get_new_bucket(targets.main.default)
|
||||||
|
actual_location = bucket.get_location()
|
||||||
|
expected_location = targets.main.default.conf.api_name
|
||||||
|
eq(actual_location, expected_location)
|
||||||
|
|
||||||
|
|
||||||
@attr(resource='bucket')
|
@attr(resource='bucket')
|
||||||
@attr(method='put')
|
@attr(method='put')
|
||||||
@attr(operation='re-create by non-owner')
|
@attr(operation='re-create by non-owner')
|
||||||
|
|
Loading…
Reference in a new issue