mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-24 11:09:54 +00:00
1270d5a6b9
Security HTTP provider fix
37 lines
953 B
Python
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
|