mirror of
https://github.com/ceph/s3-tests.git
synced 2024-11-25 03:47:22 +00:00
subclass S3Connection class for headers
This makes it possible to overwrite all headers
This commit is contained in:
parent
7f4fcecaef
commit
82ac4f0138
1 changed files with 51 additions and 34 deletions
|
@ -11,6 +11,8 @@ import string
|
||||||
import socket
|
import socket
|
||||||
import ssl
|
import ssl
|
||||||
|
|
||||||
|
from boto.s3.connection import S3Connection
|
||||||
|
|
||||||
from nose.tools import eq_ as eq
|
from nose.tools import eq_ as eq
|
||||||
from nose.plugins.attrib import attr
|
from nose.plugins.attrib import attr
|
||||||
|
|
||||||
|
@ -28,47 +30,62 @@ from . import (
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
_orig_merge_meta = None
|
_orig_conn = {}
|
||||||
_custom_headers = None
|
_custom_headers = {}
|
||||||
_remove_headers = None
|
_remove_headers = []
|
||||||
|
|
||||||
def setup():
|
|
||||||
|
|
||||||
# Replace boto.utils.merge_data
|
|
||||||
global _orig_merge_meta
|
|
||||||
assert _orig_merge_meta is None
|
|
||||||
|
|
||||||
_orig_merge_meta = boto.utils.merge_meta
|
|
||||||
boto.utils.merge_meta = _our_merge_meta
|
|
||||||
|
|
||||||
_clear_custom_headers()
|
|
||||||
|
|
||||||
def teardown():
|
|
||||||
|
|
||||||
# Restore boto.utils.merge_data
|
|
||||||
global _orig_merge_meta
|
|
||||||
assert _orig_merge_meta is not None
|
|
||||||
|
|
||||||
boto.utils.merge_meta = _orig_merge_meta
|
|
||||||
_orig_merge_meta = None
|
|
||||||
|
|
||||||
|
|
||||||
def _our_merge_meta(*args, **kwargs):
|
# fill_in_auth does not exist in boto master, so if we update boto, this will
|
||||||
"""
|
# need to be changed to handle make_request's changes. Likely, at authorize
|
||||||
Our implementation of boto.utils.merge_meta. The intent here is to make
|
class HeaderS3Connection(S3Connection):
|
||||||
sure we can overload whichever headers we need to.
|
def fill_in_auth(self, http_request, **kwargs):
|
||||||
"""
|
global _custom_headers, _remove_headers
|
||||||
|
|
||||||
global _orig_merge_meta, _custom_headers, _remove_headers
|
# do our header magic
|
||||||
final_headers = _orig_merge_meta(*args, **kwargs)
|
final_headers = http_request.headers
|
||||||
final_headers.update(_custom_headers)
|
final_headers.update(_custom_headers)
|
||||||
|
|
||||||
print _remove_headers
|
|
||||||
for header in _remove_headers:
|
for header in _remove_headers:
|
||||||
|
try:
|
||||||
del final_headers[header]
|
del final_headers[header]
|
||||||
|
except KeyError:
|
||||||
|
pass
|
||||||
|
|
||||||
print final_headers
|
S3Connection.fill_in_auth(self, http_request, **kwargs)
|
||||||
return final_headers
|
|
||||||
|
final_headers = http_request.headers
|
||||||
|
final_headers.update(_custom_headers)
|
||||||
|
|
||||||
|
for header in _remove_headers:
|
||||||
|
try:
|
||||||
|
del final_headers[header]
|
||||||
|
except KeyError:
|
||||||
|
pass
|
||||||
|
|
||||||
|
return http_request
|
||||||
|
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
global _orig_conn
|
||||||
|
|
||||||
|
for conn in s3:
|
||||||
|
_orig_conn[conn] = s3[conn]
|
||||||
|
header_conn = HeaderS3Connection(
|
||||||
|
aws_access_key_id=s3[conn].aws_access_key_id,
|
||||||
|
aws_secret_access_key=s3[conn].aws_secret_access_key,
|
||||||
|
is_secure=s3[conn].is_secure,
|
||||||
|
port=s3[conn].port,
|
||||||
|
host=s3[conn].host,
|
||||||
|
calling_format=s3[conn].calling_format
|
||||||
|
)
|
||||||
|
|
||||||
|
s3[conn] = header_conn
|
||||||
|
|
||||||
|
|
||||||
|
def teardown():
|
||||||
|
global _orig_auth_handler
|
||||||
|
for conn in s3:
|
||||||
|
s3[conn] = _orig_conn[conn]
|
||||||
|
|
||||||
|
|
||||||
def _clear_custom_headers():
|
def _clear_custom_headers():
|
||||||
|
|
Loading…
Reference in a new issue