AWS: I find that when we create a bucket in AWS, revoke the ACL, the owner of the bucket is still able to create objects in that bucket.
Ceph test: In this test- test_bucket_acl_no_grants, when the acls are revoked, when object creation is attempted it is expecting 'denied'
https://github.com/ceph/s3-tests/blob/master/s3tests/functional/test_s3.py
can't write
key = bucket.new_key('baz')
check_access_denied(key.set_contents_from_string, 'bar')
Could some one please suggest as I feel this is contradictory to AWS behaviour. Thanks.