50ff4ec2fe
This patch fixes all the missed and newly introduced violations of the H306 style checking rule and enables it in tox. Change-Id: I5566e66421d5397c0103958f02ea38e6e3c68892 Implements: blueprint reduce-flake8-ignored-rules (partial)
45 lines
1.8 KiB
Python
45 lines
1.8 KiB
Python
#
|
|
# 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.
|
|
|
|
from oslo.config import cfg
|
|
import webob
|
|
|
|
from heat.api.middleware import ssl
|
|
from heat.tests.common import HeatTestCase
|
|
|
|
|
|
class SSLMiddlewareTest(HeatTestCase):
|
|
scenarios = [('with_forwarded_proto_default_header',
|
|
dict(forwarded_protocol='https',
|
|
secure_proxy_ssl_header=None,
|
|
headers={'X-Forwarded-Proto': 'https'})),
|
|
('with_forwarded_proto_non_default_header',
|
|
dict(forwarded_protocol='http',
|
|
secure_proxy_ssl_header='X-My-Forwarded-Proto',
|
|
headers={})),
|
|
('without_forwarded_proto',
|
|
dict(forwarded_protocol='http',
|
|
secure_proxy_ssl_header=None,
|
|
headers={}))]
|
|
|
|
def test_ssl_middleware(self):
|
|
if self.secure_proxy_ssl_header:
|
|
cfg.CONF.set_override('secure_proxy_ssl_header',
|
|
self.secure_proxy_ssl_header)
|
|
|
|
middleware = ssl.SSLMiddleware(None)
|
|
request = webob.Request.blank('/stacks', headers=self.headers)
|
|
self.assertIsNone(middleware.process_request(request))
|
|
self.assertEqual(self.forwarded_protocol,
|
|
request.environ['wsgi.url_scheme'])
|