S3 - test fix - Use plain text as content, instead of file

This commit is contained in:
Bert Blommers 2020-03-10 13:30:38 +00:00
parent f17d5f8e4d
commit e9930b0cb2

View File

@ -2030,17 +2030,15 @@ def test_boto3_s3_content_type():
s3 = boto3.resource("s3", region_name=DEFAULT_REGION_NAME) s3 = boto3.resource("s3", region_name=DEFAULT_REGION_NAME)
my_bucket = s3.Bucket("my-cool-bucket") my_bucket = s3.Bucket("my-cool-bucket")
my_bucket.create() my_bucket.create()
local_path = "test_s3.py" s3_path = "test_s3.py"
s3_path = local_path
s3 = boto3.resource("s3", verify=False) s3 = boto3.resource("s3", verify=False)
with open(local_path, "rb") as _file: content_type = "text/python-x"
content_type = mimetypes.guess_type(local_path) s3.Object(my_bucket.name, s3_path).put(
s3.Object(my_bucket.name, s3_path).put( ContentType=content_type, Body=b"some python code", ACL="public-read"
ContentType=content_type[0], Body=_file, ACL="public-read" )
)
s3.Object(my_bucket.name, s3_path).content_type.should.equal(content_type[0]) s3.Object(my_bucket.name, s3_path).content_type.should.equal(content_type)
@mock_s3 @mock_s3