55 lines
1.7 KiB
Python
55 lines
1.7 KiB
Python
from botocore.exceptions import ClientError
|
|
from moto import mock_s3
|
|
import boto3
|
|
import pytest
|
|
import sure # pylint: disable=unused-import
|
|
|
|
from .test_s3 import DEFAULT_REGION_NAME
|
|
|
|
|
|
@mock_s3
|
|
def test_multipart_should_throw_nosuchupload_if_there_are_no_parts():
|
|
bucket = boto3.resource("s3", region_name=DEFAULT_REGION_NAME).Bucket(
|
|
"randombucketname"
|
|
)
|
|
bucket.create()
|
|
s3_object = bucket.Object("my/test2")
|
|
|
|
multipart_upload = s3_object.initiate_multipart_upload()
|
|
multipart_upload.abort()
|
|
|
|
with pytest.raises(ClientError) as ex:
|
|
list(multipart_upload.parts.all())
|
|
err = ex.value.response["Error"]
|
|
err["Code"].should.equal("NoSuchUpload")
|
|
err["Message"].should.equal(
|
|
"The specified upload does not exist. The upload ID may be invalid, or the upload may have been aborted or completed."
|
|
)
|
|
err["UploadId"].should.equal(multipart_upload.id)
|
|
|
|
|
|
@mock_s3
|
|
def test_boto3_multipart_part_size():
|
|
bucket_name = "mputest-3593"
|
|
s3 = boto3.client("s3", region_name=DEFAULT_REGION_NAME)
|
|
s3.create_bucket(Bucket=bucket_name)
|
|
|
|
mpu = s3.create_multipart_upload(Bucket=bucket_name, Key="the-key")
|
|
mpu_id = mpu["UploadId"]
|
|
|
|
body = b"111"
|
|
with pytest.raises(ClientError) as ex:
|
|
s3.upload_part(
|
|
Bucket=bucket_name,
|
|
Key="the-key",
|
|
PartNumber=-1,
|
|
UploadId=mpu_id,
|
|
Body=body,
|
|
ContentLength=len(body),
|
|
)
|
|
err = ex.value.response["Error"]
|
|
err["Code"].should.equal("NoSuchUpload")
|
|
err["Message"].should.equal(
|
|
"The specified upload does not exist. The upload ID may be invalid, or the upload may have been aborted or completed."
|
|
)
|