]>
git-server-git.apps.pok.os.sepia.ceph.com Git - s3-tests.git/log
yuliyang [Thu, 26 Oct 2017 10:27:23 +0000 (18:27 +0800)]
rgw: test cors option request with Access-Control-Request-Headers
test for https://github.com/ceph/ceph/pull/18556
Signed-off-by: yuliyang <yuliyang@cmss.chinamobile.com>
Yehuda Sadeh [Tue, 10 Oct 2017 18:49:42 +0000 (11:49 -0700)]
Merge pull request #190 from cbodley/wip-pr-17882
expect 400 for missing sse headers
Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
Casey Bodley [Tue, 10 Oct 2017 17:48:51 +0000 (13:48 -0400)]
expect 400 for missing sse headers
Signed-off-by: Casey Bodley <cbodley@redhat.com>
Yehuda Sadeh [Mon, 25 Sep 2017 16:15:07 +0000 (19:15 +0300)]
Merge pull request #171 from cbodley/wip-amz-date-precedence
check precedence of Date and X-Amz-Date in signatures
Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
Yehuda Sadeh [Wed, 20 Sep 2017 08:55:52 +0000 (11:55 +0300)]
Merge pull request #186 from tipabu/check-grant-ordering
Care less about ordering when checking grants
Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
Yehuda Sadeh [Tue, 19 Sep 2017 09:57:33 +0000 (12:57 +0300)]
Merge pull request #185 from theanalyst/lc-time-fixes
lc: Give more flexibility for LC expiration times
Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
Tim Burke [Tue, 12 Sep 2017 18:42:35 +0000 (12:42 -0600)]
Care less about ordering when checking grants
Some tests, like test_object_header_acl_grants and
test_bucket_header_acl_grants, use the same id for all permissions.
Sort() is stable, so those tests end up testing the order of acl grants
returned by Boto. Not sure, but I think this may in turn depend on the
order of HTTP headers, where the order is not significant.
Signed-off-by: Tim Burke <tim.burke@gmail.com>
Abhishek Lekshmanan [Thu, 7 Sep 2017 09:50:00 +0000 (11:50 +0200)]
lc: Give more flexibility for LC expiration times
Earlier values expected a lc debug interval of 2s, which is a pretty
short time window and can often lead to failures if the processing
didn't complete within the next day. This commit assumes the currently
configured LC debug interval of 10s, and gives time intervals using the
following logic:
Worst case:
LC start-time : 00:00
obj upload : 00:01
LC run1 : 00:10 -> object not expired as it is only 9s old
LC run2 : 00:20 -> object will expire in this run, however we
can't exactly guess when this run will complete, for a moderate amount
of objects this can take anywhere between 1 to a max of 10s, let us give
it a wiggle room to complete around 8s, given the amount of objects in a
teuthology run, it should be mostly probable that the object is already
deleted within this time, so at 28s, we should have seen day1 objects being
expired.
Best case:
LC start-time: 00:00
obj upload : 00:09
LC run1 : 00:10
LC run2 : 00:20 -> obj expires, so elapsed time is around 11->19s (of
course it would almost close to 10s too), We should probably configure
the LC lock time to 10s as well just so as to ensure that the lock isn't
held for the default 60s in which case it is possible that the object
might expire in a time greater than the lock interval.
Signed-off-by: Abhishek Lekshmanan <abhishek@suse.com>
Yehuda Sadeh [Wed, 30 Aug 2017 12:53:36 +0000 (15:53 +0300)]
Merge pull request #173 from chuang-he/fix_decrypt
Data encryption is not follow the AWS agreement
Reviewed-by: Casey Bodley <cbodley@redhat.com>
hechuang [Mon, 3 Jul 2017 04:11:08 +0000 (12:11 +0800)]
modify test_sse_kms_method_head() for aws standard
Signed-off-by: hechuang <hechuang@xsky.com>
hechuang [Fri, 30 Jun 2017 06:19:45 +0000 (14:19 +0800)]
add test_sse_kms_read_declare() for aws standard
Signed-off-by: hechuang <hechuang@xsky.com>
hechuang [Fri, 30 Jun 2017 05:56:58 +0000 (13:56 +0800)]
rgw: Data encryption is not follow the AWS agreement
Encryption request headers should not be sent for GET requests and HEAD
requests if your object uses SSE-KMS/SSE-S3 or you’ll get an HTTP 400
BadRequest error.
Signed-off-by: hechuang <hechuang@xsky.com>
Yehuda Sadeh [Wed, 16 Aug 2017 16:36:07 +0000 (09:36 -0700)]
Merge pull request #179 from andrewgaul/copy-part-invalid-range
Add test for invalid copy part range
Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
Yehuda Sadeh [Tue, 15 Aug 2017 15:43:53 +0000 (08:43 -0700)]
Merge pull request #181 from theanalyst/lc-expir-disable
lc: set attribute as lifecycle_time for lc tests using timing ops
Reviewed-by: Casey Bodley <cbodley@redhat.com>
Abhishek Lekshmanan [Mon, 14 Aug 2017 14:56:13 +0000 (16:56 +0200)]
lc: add attr lifecycle_expiration for lc tests using expiration
Allows us to additionally filter out these tests which currently fail in
the teuthology runs
Signed-off-by: Abhishek Lekshmanan <abhishek@suse.com>
Yehuda Sadeh [Tue, 15 Aug 2017 06:06:36 +0000 (23:06 -0700)]
Merge pull request #180 from theanalyst/lc-filter
lifecycle: add test cases using filter & no id
Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
Abhishek Lekshmanan [Fri, 11 Aug 2017 11:52:21 +0000 (13:52 +0200)]
lifecycle: add test cases using filter & no id
Added test cases for LC policies with no ID in xml, no prefix and an
empty and non empty Filter.
Signed-off-by: Abhishek Lekshmanan <abhishek@suse.com>
Andrew Gaul [Wed, 2 Aug 2017 01:14:28 +0000 (18:14 -0700)]
Add test for invalid copy part range
References kahing/goofys#212.
Signed-off-by: Andrew Gaul <andrew@gaul.org>
Matt Benjamin [Tue, 25 Jul 2017 17:27:14 +0000 (13:27 -0400)]
Merge pull request #159 from theanalyst/wip-tagging
add tests for tagging functionality
Abhishek Lekshmanan [Tue, 25 Jul 2017 08:32:05 +0000 (10:32 +0200)]
add tests for get/put/delete/post object tagging
- adds test for put obj with tagging query
- adds test for HEAD obj with x-amz-tagging-count verification
- adds test for put object tagging
- adds test for get object tagging
- adds test for post object tagging
- adds test for delete object tagging
- also verify& exceed the max tags
- add tagging condition to bucket acl
Signed-off-by: Abhishek Lekshmanan <abhishek@suse.com>
Yehuda Sadeh [Sat, 8 Jul 2017 00:08:51 +0000 (17:08 -0700)]
Merge pull request #167 from joke-lee/PolicyConditionOpEndWithifExist
add test case: test set policy with condition operator end with IfExists
Reviewed-By: Adam C. Emerson <aemerson@redhat.com>
yuliyang [Wed, 14 Jun 2017 02:57:30 +0000 (10:57 +0800)]
add test case: test set policy with condition operator end with IfExists
Signed-off-by: yuliyang <yuliyang@cmss.chinamobile.com>
Yehuda Sadeh [Fri, 7 Jul 2017 21:04:43 +0000 (14:04 -0700)]
Merge pull request #174 from ceph/wip-underscore-prefix
Add test for bucket list with prefix with underscore
Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
Yehuda Sadeh [Fri, 7 Jul 2017 20:59:34 +0000 (13:59 -0700)]
Merge pull request #170 from zhangsw/lifecycle-date
add test case for lifecycle expiration date.
Reviewed-by: Daniel Gryniewicz <dang@redhat.com>
Yehuda Sadeh [Fri, 7 Jul 2017 20:58:55 +0000 (13:58 -0700)]
Merge pull request #168 from zhangsw/lifecycle-expiration
modify the thread sleep time in lifecycle expiration test so that it can pass on ceph master branch.
Reviewed-by: Daniel Gryniewicz <dang@redhat.com>
Yehuda Sadeh [Fri, 7 Jul 2017 20:56:25 +0000 (13:56 -0700)]
Merge pull request #163 from pritha-srivastava/wip-rgw-bucket-policy-tests
rgw: Adding tests for Bucket Policy.
Reviewed-by: Adam C. Emerson <aemerson@redhat.com>
Orit Wasserman [Thu, 6 Jul 2017 12:28:50 +0000 (15:28 +0300)]
Add test for bucket list with prefix with underscore
Signed-off-by: Orit Wasserman <owasserm@redhat.com>
Casey Bodley [Wed, 21 Jun 2017 14:19:12 +0000 (10:19 -0400)]
check precedence of Date and X-Amz-Date in signatures
Signed-off-by: Casey Bodley <cbodley@redhat.com>
Yehuda Sadeh [Tue, 20 Jun 2017 17:47:49 +0000 (10:47 -0700)]
Merge pull request #166 from cbodley/wip-get-version
clear key.version_id now that GET requests return x-amz-version-id header
Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
Zhang Shaowen [Tue, 20 Jun 2017 08:32:24 +0000 (16:32 +0800)]
modify the thread sleep time in lifecycle expiration test so that it can
pass on ceph master branch.
Signed-off-by: Zhang Shaowen <zhangshaowen@cmss.chinamobile.com>
Zhang Shaowen [Mon, 19 Jun 2017 09:52:43 +0000 (17:52 +0800)]
add test case for lifecycle expiration date.
Signed-off-by: Zhang Shaowen <zhangshaowen@cmss.chinamobile.com>
Casey Bodley [Tue, 13 Jun 2017 19:07:54 +0000 (15:07 -0400)]
clear key.version_id now that GET requests return x-amz-version-id header
Signed-off-by: Casey Bodley <cbodley@redhat.com>
Pritha Srivastava [Tue, 9 May 2017 10:14:57 +0000 (15:44 +0530)]
rgw: Adding tests for Bucket Policy.
Signed-off-by: Pritha Srivastava <prsrivas@redhat.com>
Yehuda Sadeh [Tue, 6 Jun 2017 21:25:10 +0000 (14:25 -0700)]
Merge pull request #157 from zhangsw/verionid-getobjectmeta
Add test case for getting version id when getting object and object's metadata
Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
Yehuda Sadeh [Thu, 4 May 2017 16:37:12 +0000 (09:37 -0700)]
Merge pull request #158 from zhangsw/lifecycle-noncurrent
Test case for non-current expiration,multipart upload expiration and delete marker expiration
Reviewed-by: Daniel Gryniewicz <dang@redhat.com>
Zhang Shaowen [Wed, 12 Apr 2017 07:09:44 +0000 (15:09 +0800)]
Test case for non-current expiration, multipart upload expiration and
delete marker expiration.
Fixes: http://tracker.ceph.com/issues/19519
Signed-off-by: Zhang Shaowen <zhangshaowen@cmss.chinamobile.com>
Zhang Shaowen [Mon, 10 Apr 2017 09:58:26 +0000 (17:58 +0800)]
Add test case for getting version id when getting object and object's metadata
Fixes: http://tracker.ceph.com/issues/19565
Signed-off-by: Zhang Shaowen <zhangshaowen@cmss.chinamobile.com>
Yehuda Sadeh [Tue, 28 Mar 2017 16:08:12 +0000 (09:08 -0700)]
Merge pull request #154 from ceph/wip-pr-118
functional tests for server side encryption
Reviewed-by: Orit Wasserman <owasserm@redhat.com>
Casey Bodley [Tue, 28 Feb 2017 21:58:17 +0000 (16:58 -0500)]
crypto: add key headers to valid HEAD requests
Signed-off-by: Casey Bodley <cbodley@redhat.com>
Adam Kupczyk [Wed, 22 Feb 2017 10:26:28 +0000 (11:26 +0100)]
Added tests for HEAD method for encrypted objects.
Signed-off-by: Adam Kupczyk <akupczyk@mirantis.com>
Adam Kupczyk [Thu, 15 Dec 2016 10:27:49 +0000 (11:27 +0100)]
Added micro instuction how to configure tests for KMS (barbican) integration
Signed-off-by: Adam Kupczyk <akupczyk@mirantis.com>
Adam Kupczyk [Thu, 15 Dec 2016 10:09:36 +0000 (11:09 +0100)]
Modified aws kms tests to use config variable kms_keyid
Signed-off-by: Adam Kupczyk <akupczyk@mirantis.com>
Adam Kupczyk [Fri, 16 Sep 2016 15:37:15 +0000 (17:37 +0200)]
A bit more test for kms
Signed-off-by: Adam Kupczyk <akupczyk@mirantis.com>
Adam Kupczyk [Mon, 11 Jul 2016 13:43:52 +0000 (15:43 +0200)]
Additional tests for server side encryption, S3 SSE-KMS mode.
All tests belong to group 'encryption'.
Signed-off-by: Adam Kupczyk <akupczyk@mirantis.com>
Adam Kupczyk [Thu, 2 Jun 2016 16:13:56 +0000 (18:13 +0200)]
Additional tests for server side encryption, S3 SSE-C mode.
All tests belong to group 'encryption'.
Signed-off-by: Adam Kupczyk <akupczyk@mirantis.com>
Yehuda Sadeh [Tue, 7 Mar 2017 21:47:44 +0000 (13:47 -0800)]
Merge pull request #136 from jkorvin/fix-ifmodifiedsince-failed
Fix 'If-Modified-Since' format string
Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
Yehuda Sadeh [Tue, 7 Mar 2017 21:46:16 +0000 (13:46 -0800)]
Merge pull request #135 from jkorvin/fix
Fix If-Match test
Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
Evgenii Gorinov [Wed, 9 Nov 2016 16:19:13 +0000 (19:19 +0300)]
Fix 'If-Modified-Since' format string
According to https://tools.ietf.org/html/rfc7232
header 'If-Modified-Since' should be a correct HTTP-date.
For example: `Tue, 15 Nov 1994 12:45:26 GMT`;
not `1994-11-15T12:45:26.000Z`.
Signed-off-by: Evgenii Gorinov <korvin.lucky@gmail.com>
Evgenii Gorinov [Mon, 31 Oct 2016 15:19:06 +0000 (18:19 +0300)]
Fix If-Match test
According to https://tools.ietf.org/html/rfc7232, If-Match field should looks like QUOTES ETag QUOTES.
Signed-off-by: Evgenii Gorinov <korvin.lucky@gmail.com>
Yehuda Sadeh [Tue, 7 Mar 2017 19:48:39 +0000 (11:48 -0800)]
Merge pull request #152 from zhangsw/set-current-acl
Add a test case for setting acl on object with no version id specified.
Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
Yehuda Sadeh [Tue, 7 Mar 2017 19:05:21 +0000 (11:05 -0800)]
Merge pull request #138 from zhangsw/lifecycle-validate
add lifecycle validate test cases.
Reviewed-by: Daniel Gryniewicz <dang@redhat.com>
Yehuda Sadeh [Mon, 27 Feb 2017 18:25:04 +0000 (10:25 -0800)]
Merge pull request #128 from ceph/wip-multipart-copy
Wip multipart copy
Zhang Shaowen [Tue, 14 Feb 2017 03:20:56 +0000 (11:20 +0800)]
Add a test case for setting acl on object with no version id specified.
Fixes: http://tracker.ceph.com/issues/18923
Signed-off-by: Zhang Shaowen <zhangshaowen@cmss.chinamobile.com>
Ken Dreyer [Tue, 7 Feb 2017 19:05:42 +0000 (12:05 -0700)]
Merge pull request #150 from ceph/wip-remove-pip
remove python2 pip
vasukulkarni [Fri, 3 Feb 2017 00:33:42 +0000 (16:33 -0800)]
remove python2 pip
python2-pip doesn't exist in rhel and python-virtualenv ships pip in its package.
Signed-off-by: Vasu Kulkarni <vasu@redhat.com>
Matt Benjamin [Thu, 26 Jan 2017 16:07:04 +0000 (11:07 -0500)]
Merge pull request #145 from mdw-at-linuxbox/master-setupfix
Use non-broken version of setuptools, and fix bootstrap to be more portable
Marcus Watts [Thu, 26 Jan 2017 08:26:55 +0000 (03:26 -0500)]
Use non-broken version of setuptools, and fix bootstrap to be more portable.
Most recent version of setuptools breaks when asked to load requests 0.14.0.
symptom, complains about not being able to import filterfalse thus:
from six.moves import map, filter, filterfalse
this comes from setuptools, and older versions of setuptools don't have
this problem.
Various versions of centos7 and fedora have interesting names for packages,
centos7: python-pip is python2-pip
fedora24: python-virtualenv is python2-virtualenv
This is somewhat masked by using sudo yum: if the actual package
is installed, rpm knows that the capability is there and does nothing.
But, if the package isn't there, or you haven't chosen to set up
sudo to work that way, this does not work.
Signed-off-by: Marcus Watts <mwatts@redhat.com>
Yehuda Sadeh [Wed, 25 Jan 2017 21:04:03 +0000 (13:04 -0800)]
Merge pull request #139 from linuxbox2/wip-setuptools
bootstrap: force new setuptools
Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
Matt Benjamin [Wed, 25 Jan 2017 16:04:51 +0000 (11:04 -0500)]
bootstrap: force new setuptools
Deal setuptools upgrade problem discussed here:
https://github.com/pypa/setuptools/issues/940
Now follows the same formula as upstream teuthology.
Signed-off-by: Matt Benjamin <mbenjamin@redhat.com>
Zhang Shaowen [Mon, 16 Jan 2017 08:44:40 +0000 (16:44 +0800)]
add lifecycle validate test cases.
Fixes: http://tracker.ceph.com/issues/18541
Signed-off-by: Zhang Shaowen <zhangshaowen@cmss.chinamobile.com>
Yehuda Sadeh [Mon, 9 Jan 2017 23:42:09 +0000 (15:42 -0800)]
Merge pull request #137 from ceph/wip-delete-multi-underscore
test multi-delete with object with ending underscore
Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
Orit Wasserman [Tue, 29 Nov 2016 10:57:03 +0000 (11:57 +0100)]
test multi-delete with object with ending underscore
Fixes: http://tracker.ceph.com/issues/18023
Signed-off-by: Orit Wasserman <owasserm@redhat.com>
Yehuda Sadeh [Fri, 30 Sep 2016 22:12:11 +0000 (15:12 -0700)]
rgw: adjust tests annotations
Signed-off-by: Yehuda Sadeh <yehuda@redhat.com>
Yehuda Sadeh [Wed, 2 Nov 2016 18:45:06 +0000 (11:45 -0700)]
Merge pull request #133 from ceph/wip-more-multipart-copy
more multipart copy tests
Yehuda Sadeh [Wed, 2 Nov 2016 18:44:54 +0000 (11:44 -0700)]
Merge pull request #132 from ceph/wip-17635
add a test for post object with empty conditions
Yehuda Sadeh [Wed, 2 Nov 2016 18:44:37 +0000 (11:44 -0700)]
Merge pull request #130 from ceph/wip-aws2-aws4
rgw: skip aws2 requests when testing aws4
Yehuda Sadeh [Wed, 2 Nov 2016 18:44:28 +0000 (11:44 -0700)]
Merge pull request #129 from ceph/wip-16930
Wip 16930
Yehuda Sadeh [Wed, 2 Nov 2016 18:43:55 +0000 (11:43 -0700)]
Merge pull request #117 from tianshan/fix-rgw-roundtrip
fix rgw_roundtrip test fail
Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
Yehuda Sadeh [Wed, 2 Nov 2016 18:42:48 +0000 (11:42 -0700)]
Merge pull request #100 from kalantal/patch-1
Update README.rst
Yehuda Sadeh [Tue, 1 Nov 2016 23:08:00 +0000 (16:08 -0700)]
fix broken test
Signed-off-by: Yehuda Sadeh <yehuda@redhat.com>
Yehuda Sadeh [Thu, 20 Oct 2016 19:33:52 +0000 (12:33 -0700)]
Merge pull request #131 from ceph/wip-put-acl-underscore
test set_acl for keys with special characters
Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
Yehuda Sadeh [Thu, 20 Oct 2016 19:21:46 +0000 (12:21 -0700)]
add a test for post object with empty conditions
Signed-off-by: Yehuda Sadeh <yehuda@redhat.com>
Yehuda Sadeh [Fri, 30 Sep 2016 01:17:52 +0000 (18:17 -0700)]
more multipart copy tests
Signed-off-by: Yehuda Sadeh <yehuda@redhat.com>
Orit Wasserman [Thu, 20 Oct 2016 10:11:08 +0000 (12:11 +0200)]
test set_acl for keys with special characters
Signed-off-by: Orit Wasserman <owasserm@redhat.com>
Yehuda Sadeh [Fri, 30 Sep 2016 23:08:17 +0000 (16:08 -0700)]
test concurrent bucket set acl
Signed-off-by: Yehuda Sadeh <yehuda@redhat.com>
Yehuda Sadeh [Tue, 4 Oct 2016 16:56:17 +0000 (09:56 -0700)]
Merge pull request #124 from tipabu/complete-multipart
Complete multi-part upload during dry-run
Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
Tim Burke [Fri, 9 Sep 2016 00:54:18 +0000 (17:54 -0700)]
Complete multi-part upload during dry-run
While it may be valuable to verify that deleting a non-existent key
is OK, that doesn't seem to be the point of this test.
Signed-off-by: Tim Burke <tim.burke@gmail.com>
Yehuda Sadeh [Fri, 30 Sep 2016 22:12:11 +0000 (15:12 -0700)]
rgw: adjust tests annotations
Signed-off-by: Yehuda Sadeh <yehuda@redhat.com>
Yehuda Sadeh [Fri, 30 Sep 2016 02:05:54 +0000 (19:05 -0700)]
Merge pull request #127 from ceph/fix_copy_obj_versioned_bucket
Fix copy obj versioned bucket
Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
Yehuda Sadeh [Fri, 30 Sep 2016 01:17:52 +0000 (18:17 -0700)]
more multipart copy tests
Signed-off-by: Yehuda Sadeh <yehuda@redhat.com>
Yehuda Sadeh [Thu, 19 May 2016 19:45:32 +0000 (12:45 -0700)]
rgw: skip aws2 requests when testing aws4
Signed-off-by: Yehuda Sadeh <yehuda@redhat.com>
Yehuda Sadeh [Thu, 19 May 2016 19:45:32 +0000 (12:45 -0700)]
rgw: skip aws2 requests when testing aws4
Signed-off-by: Yehuda Sadeh <yehuda@redhat.com>
Yehuda Sadeh [Thu, 29 Sep 2016 17:47:07 +0000 (10:47 -0700)]
Merge pull request #126 from ceph/rgw-lifecycle-testing
S3 lifecycle tests
Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
Daniel Gryniewicz [Fri, 5 Aug 2016 15:51:48 +0000 (11:51 -0400)]
S3 lifecycle tests
Test S3 lifecycle expiration. This requires the test harnass code in
RGW to make sure it doesn't take days so expire anything.
Signed-off-by: Daniel Gryniewicz <dang@redhat.com>
Orit Wasserman [Fri, 16 Sep 2016 08:30:17 +0000 (10:30 +0200)]
test copy object on a multipart object
Signed-off-by: Orit Wasserman <owasserm@redhat.com>
Orit Wasserman [Wed, 14 Sep 2016 12:23:49 +0000 (14:23 +0200)]
fix test_object_copy_versioned_bucket
Do not use _create_key_with_random_content as it creates a new bucket.
Check objects content and size
Signed-off-by: Orit Wasserman <owasserm@redhat.com>
Yehuda Sadeh [Wed, 14 Sep 2016 10:45:10 +0000 (03:45 -0700)]
Merge pull request #125 from ceph/versioned_copy_obj
Add testing for copy object to/from a versioned bucket
Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
Orit Wasserman [Wed, 14 Sep 2016 08:23:29 +0000 (10:23 +0200)]
Add testing for copy object to/from a versioned bucket
Signed-off-by: Orit Wasserman <owasserm@redhat.com>
Yehuda Sadeh [Wed, 14 Sep 2016 10:00:33 +0000 (03:00 -0700)]
Merge pull request #123 from ceph/get_special_key
test get object with special key name
Reviewed-by: Andrew Gaul <andrew@gaul.org>
Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
Orit Wasserman [Mon, 5 Sep 2016 07:53:27 +0000 (09:53 +0200)]
test get object with special key name
Signed-off-by: Orit Wasserman <owasserm@redhat.com>
Yehuda Sadeh [Fri, 12 Aug 2016 17:24:21 +0000 (10:24 -0700)]
Merge pull request #119 from ceph/empty_object_range
Add range request to an empty object
Orit Wasserman [Fri, 22 Jul 2016 12:49:21 +0000 (14:49 +0200)]
Add range request to an empty object
Signed-off-by: Orit Wasserman <owasserm@redhat.com>
Tianshan Qu [Mon, 4 Jul 2016 11:02:59 +0000 (19:02 +0800)]
fix rgw_roundtrip test fail
boto no longer rewind itself in set_contents_from_file, which will trigger the assert in
realistic/RandomContentFile::seek
Signed-off-by: Tianshan Qu <tianshan@xsky.com>
Yehuda Sadeh [Mon, 6 Jun 2016 23:47:21 +0000 (02:47 +0300)]
Merge pull request #116 from andrewgaul/rfc2616
Annotate tests which create non-RFC2616 headers
Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
Andrew Gaul [Mon, 6 Jun 2016 23:19:27 +0000 (16:19 -0700)]
Annotate tests which create non-RFC2616 headers
Signed-off-by: Andrew Gaul <andrew@gaul.org>
Yehuda Sadeh [Fri, 3 Jun 2016 06:53:56 +0000 (09:53 +0300)]
Merge pull request #115 from jmunhoz/fix-
20160602
rgw: aws4: add test cases with missing signed headers
Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
Javier M. Mellid [Thu, 2 Jun 2016 20:57:48 +0000 (20:57 +0000)]
rgw: aws4: fix test_object_create_missing_signed_header_aws4
Signed-off-by: Javier M. Mellid <jmunhoz@igalia.com>
Javier M. Mellid [Thu, 2 Jun 2016 20:33:40 +0000 (20:33 +0000)]
rgw: aws4: fix test_object_create_missing_signed_custom_header_aws4
Signed-off-by: Javier M. Mellid <jmunhoz@igalia.com>
Yehuda Sadeh [Fri, 20 May 2016 23:24:02 +0000 (16:24 -0700)]
Merge pull request #110 from ceph/wip-15886
rgw: add a new multipart test
Reviewed-by: Orit Wasserman <owasserm@redhat.com>
Yehuda Sadeh [Thu, 19 May 2016 15:25:29 +0000 (08:25 -0700)]
Merge pull request #112 from ceph/wip-add-libxslt
add missing libxml2-dev and libxslt-dev dependencies
Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>