From: Yehuda Sadeh Date: Wed, 16 Jan 2013 22:39:25 +0000 (-0800) Subject: test_s3: add test_object_copy_canned_acl X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=da7558e3abe277133e6ca2bea1aecac923e37ffa;p=s3-tests.git test_s3: add test_object_copy_canned_acl test copy object with canned acl modification Signed-off-by: Yehuda Sadeh --- diff --git a/s3tests/functional/test_s3.py b/s3tests/functional/test_s3.py index 3102dbbd..d6a2a2d9 100644 --- a/s3tests/functional/test_s3.py +++ b/s3tests/functional/test_s3.py @@ -3879,6 +3879,28 @@ def test_object_copy_not_owned_bucket(): except AttributeError: pass +@attr(resource='object') +@attr(method='put') +@attr(operation='copy object and change acl') +@attr(assertion='works') +@attr('fails_on_dho') +def test_object_copy_canned_acl(): + bucket = get_new_bucket() + key = bucket.new_key('foo123bar') + key.set_contents_from_string('foo') + + # use COPY directive + key2 = bucket.copy_key('bar321foo', bucket.name, 'foo123bar', headers={'x-amz-acl': 'public-read'}) + res = _make_request('GET', bucket, key2) + eq(res.status, 200) + eq(res.reason, 'OK') + + # use REPLACE directive + key3 = bucket.copy_key('bar321foo2', bucket.name, 'foo123bar', headers={'x-amz-acl': 'public-read'}, metadata={'abc': 'def'}) + res = _make_request('GET', bucket, key3) + eq(res.status, 200) + eq(res.reason, 'OK') + def transfer_part(bucket, mp_id, mp_keyname, i, part): """Transfer a part of a multipart upload. Designed to be run in parallel. """