From 4cf6bdb4acbec618640d819fe749a1a4430989e0 Mon Sep 17 00:00:00 2001 From: Luis Pabon Date: Thu, 29 Aug 2013 11:07:03 -0400 Subject: OpenStack Swift proxy controller unit tests These are a copy of the OpenStack Swift proxy controller unit tests as of version their 1.9.1. Change-Id: Ib05bc2a37dbb29d729346d78ea8f6de83b82375b Signed-off-by: Luis Pabon Reviewed-on: http://review.gluster.org/5735 Reviewed-by: Peter Portante Tested-by: Peter Portante --- test/unit/proxy/controllers/test_container.py | 45 +++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 test/unit/proxy/controllers/test_container.py (limited to 'test/unit/proxy/controllers/test_container.py') diff --git a/test/unit/proxy/controllers/test_container.py b/test/unit/proxy/controllers/test_container.py new file mode 100644 index 0000000..c2e9483 --- /dev/null +++ b/test/unit/proxy/controllers/test_container.py @@ -0,0 +1,45 @@ +# Copyright (c) 2010-2012 OpenStack, LLC. +# +# 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 mock +import unittest + +from swift.common.swob import Request +from swift.proxy import server as proxy_server +from swift.proxy.controllers.base import headers_to_container_info +from test.unit import fake_http_connect, FakeRing, FakeMemcache + + +class TestContainerController(unittest.TestCase): + def setUp(self): + self.app = proxy_server.Application(None, FakeMemcache(), + account_ring=FakeRing(), + container_ring=FakeRing(), + object_ring=FakeRing()) + + def test_container_info_in_response_env(self): + controller = proxy_server.ContainerController(self.app, 'a', 'c') + with mock.patch('swift.proxy.controllers.base.http_connect', + fake_http_connect(200, 200, body='')): + req = Request.blank('/a/c', {'PATH_INFO': '/a/c'}) + resp = controller.HEAD(req) + self.assertEqual(2, resp.status_int // 100) + self.assertTrue("swift.container/a/c" in resp.environ) + self.assertEqual(headers_to_container_info(resp.headers), + resp.environ['swift.container/a/c']) + + +if __name__ == '__main__': + unittest.main() -- cgit