forked from TrueCloudLab/s3-tests
rgw/s3_boto3:Adds lifecycle transition test for invalid iso8601 date
(cherry picked from commit ba9525f425
)
This commit is contained in:
parent
f344fd6ca7
commit
e22a689a44
1 changed files with 13 additions and 0 deletions
|
@ -9713,6 +9713,19 @@ def test_lifecycle_multipart_expiration():
|
|||
eq(len(init_uploads), 2)
|
||||
eq(len(expired_uploads), 1)
|
||||
|
||||
@attr(resource='bucket')
|
||||
@attr(method='put')
|
||||
@attr(operation='set lifecycle config transition with not iso8601 date')
|
||||
@attr('lifecycle')
|
||||
@attr(assertion='fails 400')
|
||||
def test_lifecycle_transition_set_invalid_date():
|
||||
bucket_name = get_new_bucket()
|
||||
client = get_client()
|
||||
rules=[{'ID': 'rule1', 'Expiration': {'Date': '2023-09-27'},'Transitions': [{'Date': '20220927','StorageClass': 'GLACIER'}],'Prefix': 'test1/', 'Status':'Enabled'}]
|
||||
lifecycle = {'Rules': rules}
|
||||
e = assert_raises(ClientError, client.put_bucket_lifecycle_configuration, Bucket=bucket_name, LifecycleConfiguration=lifecycle)
|
||||
status, error_code = _get_status_and_error_code(e.response)
|
||||
eq(status, 400)
|
||||
|
||||
def _test_encryption_sse_customer_write(file_size):
|
||||
"""
|
||||
|
|
Loading…
Reference in a new issue