97 lines
3 KiB
Python
97 lines
3 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
tests.contrib.wrappers
|
|
~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
Added tests for the sessions.
|
|
|
|
:copyright: (c) 2014 by Armin Ronacher.
|
|
:license: BSD, see LICENSE for more details.
|
|
"""
|
|
|
|
from __future__ import with_statement
|
|
|
|
from werkzeug.contrib import wrappers
|
|
from werkzeug import routing
|
|
from werkzeug.wrappers import Request, Response
|
|
|
|
|
|
def test_json_request_mixin():
|
|
class MyRequest(wrappers.JSONRequestMixin, Request):
|
|
pass
|
|
req = MyRequest.from_values(
|
|
data=u'{"foä": "bar"}'.encode('utf-8'),
|
|
content_type='text/json'
|
|
)
|
|
assert req.json == {u'foä': 'bar'}
|
|
|
|
|
|
def test_reverse_slash_behavior():
|
|
class MyRequest(wrappers.ReverseSlashBehaviorRequestMixin, Request):
|
|
pass
|
|
req = MyRequest.from_values('/foo/bar', 'http://example.com/test')
|
|
assert req.url == 'http://example.com/test/foo/bar'
|
|
assert req.path == 'foo/bar'
|
|
assert req.script_root == '/test/'
|
|
|
|
# make sure the routing system works with the slashes in
|
|
# reverse order as well.
|
|
map = routing.Map([routing.Rule('/foo/bar', endpoint='foo')])
|
|
adapter = map.bind_to_environ(req.environ)
|
|
assert adapter.match() == ('foo', {})
|
|
adapter = map.bind(req.host, req.script_root)
|
|
assert adapter.match(req.path) == ('foo', {})
|
|
|
|
|
|
def test_dynamic_charset_request_mixin():
|
|
class MyRequest(wrappers.DynamicCharsetRequestMixin, Request):
|
|
pass
|
|
env = {'CONTENT_TYPE': 'text/html'}
|
|
req = MyRequest(env)
|
|
assert req.charset == 'latin1'
|
|
|
|
env = {'CONTENT_TYPE': 'text/html; charset=utf-8'}
|
|
req = MyRequest(env)
|
|
assert req.charset == 'utf-8'
|
|
|
|
env = {'CONTENT_TYPE': 'application/octet-stream'}
|
|
req = MyRequest(env)
|
|
assert req.charset == 'latin1'
|
|
assert req.url_charset == 'latin1'
|
|
|
|
MyRequest.url_charset = 'utf-8'
|
|
env = {'CONTENT_TYPE': 'application/octet-stream'}
|
|
req = MyRequest(env)
|
|
assert req.charset == 'latin1'
|
|
assert req.url_charset == 'utf-8'
|
|
|
|
def return_ascii(x):
|
|
return "ascii"
|
|
env = {'CONTENT_TYPE': 'text/plain; charset=x-weird-charset'}
|
|
req = MyRequest(env)
|
|
req.unknown_charset = return_ascii
|
|
assert req.charset == 'ascii'
|
|
assert req.url_charset == 'utf-8'
|
|
|
|
|
|
def test_dynamic_charset_response_mixin():
|
|
class MyResponse(wrappers.DynamicCharsetResponseMixin, Response):
|
|
default_charset = 'utf-7'
|
|
resp = MyResponse(mimetype='text/html')
|
|
assert resp.charset == 'utf-7'
|
|
resp.charset = 'utf-8'
|
|
assert resp.charset == 'utf-8'
|
|
assert resp.mimetype == 'text/html'
|
|
assert resp.mimetype_params == {'charset': 'utf-8'}
|
|
resp.mimetype_params['charset'] = 'iso-8859-15'
|
|
assert resp.charset == 'iso-8859-15'
|
|
resp.set_data(u'Hällo Wörld')
|
|
assert b''.join(resp.iter_encoded()) == \
|
|
u'Hällo Wörld'.encode('iso-8859-15')
|
|
del resp.headers['content-type']
|
|
try:
|
|
resp.charset = 'utf-8'
|
|
except TypeError:
|
|
pass
|
|
else:
|
|
assert False, 'expected type error on charset setting without ct'
|