openapi-core/tests/unit/security/test_providers.py
2020-04-11 13:10:33 +01:00

37 lines
953 B
Python

import pytest
from openapi_core.schema.security_schemes.models import SecurityScheme
from openapi_core.security.providers import HttpProvider
from openapi_core.testing import MockRequest
class TestHttpProvider(object):
@pytest.fixture
def scheme(self):
return SecurityScheme('http', scheme='bearer')
@pytest.fixture
def provider(self, scheme):
return HttpProvider(scheme)
@pytest.mark.parametrize(
'header',
['authorization', 'Authorization', 'AUTHORIZATION'],
)
def test_header(self, provider, header):
"""Tests HttpProvider against Issue29427
https://bugs.python.org/issue29427
"""
jwt = 'MQ'
headers = {
header: 'Bearer {0}'.format(jwt),
}
request = MockRequest(
'http://localhost', 'GET', '/pets',
headers=headers,
)
result = provider(request)
assert result == jwt