2013-09-20 01:00:54 +08:00
|
|
|
# Copyright (c) 2010-2012 OpenStack Foundation
|
2012-05-17 10:43:44 -05:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
|
|
# implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
|
2012-09-04 14:02:19 -07:00
|
|
|
from swift.common.swob import Request
|
2012-05-17 10:43:44 -05:00
|
|
|
from swift.common.middleware import domain_remap
|
2015-06-06 13:03:15 -07:00
|
|
|
from swift.common import utils
|
2012-05-17 10:43:44 -05:00
|
|
|
|
|
|
|
|
|
|
|
class FakeApp(object):
|
|
|
|
|
|
|
|
def __call__(self, env, start_response):
|
|
|
|
return env['PATH_INFO']
|
|
|
|
|
|
|
|
|
|
|
|
def start_response(*args):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class TestDomainRemap(unittest.TestCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
self.app = domain_remap.DomainRemapMiddleware(FakeApp(), {})
|
|
|
|
|
|
|
|
def test_domain_remap_passthrough(self):
|
2013-01-23 09:36:37 +09:00
|
|
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET',
|
|
|
|
'SERVER_NAME': 'example.com'},
|
|
|
|
headers={'Host': None})
|
|
|
|
resp = self.app(req.environ, start_response)
|
2015-08-05 23:58:14 +05:30
|
|
|
self.assertEqual(resp, '/')
|
2012-05-17 10:43:44 -05:00
|
|
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'},
|
|
|
|
headers={'Host': 'example.com'})
|
|
|
|
resp = self.app(req.environ, start_response)
|
2015-08-05 23:58:14 +05:30
|
|
|
self.assertEqual(resp, '/')
|
2012-05-17 10:43:44 -05:00
|
|
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'},
|
|
|
|
headers={'Host': 'example.com:8080'})
|
|
|
|
resp = self.app(req.environ, start_response)
|
2015-08-05 23:58:14 +05:30
|
|
|
self.assertEqual(resp, '/')
|
2012-05-17 10:43:44 -05:00
|
|
|
|
|
|
|
def test_domain_remap_account(self):
|
2013-01-23 09:36:37 +09:00
|
|
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET',
|
|
|
|
'SERVER_NAME': 'AUTH_a.example.com'},
|
|
|
|
headers={'Host': None})
|
|
|
|
resp = self.app(req.environ, start_response)
|
2017-02-18 16:22:11 +01:00
|
|
|
self.assertEqual(resp, '/v1/AUTH_a/')
|
2012-05-17 10:43:44 -05:00
|
|
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'},
|
|
|
|
headers={'Host': 'AUTH_a.example.com'})
|
|
|
|
resp = self.app(req.environ, start_response)
|
2017-02-18 16:22:11 +01:00
|
|
|
self.assertEqual(resp, '/v1/AUTH_a/')
|
2012-05-17 10:43:44 -05:00
|
|
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'},
|
|
|
|
headers={'Host': 'AUTH-uuid.example.com'})
|
|
|
|
resp = self.app(req.environ, start_response)
|
2017-02-18 16:22:11 +01:00
|
|
|
self.assertEqual(resp, '/v1/AUTH_uuid/')
|
2012-05-17 10:43:44 -05:00
|
|
|
|
|
|
|
def test_domain_remap_account_container(self):
|
|
|
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'},
|
|
|
|
headers={'Host': 'c.AUTH_a.example.com'})
|
|
|
|
resp = self.app(req.environ, start_response)
|
2017-02-18 16:22:11 +01:00
|
|
|
self.assertEqual(resp, '/v1/AUTH_a/c/')
|
2012-05-17 10:43:44 -05:00
|
|
|
|
|
|
|
def test_domain_remap_extra_subdomains(self):
|
|
|
|
req = Request.blank('/', environ={'REQUEST_METHOD': 'GET'},
|
|
|
|
headers={'Host': 'x.y.c.AUTH_a.example.com'})
|
|
|
|
resp = self.app(req.environ, start_response)
|
2015-08-05 23:58:14 +05:30
|
|
|
self.assertEqual(resp, ['Bad domain in host header'])
|
2012-05-17 10:43:44 -05:00
|
|
|
|
|
|
|
def test_domain_remap_account_with_path_root(self):
|
|
|
|
req = Request.blank('/v1', environ={'REQUEST_METHOD': 'GET'},
|
|
|
|
headers={'Host': 'AUTH_a.example.com'})
|
|
|
|
resp = self.app(req.environ, start_response)
|
2017-02-18 16:22:11 +01:00
|
|
|
self.assertEqual(resp, '/v1/AUTH_a/')
|
2012-05-17 10:43:44 -05:00
|
|
|
|
|
|
|
def test_domain_remap_account_container_with_path_root(self):
|
|
|
|
req = Request.blank('/v1', environ={'REQUEST_METHOD': 'GET'},
|
|
|
|
headers={'Host': 'c.AUTH_a.example.com'})
|
|
|
|
resp = self.app(req.environ, start_response)
|
2017-02-18 16:22:11 +01:00
|
|
|
self.assertEqual(resp, '/v1/AUTH_a/c/')
|
|
|
|
|
|
|
|
def test_domain_remap_account_container_with_path_obj_slash_v1(self):
|
|
|
|
# Include http://localhost because urlparse used in Request.__init__
|
|
|
|
# parse //v1 as http://v1
|
|
|
|
req = Request.blank('http://localhost//v1',
|
|
|
|
environ={'REQUEST_METHOD': 'GET'},
|
|
|
|
headers={'Host': 'c.AUTH_a.example.com'})
|
|
|
|
resp = self.app(req.environ, start_response)
|
|
|
|
self.assertEqual(resp, '/v1/AUTH_a/c//v1')
|
|
|
|
|
|
|
|
def test_domain_remap_account_container_with_root_path_obj_slash_v1(self):
|
|
|
|
req = Request.blank('/v1//v1',
|
|
|
|
environ={'REQUEST_METHOD': 'GET'},
|
|
|
|
headers={'Host': 'c.AUTH_a.example.com'})
|
|
|
|
resp = self.app(req.environ, start_response)
|
|
|
|
self.assertEqual(resp, '/v1/AUTH_a/c//v1')
|
|
|
|
|
|
|
|
def test_domain_remap_account_container_with_path_trailing_slash(self):
|
|
|
|
req = Request.blank('/obj/', environ={'REQUEST_METHOD': 'GET'},
|
|
|
|
headers={'Host': 'c.AUTH_a.example.com'})
|
|
|
|
resp = self.app(req.environ, start_response)
|
|
|
|
self.assertEqual(resp, '/v1/AUTH_a/c/obj/')
|
2012-05-17 10:43:44 -05:00
|
|
|
|
|
|
|
def test_domain_remap_account_container_with_path(self):
|
|
|
|
req = Request.blank('/obj', environ={'REQUEST_METHOD': 'GET'},
|
|
|
|
headers={'Host': 'c.AUTH_a.example.com'})
|
|
|
|
resp = self.app(req.environ, start_response)
|
2015-08-05 23:58:14 +05:30
|
|
|
self.assertEqual(resp, '/v1/AUTH_a/c/obj')
|
2012-05-17 10:43:44 -05:00
|
|
|
|
|
|
|
def test_domain_remap_account_container_with_path_root_and_path(self):
|
|
|
|
req = Request.blank('/v1/obj', environ={'REQUEST_METHOD': 'GET'},
|
|
|
|
headers={'Host': 'c.AUTH_a.example.com'})
|
|
|
|
resp = self.app(req.environ, start_response)
|
2015-08-05 23:58:14 +05:30
|
|
|
self.assertEqual(resp, '/v1/AUTH_a/c/obj')
|
2012-05-17 10:43:44 -05:00
|
|
|
|
|
|
|
def test_domain_remap_account_matching_ending_not_domain(self):
|
|
|
|
req = Request.blank('/dontchange', environ={'REQUEST_METHOD': 'GET'},
|
|
|
|
headers={'Host': 'c.aexample.com'})
|
|
|
|
resp = self.app(req.environ, start_response)
|
2015-08-05 23:58:14 +05:30
|
|
|
self.assertEqual(resp, '/dontchange')
|
2012-05-17 10:43:44 -05:00
|
|
|
|
|
|
|
def test_domain_remap_configured_with_empty_storage_domain(self):
|
|
|
|
self.app = domain_remap.DomainRemapMiddleware(FakeApp(),
|
|
|
|
{'storage_domain': ''})
|
|
|
|
req = Request.blank('/test', environ={'REQUEST_METHOD': 'GET'},
|
|
|
|
headers={'Host': 'c.AUTH_a.example.com'})
|
|
|
|
resp = self.app(req.environ, start_response)
|
2015-08-05 23:58:14 +05:30
|
|
|
self.assertEqual(resp, '/test')
|
2012-05-17 10:43:44 -05:00
|
|
|
|
2017-02-18 10:19:20 +01:00
|
|
|
def test_storage_domains_conf_format(self):
|
|
|
|
conf = {'storage_domain': 'foo.com'}
|
|
|
|
app = domain_remap.filter_factory(conf)(FakeApp())
|
|
|
|
self.assertEqual(app.storage_domain, ['.foo.com'])
|
|
|
|
|
|
|
|
conf = {'storage_domain': 'foo.com, '}
|
|
|
|
app = domain_remap.filter_factory(conf)(FakeApp())
|
|
|
|
self.assertEqual(app.storage_domain, ['.foo.com'])
|
|
|
|
|
|
|
|
conf = {'storage_domain': 'foo.com, bar.com'}
|
|
|
|
app = domain_remap.filter_factory(conf)(FakeApp())
|
|
|
|
self.assertEqual(app.storage_domain, ['.foo.com', '.bar.com'])
|
|
|
|
|
|
|
|
conf = {'storage_domain': 'foo.com, .bar.com'}
|
|
|
|
app = domain_remap.filter_factory(conf)(FakeApp())
|
|
|
|
self.assertEqual(app.storage_domain, ['.foo.com', '.bar.com'])
|
|
|
|
|
|
|
|
conf = {'storage_domain': '.foo.com, .bar.com'}
|
|
|
|
app = domain_remap.filter_factory(conf)(FakeApp())
|
|
|
|
self.assertEqual(app.storage_domain, ['.foo.com', '.bar.com'])
|
|
|
|
|
2012-05-17 10:43:44 -05:00
|
|
|
def test_domain_remap_configured_with_prefixes(self):
|
|
|
|
conf = {'reseller_prefixes': 'PREFIX'}
|
|
|
|
self.app = domain_remap.DomainRemapMiddleware(FakeApp(), conf)
|
|
|
|
req = Request.blank('/test', environ={'REQUEST_METHOD': 'GET'},
|
|
|
|
headers={'Host': 'c.prefix_uuid.example.com'})
|
|
|
|
resp = self.app(req.environ, start_response)
|
2015-08-05 23:58:14 +05:30
|
|
|
self.assertEqual(resp, '/v1/PREFIX_uuid/c/test')
|
2012-05-17 10:43:44 -05:00
|
|
|
|
|
|
|
def test_domain_remap_configured_with_bad_prefixes(self):
|
|
|
|
conf = {'reseller_prefixes': 'UNKNOWN'}
|
|
|
|
self.app = domain_remap.DomainRemapMiddleware(FakeApp(), conf)
|
|
|
|
req = Request.blank('/test', environ={'REQUEST_METHOD': 'GET'},
|
|
|
|
headers={'Host': 'c.prefix_uuid.example.com'})
|
|
|
|
resp = self.app(req.environ, start_response)
|
2015-08-05 23:58:14 +05:30
|
|
|
self.assertEqual(resp, '/test')
|
2012-05-17 10:43:44 -05:00
|
|
|
|
2014-03-25 11:48:13 +00:00
|
|
|
def test_domain_remap_configured_with_no_prefixes(self):
|
|
|
|
conf = {'reseller_prefixes': ''}
|
|
|
|
self.app = domain_remap.DomainRemapMiddleware(FakeApp(), conf)
|
|
|
|
req = Request.blank('/test', environ={'REQUEST_METHOD': 'GET'},
|
|
|
|
headers={'Host': 'c.uuid.example.com'})
|
|
|
|
resp = self.app(req.environ, start_response)
|
2015-08-05 23:58:14 +05:30
|
|
|
self.assertEqual(resp, '/v1/uuid/c/test')
|
2014-03-25 11:48:13 +00:00
|
|
|
|
2014-12-16 11:15:19 +01:00
|
|
|
def test_domain_remap_add_prefix(self):
|
|
|
|
conf = {'default_reseller_prefix': 'FOO'}
|
|
|
|
self.app = domain_remap.DomainRemapMiddleware(FakeApp(), conf)
|
|
|
|
req = Request.blank('/test', environ={'REQUEST_METHOD': 'GET'},
|
|
|
|
headers={'Host': 'uuid.example.com'})
|
|
|
|
resp = self.app(req.environ, start_response)
|
2015-08-05 23:58:14 +05:30
|
|
|
self.assertEqual(resp, '/v1/FOO_uuid/test')
|
2014-12-16 11:15:19 +01:00
|
|
|
|
|
|
|
def test_domain_remap_add_prefix_already_there(self):
|
|
|
|
conf = {'default_reseller_prefix': 'AUTH'}
|
|
|
|
self.app = domain_remap.DomainRemapMiddleware(FakeApp(), conf)
|
|
|
|
req = Request.blank('/test', environ={'REQUEST_METHOD': 'GET'},
|
|
|
|
headers={'Host': 'auth-uuid.example.com'})
|
|
|
|
resp = self.app(req.environ, start_response)
|
2015-08-05 23:58:14 +05:30
|
|
|
self.assertEqual(resp, '/v1/AUTH_uuid/test')
|
2014-12-16 11:15:19 +01:00
|
|
|
|
2017-02-18 10:19:20 +01:00
|
|
|
def test_multiple_storage_domains(self):
|
|
|
|
conf = {'storage_domain': 'storage1.com, storage2.com'}
|
|
|
|
self.app = domain_remap.DomainRemapMiddleware(FakeApp(), conf)
|
|
|
|
|
|
|
|
def do_test(host):
|
|
|
|
req = Request.blank('/test', environ={'REQUEST_METHOD': 'GET'},
|
|
|
|
headers={'Host': host})
|
|
|
|
return self.app(req.environ, start_response)
|
|
|
|
|
|
|
|
resp = do_test('auth-uuid.storage1.com')
|
|
|
|
self.assertEqual(resp, '/v1/AUTH_uuid/test')
|
|
|
|
|
|
|
|
resp = do_test('auth-uuid.storage2.com')
|
|
|
|
self.assertEqual(resp, '/v1/AUTH_uuid/test')
|
|
|
|
|
|
|
|
resp = do_test('auth-uuid.storage3.com')
|
|
|
|
self.assertEqual(resp, '/test')
|
|
|
|
|
2012-05-17 10:43:44 -05:00
|
|
|
|
2015-06-06 13:03:15 -07:00
|
|
|
class TestSwiftInfo(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
|
|
utils._swift_info = {}
|
|
|
|
utils._swift_admin_info = {}
|
|
|
|
|
|
|
|
def test_registered_defaults(self):
|
|
|
|
domain_remap.filter_factory({})
|
|
|
|
swift_info = utils.get_swift_info()
|
|
|
|
self.assertTrue('domain_remap' in swift_info)
|
|
|
|
self.assertTrue(
|
|
|
|
swift_info['domain_remap'].get('default_reseller_prefix') is None)
|
|
|
|
|
|
|
|
def test_registered_nondefaults(self):
|
|
|
|
domain_remap.filter_factory({'default_reseller_prefix': 'cupcake'})
|
|
|
|
swift_info = utils.get_swift_info()
|
|
|
|
self.assertTrue('domain_remap' in swift_info)
|
2015-08-05 23:58:14 +05:30
|
|
|
self.assertEqual(
|
2015-06-06 13:03:15 -07:00
|
|
|
swift_info['domain_remap'].get('default_reseller_prefix'),
|
|
|
|
'cupcake')
|
|
|
|
|
|
|
|
|
2012-05-17 10:43:44 -05:00
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|