mirror of
https://github.com/ceph/s3-tests.git
synced 2024-11-21 11:51:06 +00:00
Add test to verify if Asterisk Origin is returned when * is set as a Allowed Origin.
For example: The request sends 'Origin: example.origin' while * is allowed as a origin by the CORS rule. The Server should then respond with * if no Authorization was send. Signed-off-by: Wido den Hollander <wido@widodh.nl>
This commit is contained in:
parent
14d58a3bda
commit
8642c79b64
1 changed files with 24 additions and 0 deletions
|
@ -5491,6 +5491,30 @@ def test_cors_origin_response():
|
|||
_cors_request_and_check(requests.options, url, {'Origin': 'foo.put', 'Access-Control-Request-Method': 'GET'}, 403, None, None)
|
||||
_cors_request_and_check(requests.options, url, {'Origin': 'foo.put', 'Access-Control-Request-Method': 'PUT'}, 200, 'foo.put', 'PUT')
|
||||
|
||||
@attr(resource='bucket')
|
||||
@attr(method='get')
|
||||
@attr(operation='check cors response when origin is set to wildcard')
|
||||
@attr(assertion='returning cors header')
|
||||
def test_cors_origin_wildcard():
|
||||
cfg = CORSConfiguration()
|
||||
bucket = get_new_bucket()
|
||||
|
||||
bucket.set_acl('public-read')
|
||||
|
||||
cfg.add_rule('GET', '*')
|
||||
|
||||
e = assert_raises(boto.exception.S3ResponseError, bucket.get_cors)
|
||||
eq(e.status, 404)
|
||||
|
||||
bucket.set_cors(cfg)
|
||||
|
||||
time.sleep(3)
|
||||
|
||||
url = _get_post_url(s3.main, bucket)
|
||||
|
||||
_cors_request_and_check(requests.get, url, None, 200, None, None)
|
||||
_cors_request_and_check(requests.get, url, {'Origin': 'example.origin'}, 200, '*', 'GET')
|
||||
|
||||
|
||||
class FakeFile(object):
|
||||
"""
|
||||
|
|
Loading…
Reference in a new issue