Test for invalid location constraint #38

Merged
ylukoyan merged 1 commit from EliChin/frostfs-testcases:feature/loc_constrain into master 2023-05-18 13:49:49 +00:00
2 changed files with 7 additions and 1 deletions

View file

@ -1,4 +1,4 @@
{
"rep-3": "REP 3",
"complex": "REP 1 IN X CBF 1 SELECT 1 FROM * AS X"
}
}
Review

Yet I don't understand why this file was touched :D

Yet I don't understand why this file was touched :D

View file

@ -90,6 +90,12 @@ class TestS3GatePolicy(ClusterTestBase):
)
assert copies_2 == 3
@allure.title("Test S3: bucket with unexisting location constraint")
def test_s3_bucket_wrong_location(self, s3_client: S3ClientWrapper):
with allure.step("Create bucket with unenxisting location constraint policy"):
with pytest.raises(Exception):
s3_client.create_bucket(location_constraint="UNEXISTING LOCATION CONSTRAINT")
@allure.title("Test S3: bucket policy ")
def test_s3_bucket_policy(self, s3_client: S3ClientWrapper):
with allure.step("Create bucket with default policy"):