You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
about test test_object_read_unreadable(full name: s3tests_boto3.functional.test_s3:test_object_read_unreadable).
As I understand in this test we try to get an object which does not exist in the bucket.
The PR was about the encoding utf-8 in the name of the key and the issue that was opened was about head-object (and not get-object).
If the object you request does not exist, the error Amazon S3 returns depends on whether you also have the s3:ListBucket permission. If you have the s3:ListBucket permission on the bucket, Amazon S3 will return an HTTP status code 404 ("no such key") error.
- ` eq(status, 400)`+ ` eq(status, 404)`- `eq(e.response['Error']['Message'], 'Couldn\'t parse the specified URI.')`+ `eq(e.response['Error']['Message'], 'The specified key does not exist.')`
In case the above is true, please let me know. I can create a PR with the fix.
In case not, please specify the details so I can test in AWS s3 console (it uses boto3 also).
The text was updated successfully, but these errors were encountered:
Hi,
about test
test_object_read_unreadable
(full name:s3tests_boto3.functional.test_s3:test_object_read_unreadable
).As I understand in this test we try to get an object which does not exist in the bucket.
The PR was about the encoding utf-8 in the name of the key and the issue that was opened was about head-object (and not get-object).
according to the documentation:
In case the above is true, please let me know. I can create a PR with the fix.
In case not, please specify the details so I can test in AWS s3 console (it uses boto3 also).
The text was updated successfully, but these errors were encountered: