Python werkzeug.datastructures.EnvironHeaders() Examples
The following are 3
code examples of werkzeug.datastructures.EnvironHeaders().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
werkzeug.datastructures
, or try the search function
.
Example #1
Source File: test_flask_requests.py From openapi-core with BSD 3-Clause "New" or "Revised" License | 8 votes |
def test_simple(self, request_factory, request): request = request_factory('GET', '/', subdomain='www') openapi_request = FlaskOpenAPIRequest(request) path = {} query = ImmutableMultiDict([]) headers = EnvironHeaders(request.environ) cookies = {} assert openapi_request.parameters == RequestParameters( path=path, query=query, header=headers, cookie=cookies, ) assert openapi_request.method == request.method.lower() assert openapi_request.full_url_pattern == \ urljoin(request.host_url, request.path) assert openapi_request.body == request.data assert openapi_request.mimetype == request.mimetype
Example #2
Source File: test_flask_requests.py From openapi-core with BSD 3-Clause "New" or "Revised" License | 6 votes |
def test_multiple_values(self, request_factory, request): request = request_factory( 'GET', '/', subdomain='www', query_string='a=b&a=c') openapi_request = FlaskOpenAPIRequest(request) path = {} query = ImmutableMultiDict([ ('a', 'b'), ('a', 'c'), ]) headers = EnvironHeaders(request.environ) cookies = {} assert openapi_request.parameters == RequestParameters( path=path, query=query, header=headers, cookie=cookies, ) assert openapi_request.method == request.method.lower() assert openapi_request.full_url_pattern == \ urljoin(request.host_url, request.path) assert openapi_request.body == request.data assert openapi_request.mimetype == request.mimetype
Example #3
Source File: test_flask_requests.py From openapi-core with BSD 3-Clause "New" or "Revised" License | 6 votes |
def test_url_rule(self, request_factory, request): request = request_factory('GET', '/browse/12/', subdomain='kb') openapi_request = FlaskOpenAPIRequest(request) path = {'id': 12} query = ImmutableMultiDict([]) headers = EnvironHeaders(request.environ) cookies = {} assert openapi_request.parameters == RequestParameters( path=path, query=query, header=headers, cookie=cookies, ) assert openapi_request.method == request.method.lower() assert openapi_request.full_url_pattern == \ urljoin(request.host_url, '/browse/{id}/') assert openapi_request.body == request.data assert openapi_request.mimetype == request.mimetype