Merge "tests: Replace FakeLogger with debug_logger in test_proxy_logging"
This commit is contained in:
commit
14bd6b916d
@ -26,7 +26,7 @@ from swift.common.middleware import proxy_logging
|
|||||||
from swift.common.swob import Request, Response
|
from swift.common.swob import Request, Response
|
||||||
from swift.common import constraints
|
from swift.common import constraints
|
||||||
from swift.common.storage_policy import StoragePolicy
|
from swift.common.storage_policy import StoragePolicy
|
||||||
from test.unit import FakeLogger
|
from test.unit import debug_logger
|
||||||
from test.unit import patch_policies
|
from test.unit import patch_policies
|
||||||
from test.unit.common.middleware.helpers import FakeAppThatExcepts
|
from test.unit.common.middleware.helpers import FakeAppThatExcepts
|
||||||
|
|
||||||
@ -151,7 +151,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
|
|
||||||
def test_log_request_statsd_invalid_stats_types(self):
|
def test_log_request_statsd_invalid_stats_types(self):
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
for url in ['/', '/foo', '/foo/bar', '/v1']:
|
for url in ['/', '/foo', '/foo/bar', '/v1']:
|
||||||
req = Request.blank(url, environ={'REQUEST_METHOD': 'GET'})
|
req = Request.blank(url, environ={'REQUEST_METHOD': 'GET'})
|
||||||
resp = app(req.environ, start_response)
|
resp = app(req.environ, start_response)
|
||||||
@ -164,7 +164,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
for bad_path in ['', '/', '/bad', '/baddy/mc_badderson', '/v1',
|
for bad_path in ['', '/', '/bad', '/baddy/mc_badderson', '/v1',
|
||||||
'/v1/']:
|
'/v1/']:
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank(bad_path, environ={'REQUEST_METHOD': 'GET'})
|
req = Request.blank(bad_path, environ={'REQUEST_METHOD': 'GET'})
|
||||||
now = 10000.0
|
now = 10000.0
|
||||||
app.log_request(req, 123, 7, 13, now, now + 2.71828182846)
|
app.log_request(req, 123, 7, 13, now, now + 2.71828182846)
|
||||||
@ -199,7 +199,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
# GET
|
# GET
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(
|
app = proxy_logging.ProxyLoggingMiddleware(
|
||||||
FakeApp(body=b'7654321', response_str='321 Fubar'), {})
|
FakeApp(body=b'7654321', response_str='321 Fubar'), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank(path, environ={
|
req = Request.blank(path, environ={
|
||||||
'REQUEST_METHOD': 'GET',
|
'REQUEST_METHOD': 'GET',
|
||||||
'wsgi.input': BytesIO(b'4321')})
|
'wsgi.input': BytesIO(b'4321')})
|
||||||
@ -230,7 +230,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
app = proxy_logging.ProxyLoggingMiddleware(
|
app = proxy_logging.ProxyLoggingMiddleware(
|
||||||
FakeApp(body=b'7654321', response_str='321 Fubar',
|
FakeApp(body=b'7654321', response_str='321 Fubar',
|
||||||
policy_idx='-1'), {})
|
policy_idx='-1'), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank(path, environ={
|
req = Request.blank(path, environ={
|
||||||
'REQUEST_METHOD': 'GET',
|
'REQUEST_METHOD': 'GET',
|
||||||
'wsgi.input': BytesIO(b'4321')})
|
'wsgi.input': BytesIO(b'4321')})
|
||||||
@ -248,7 +248,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
# GET with swift.proxy_access_log_made already set
|
# GET with swift.proxy_access_log_made already set
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(
|
app = proxy_logging.ProxyLoggingMiddleware(
|
||||||
FakeApp(body=b'7654321', response_str='321 Fubar'), {})
|
FakeApp(body=b'7654321', response_str='321 Fubar'), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank(path, environ={
|
req = Request.blank(path, environ={
|
||||||
'REQUEST_METHOD': 'GET',
|
'REQUEST_METHOD': 'GET',
|
||||||
'swift.proxy_access_log_made': True,
|
'swift.proxy_access_log_made': True,
|
||||||
@ -265,7 +265,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
# PUT (no first-byte timing!)
|
# PUT (no first-byte timing!)
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(
|
app = proxy_logging.ProxyLoggingMiddleware(
|
||||||
FakeApp(body=b'87654321', response_str='314 PiTown'), {})
|
FakeApp(body=b'87654321', response_str='314 PiTown'), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank(path, environ={
|
req = Request.blank(path, environ={
|
||||||
'REQUEST_METHOD': 'PUT',
|
'REQUEST_METHOD': 'PUT',
|
||||||
'wsgi.input': BytesIO(b'654321')})
|
'wsgi.input': BytesIO(b'654321')})
|
||||||
@ -298,7 +298,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
app = proxy_logging.ProxyLoggingMiddleware(
|
app = proxy_logging.ProxyLoggingMiddleware(
|
||||||
FakeApp(body=b'87654321', response_str='314 PiTown',
|
FakeApp(body=b'87654321', response_str='314 PiTown',
|
||||||
policy_idx='-1'), {})
|
policy_idx='-1'), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank(path, environ={
|
req = Request.blank(path, environ={
|
||||||
'REQUEST_METHOD': 'PUT',
|
'REQUEST_METHOD': 'PUT',
|
||||||
'wsgi.input': BytesIO(b'654321')})
|
'wsgi.input': BytesIO(b'654321')})
|
||||||
@ -332,7 +332,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
}
|
}
|
||||||
for method, exp_method in method_map.items():
|
for method, exp_method in method_map.items():
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/v1/a/', environ={'REQUEST_METHOD': method})
|
req = Request.blank('/v1/a/', environ={'REQUEST_METHOD': method})
|
||||||
now = 10000.0
|
now = 10000.0
|
||||||
app.log_request(req, 299, 11, 3, now, now + 1.17)
|
app.log_request(req, 299, 11, 3, now, now + 1.17)
|
||||||
@ -358,7 +358,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {
|
||||||
conf_key: 'SPECIAL, GET,PUT ', # crazy spaces ok
|
conf_key: 'SPECIAL, GET,PUT ', # crazy spaces ok
|
||||||
})
|
})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/v1/a/c',
|
req = Request.blank('/v1/a/c',
|
||||||
environ={'REQUEST_METHOD': method})
|
environ={'REQUEST_METHOD': method})
|
||||||
now = 10000.0
|
now = 10000.0
|
||||||
@ -370,7 +370,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
|
|
||||||
def test_basic_req(self):
|
def test_basic_req(self):
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
||||||
resp = app(req.environ, start_response)
|
resp = app(req.environ, start_response)
|
||||||
resp_body = b''.join(resp)
|
resp_body = b''.join(resp)
|
||||||
@ -384,7 +384,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
|
|
||||||
def test_basic_req_second_time(self):
|
def test_basic_req_second_time(self):
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/', environ={
|
req = Request.blank('/', environ={
|
||||||
'swift.proxy_access_log_made': True,
|
'swift.proxy_access_log_made': True,
|
||||||
'REQUEST_METHOD': 'GET'})
|
'REQUEST_METHOD': 'GET'})
|
||||||
@ -402,7 +402,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
'{protocol} {path} {method} '
|
'{protocol} {path} {method} '
|
||||||
'{path.anonymized} {container.anonymized} '
|
'{path.anonymized} {container.anonymized} '
|
||||||
'{request_time} {start_time.datetime} {end_time} {ttfb}')})
|
'{request_time} {start_time.datetime} {end_time} {ttfb}')})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
||||||
with mock.patch('time.time',
|
with mock.patch('time.time',
|
||||||
mock.MagicMock(
|
mock.MagicMock(
|
||||||
@ -429,7 +429,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
'log_msg_template': (
|
'log_msg_template': (
|
||||||
'{protocol} {path} {method} '
|
'{protocol} {path} {method} '
|
||||||
'{account} {container} {object}')})
|
'{account} {container} {object}')})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/bucket/path/to/key', environ={
|
req = Request.blank('/bucket/path/to/key', environ={
|
||||||
'REQUEST_METHOD': 'GET',
|
'REQUEST_METHOD': 'GET',
|
||||||
# This would actually get set in the app, but w/e
|
# This would actually get set in the app, but w/e
|
||||||
@ -470,7 +470,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
def test_multi_segment_resp(self):
|
def test_multi_segment_resp(self):
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(
|
||||||
[b'some', b'chunks', b'of data']), {})
|
[b'some', b'chunks', b'of data']), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET',
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET',
|
||||||
'swift.source': 'SOS'})
|
'swift.source': 'SOS'})
|
||||||
resp = app(req.environ, start_response)
|
resp = app(req.environ, start_response)
|
||||||
@ -488,7 +488,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
for conf_key in ['access_log_headers', 'log_headers']:
|
for conf_key in ['access_log_headers', 'log_headers']:
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(),
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(),
|
||||||
{conf_key: 'yes'})
|
{conf_key: 'yes'})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
||||||
resp = app(req.environ, start_response)
|
resp = app(req.environ, start_response)
|
||||||
# exhaust generator
|
# exhaust generator
|
||||||
@ -501,7 +501,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
app = proxy_logging.ProxyLoggingMiddleware(
|
app = proxy_logging.ProxyLoggingMiddleware(
|
||||||
FakeApp(), {'log_headers': 'yes',
|
FakeApp(), {'log_headers': 'yes',
|
||||||
'access_log_headers_only': 'FIRST, seCond'})
|
'access_log_headers_only': 'FIRST, seCond'})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/',
|
req = Request.blank('/',
|
||||||
environ={'REQUEST_METHOD': 'GET'},
|
environ={'REQUEST_METHOD': 'GET'},
|
||||||
headers={'First': '1',
|
headers={'First': '1',
|
||||||
@ -521,7 +521,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
# Using default policy
|
# Using default policy
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(),
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(),
|
||||||
{'log_headers': 'yes'})
|
{'log_headers': 'yes'})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank(
|
req = Request.blank(
|
||||||
'/v1/a/c/o/foo',
|
'/v1/a/c/o/foo',
|
||||||
environ={'REQUEST_METHOD': 'PUT',
|
environ={'REQUEST_METHOD': 'PUT',
|
||||||
@ -541,7 +541,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
# Using a non-existent policy
|
# Using a non-existent policy
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(policy_idx='-1'),
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(policy_idx='-1'),
|
||||||
{'log_headers': 'yes'})
|
{'log_headers': 'yes'})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank(
|
req = Request.blank(
|
||||||
'/v1/a/c/o/foo',
|
'/v1/a/c/o/foo',
|
||||||
environ={'REQUEST_METHOD': 'PUT',
|
environ={'REQUEST_METHOD': 'PUT',
|
||||||
@ -559,7 +559,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
def test_upload_size_no_policy(self):
|
def test_upload_size_no_policy(self):
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(policy_idx=None),
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(policy_idx=None),
|
||||||
{'log_headers': 'yes'})
|
{'log_headers': 'yes'})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank(
|
req = Request.blank(
|
||||||
'/v1/a/c/o/foo',
|
'/v1/a/c/o/foo',
|
||||||
environ={'REQUEST_METHOD': 'PUT',
|
environ={'REQUEST_METHOD': 'PUT',
|
||||||
@ -577,7 +577,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
def test_upload_line(self):
|
def test_upload_line(self):
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeAppReadline(),
|
app = proxy_logging.ProxyLoggingMiddleware(FakeAppReadline(),
|
||||||
{'log_headers': 'yes'})
|
{'log_headers': 'yes'})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank(
|
req = Request.blank(
|
||||||
'/v1/a/c',
|
'/v1/a/c',
|
||||||
environ={'REQUEST_METHOD': 'POST',
|
environ={'REQUEST_METHOD': 'POST',
|
||||||
@ -594,7 +594,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
|
|
||||||
def test_log_query_string(self):
|
def test_log_query_string(self):
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET',
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET',
|
||||||
'QUERY_STRING': 'x=3'})
|
'QUERY_STRING': 'x=3'})
|
||||||
resp = app(req.environ, start_response)
|
resp = app(req.environ, start_response)
|
||||||
@ -605,7 +605,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
|
|
||||||
def test_client_logging(self):
|
def test_client_logging(self):
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET',
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET',
|
||||||
'REMOTE_ADDR': '1.2.3.4'})
|
'REMOTE_ADDR': '1.2.3.4'})
|
||||||
resp = app(req.environ, start_response)
|
resp = app(req.environ, start_response)
|
||||||
@ -654,7 +654,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
|
|
||||||
def test_proxy_client_logging(self):
|
def test_proxy_client_logging(self):
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/', environ={
|
req = Request.blank('/', environ={
|
||||||
'REQUEST_METHOD': 'GET',
|
'REQUEST_METHOD': 'GET',
|
||||||
'REMOTE_ADDR': '1.2.3.4',
|
'REMOTE_ADDR': '1.2.3.4',
|
||||||
@ -667,7 +667,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
self.assertEqual(log_parts[1], '1.2.3.4') # remote addr
|
self.assertEqual(log_parts[1], '1.2.3.4') # remote addr
|
||||||
|
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/', environ={
|
req = Request.blank('/', environ={
|
||||||
'REQUEST_METHOD': 'GET',
|
'REQUEST_METHOD': 'GET',
|
||||||
'REMOTE_ADDR': '1.2.3.4',
|
'REMOTE_ADDR': '1.2.3.4',
|
||||||
@ -695,7 +695,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
def test_unread_body(self):
|
def test_unread_body(self):
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(
|
app = proxy_logging.ProxyLoggingMiddleware(
|
||||||
FakeApp(['some', 'stuff']), {})
|
FakeApp(['some', 'stuff']), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
||||||
resp = app(req.environ, start_response)
|
resp = app(req.environ, start_response)
|
||||||
# read first chunk
|
# read first chunk
|
||||||
@ -717,7 +717,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
'log_msg_template': '{method} {path} '
|
'log_msg_template': '{method} {path} '
|
||||||
'{status_int} {wire_status_int}',
|
'{status_int} {wire_status_int}',
|
||||||
})
|
})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
||||||
resp = req.get_response(app)
|
resp = req.get_response(app)
|
||||||
with self.assertRaises(Exception) as ctx:
|
with self.assertRaises(Exception) as ctx:
|
||||||
@ -728,7 +728,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
|
|
||||||
def test_disconnect_on_readline(self):
|
def test_disconnect_on_readline(self):
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeAppReadline(), {})
|
app = proxy_logging.ProxyLoggingMiddleware(FakeAppReadline(), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET',
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET',
|
||||||
'wsgi.input': FileLikeExceptor()})
|
'wsgi.input': FileLikeExceptor()})
|
||||||
try:
|
try:
|
||||||
@ -744,7 +744,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
def test_disconnect_on_read(self):
|
def test_disconnect_on_read(self):
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(
|
app = proxy_logging.ProxyLoggingMiddleware(
|
||||||
FakeApp(['some', 'stuff']), {})
|
FakeApp(['some', 'stuff']), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET',
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET',
|
||||||
'wsgi.input': FileLikeExceptor()})
|
'wsgi.input': FileLikeExceptor()})
|
||||||
try:
|
try:
|
||||||
@ -760,7 +760,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
def test_app_exception(self):
|
def test_app_exception(self):
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(
|
app = proxy_logging.ProxyLoggingMiddleware(
|
||||||
FakeAppThatExcepts(), {})
|
FakeAppThatExcepts(), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
||||||
try:
|
try:
|
||||||
app(req.environ, start_response)
|
app(req.environ, start_response)
|
||||||
@ -776,7 +776,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
# test the "while not chunk: chunk = next(iterator)"
|
# test the "while not chunk: chunk = next(iterator)"
|
||||||
body=[b'', b'', b'line1\n', b'line2\n'],
|
body=[b'', b'', b'line1\n', b'line2\n'],
|
||||||
), {})
|
), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
||||||
resp = app(req.environ, start_response)
|
resp = app(req.environ, start_response)
|
||||||
resp_body = b''.join(resp)
|
resp_body = b''.join(resp)
|
||||||
@ -794,7 +794,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
# test the "while not chunk: chunk = next(iterator)"
|
# test the "while not chunk: chunk = next(iterator)"
|
||||||
body=[b'', b'', b''],
|
body=[b'', b'', b''],
|
||||||
), {})
|
), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
||||||
resp = app(req.environ, start_response)
|
resp = app(req.environ, start_response)
|
||||||
resp_body = b''.join(resp)
|
resp_body = b''.join(resp)
|
||||||
@ -819,7 +819,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
FakeAppNoContentLengthNoTransferEncoding(
|
FakeAppNoContentLengthNoTransferEncoding(
|
||||||
body=BodyGen(b'abc'),
|
body=BodyGen(b'abc'),
|
||||||
), {})
|
), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
||||||
resp = app(req.environ, start_response)
|
resp = app(req.environ, start_response)
|
||||||
resp_body = b''.join(resp)
|
resp_body = b''.join(resp)
|
||||||
@ -833,7 +833,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
|
|
||||||
def test_req_path_info_popping(self):
|
def test_req_path_info_popping(self):
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/v1/something', environ={'REQUEST_METHOD': 'GET'})
|
req = Request.blank('/v1/something', environ={'REQUEST_METHOD': 'GET'})
|
||||||
req.path_info_pop()
|
req.path_info_pop()
|
||||||
self.assertEqual(req.environ['PATH_INFO'], '/something')
|
self.assertEqual(req.environ['PATH_INFO'], '/something')
|
||||||
@ -850,7 +850,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
def test_ipv6(self):
|
def test_ipv6(self):
|
||||||
ipv6addr = '2001:db8:85a3:8d3:1319:8a2e:370:7348'
|
ipv6addr = '2001:db8:85a3:8d3:1319:8a2e:370:7348'
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
||||||
req.remote_addr = ipv6addr
|
req.remote_addr = ipv6addr
|
||||||
resp = app(req.environ, start_response)
|
resp = app(req.environ, start_response)
|
||||||
@ -867,14 +867,14 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
|
|
||||||
def test_log_info_none(self):
|
def test_log_info_none(self):
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
||||||
list(app(req.environ, start_response))
|
list(app(req.environ, start_response))
|
||||||
log_parts = self._log_parts(app)
|
log_parts = self._log_parts(app)
|
||||||
self.assertEqual(log_parts[17], '-')
|
self.assertEqual(log_parts[17], '-')
|
||||||
|
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
||||||
req.environ['swift.log_info'] = []
|
req.environ['swift.log_info'] = []
|
||||||
list(app(req.environ, start_response))
|
list(app(req.environ, start_response))
|
||||||
@ -883,7 +883,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
|
|
||||||
def test_log_info_single(self):
|
def test_log_info_single(self):
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
||||||
req.environ['swift.log_info'] = ['one']
|
req.environ['swift.log_info'] = ['one']
|
||||||
list(app(req.environ, start_response))
|
list(app(req.environ, start_response))
|
||||||
@ -892,7 +892,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
|
|
||||||
def test_log_info_multiple(self):
|
def test_log_info_multiple(self):
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
||||||
req.environ['swift.log_info'] = ['one', 'and two']
|
req.environ['swift.log_info'] = ['one', 'and two']
|
||||||
list(app(req.environ, start_response))
|
list(app(req.environ, start_response))
|
||||||
@ -905,7 +905,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
# Default - reveal_sensitive_prefix is 16
|
# Default - reveal_sensitive_prefix is 16
|
||||||
# No x-auth-token header
|
# No x-auth-token header
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
||||||
resp = app(req.environ, start_response)
|
resp = app(req.environ, start_response)
|
||||||
resp_body = b''.join(resp)
|
resp_body = b''.join(resp)
|
||||||
@ -913,7 +913,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
self.assertEqual(log_parts[9], '-')
|
self.assertEqual(log_parts[9], '-')
|
||||||
# Has x-auth-token header
|
# Has x-auth-token header
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET',
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET',
|
||||||
'HTTP_X_AUTH_TOKEN': auth_token})
|
'HTTP_X_AUTH_TOKEN': auth_token})
|
||||||
resp = app(req.environ, start_response)
|
resp = app(req.environ, start_response)
|
||||||
@ -924,7 +924,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
# Truncate to first 8 characters
|
# Truncate to first 8 characters
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {
|
||||||
'reveal_sensitive_prefix': '8'})
|
'reveal_sensitive_prefix': '8'})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
||||||
resp = app(req.environ, start_response)
|
resp = app(req.environ, start_response)
|
||||||
resp_body = b''.join(resp)
|
resp_body = b''.join(resp)
|
||||||
@ -932,7 +932,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
self.assertEqual(log_parts[9], '-')
|
self.assertEqual(log_parts[9], '-')
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {
|
||||||
'reveal_sensitive_prefix': '8'})
|
'reveal_sensitive_prefix': '8'})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET',
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET',
|
||||||
'HTTP_X_AUTH_TOKEN': auth_token})
|
'HTTP_X_AUTH_TOKEN': auth_token})
|
||||||
resp = app(req.environ, start_response)
|
resp = app(req.environ, start_response)
|
||||||
@ -943,7 +943,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
# Token length and reveal_sensitive_prefix are same (no truncate)
|
# Token length and reveal_sensitive_prefix are same (no truncate)
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {
|
||||||
'reveal_sensitive_prefix': str(len(auth_token))})
|
'reveal_sensitive_prefix': str(len(auth_token))})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET',
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET',
|
||||||
'HTTP_X_AUTH_TOKEN': auth_token})
|
'HTTP_X_AUTH_TOKEN': auth_token})
|
||||||
resp = app(req.environ, start_response)
|
resp = app(req.environ, start_response)
|
||||||
@ -954,7 +954,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
# No effective limit on auth token
|
# No effective limit on auth token
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {
|
||||||
'reveal_sensitive_prefix': constraints.MAX_HEADER_SIZE})
|
'reveal_sensitive_prefix': constraints.MAX_HEADER_SIZE})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET',
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET',
|
||||||
'HTTP_X_AUTH_TOKEN': auth_token})
|
'HTTP_X_AUTH_TOKEN': auth_token})
|
||||||
resp = app(req.environ, start_response)
|
resp = app(req.environ, start_response)
|
||||||
@ -965,7 +965,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
# Don't log x-auth-token
|
# Don't log x-auth-token
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {
|
||||||
'reveal_sensitive_prefix': '0'})
|
'reveal_sensitive_prefix': '0'})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
||||||
resp = app(req.environ, start_response)
|
resp = app(req.environ, start_response)
|
||||||
resp_body = b''.join(resp)
|
resp_body = b''.join(resp)
|
||||||
@ -973,7 +973,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
self.assertEqual(log_parts[9], '-')
|
self.assertEqual(log_parts[9], '-')
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {
|
||||||
'reveal_sensitive_prefix': '0'})
|
'reveal_sensitive_prefix': '0'})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET',
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET',
|
||||||
'HTTP_X_AUTH_TOKEN': auth_token})
|
'HTTP_X_AUTH_TOKEN': auth_token})
|
||||||
resp = app(req.environ, start_response)
|
resp = app(req.environ, start_response)
|
||||||
@ -987,7 +987,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
|
|
||||||
def test_ensure_fields(self):
|
def test_ensure_fields(self):
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
||||||
with mock.patch('time.time',
|
with mock.patch('time.time',
|
||||||
mock.MagicMock(
|
mock.MagicMock(
|
||||||
@ -1023,10 +1023,10 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
# Since no internal request is being made, outer most proxy logging
|
# Since no internal request is being made, outer most proxy logging
|
||||||
# middleware, log1, should have performed the logging.
|
# middleware, log1, should have performed the logging.
|
||||||
app = FakeApp()
|
app = FakeApp()
|
||||||
flg0 = FakeLogger()
|
flg0 = debug_logger()
|
||||||
env = {}
|
env = {}
|
||||||
log0 = proxy_logging.ProxyLoggingMiddleware(app, env, logger=flg0)
|
log0 = proxy_logging.ProxyLoggingMiddleware(app, env, logger=flg0)
|
||||||
flg1 = FakeLogger()
|
flg1 = debug_logger()
|
||||||
log1 = proxy_logging.ProxyLoggingMiddleware(log0, env, logger=flg1)
|
log1 = proxy_logging.ProxyLoggingMiddleware(log0, env, logger=flg1)
|
||||||
|
|
||||||
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
||||||
@ -1072,11 +1072,11 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
# Since an internal request is being made, inner most proxy logging
|
# Since an internal request is being made, inner most proxy logging
|
||||||
# middleware, log0, should have performed the logging.
|
# middleware, log0, should have performed the logging.
|
||||||
app = FakeApp()
|
app = FakeApp()
|
||||||
flg0 = FakeLogger()
|
flg0 = debug_logger()
|
||||||
env = {}
|
env = {}
|
||||||
log0 = proxy_logging.ProxyLoggingMiddleware(app, env, logger=flg0)
|
log0 = proxy_logging.ProxyLoggingMiddleware(app, env, logger=flg0)
|
||||||
fake = FakeMiddleware(log0, env)
|
fake = FakeMiddleware(log0, env)
|
||||||
flg1 = FakeLogger()
|
flg1 = debug_logger()
|
||||||
log1 = proxy_logging.ProxyLoggingMiddleware(fake, env, logger=flg1)
|
log1 = proxy_logging.ProxyLoggingMiddleware(fake, env, logger=flg1)
|
||||||
|
|
||||||
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'})
|
||||||
@ -1104,7 +1104,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
# Policy index can be specified by X-Backend-Storage-Policy-Index
|
# Policy index can be specified by X-Backend-Storage-Policy-Index
|
||||||
# in the request header for object API
|
# in the request header for object API
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(policy_idx='1'), {})
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(policy_idx='1'), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/v1/a/c/o', environ={'REQUEST_METHOD': 'PUT'})
|
req = Request.blank('/v1/a/c/o', environ={'REQUEST_METHOD': 'PUT'})
|
||||||
resp = app(req.environ, start_response)
|
resp = app(req.environ, start_response)
|
||||||
b''.join(resp)
|
b''.join(resp)
|
||||||
@ -1114,7 +1114,7 @@ class TestProxyLogging(unittest.TestCase):
|
|||||||
# Policy index can be specified by X-Backend-Storage-Policy-Index
|
# Policy index can be specified by X-Backend-Storage-Policy-Index
|
||||||
# in the response header for container API
|
# in the response header for container API
|
||||||
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
app = proxy_logging.ProxyLoggingMiddleware(FakeApp(), {})
|
||||||
app.access_logger = FakeLogger()
|
app.access_logger = debug_logger()
|
||||||
req = Request.blank('/v1/a/c', environ={'REQUEST_METHOD': 'GET'})
|
req = Request.blank('/v1/a/c', environ={'REQUEST_METHOD': 'GET'})
|
||||||
|
|
||||||
def fake_call(app, env, start_response):
|
def fake_call(app, env, start_response):
|
||||||
|
Loading…
Reference in New Issue
Block a user