1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
import sys
import py.test
from wsgi_intercept import httplib2_intercept
from test import wsgi_app
from test.install import installer_class
import httplib2
HOST = 'some_hopefully_nonexistant_domain'
InstalledApp = installer_class(httplib2_intercept)
def test_simple_override():
with InstalledApp(wsgi_app.simple_app, host=HOST) as app:
http = httplib2.Http()
resp, content = http.request(
'http://some_hopefully_nonexistant_domain:80/', 'GET')
assert app.success()
def test_simple_override_default_port():
with InstalledApp(wsgi_app.simple_app, host=HOST) as app:
http = httplib2.Http()
resp, content = http.request(
'http://some_hopefully_nonexistant_domain/', 'GET')
assert app.success()
def test_more_interesting():
with InstalledApp(wsgi_app.more_interesting_app, host=HOST) as app:
http = httplib2.Http()
resp, content = http.request(
'http://some_hopefully_nonexistant_domain/%E4%B8%96%E4%B8%8A%E5%8E%9F%E4%BE%86%E9%82%84%E6%9C%89%E3%80%8C%E7%BE%9A%E7%89%9B%E3%80%8D%E9%80%99%E7%A8%AE%E5%8B%95%E7%89%A9%EF%BC%81%2Fbarney?bar=baz%20zoom',
'GET',
headers={'Accept': 'application/json'})
internal_env = app.get_internals()
assert internal_env['PATH_INFO'] == '/%E4%B8%96%E4%B8%8A%E5%8E%9F%E4%BE%86%E9%82%84%E6%9C%89%E3%80%8C%E7%BE%9A%E7%89%9B%E3%80%8D%E9%80%99%E7%A8%AE%E5%8B%95%E7%89%A9%EF%BC%81%2Fbarney'
assert internal_env['QUERY_STRING'] == 'bar=baz%20zoom'
assert internal_env['HTTP_ACCEPT'] == 'application/json'
def test_script_name():
with InstalledApp(wsgi_app.more_interesting_app, host=HOST,
script_name='/funky') as app:
http = httplib2.Http()
response, content = http.request(
'http://some_hopefully_nonexistant_domain/funky/boom/baz')
internal_env = app.get_internals()
assert internal_env['SCRIPT_NAME'] == '/funky'
assert internal_env['PATH_INFO'] == '/boom/baz'
@py.test.mark.xfail(
sys.version_info[0] == 2 and sys.version_info[1] <= 6,
reason='works okay on 2.7 and beyond. why?')
def test_encoding_errors():
with InstalledApp(wsgi_app.more_interesting_app, host=HOST):
http = httplib2.Http()
with py.test.raises(UnicodeEncodeError):
response, content = http.request(
'http://some_hopefully_nonexistant_domain/boom/baz',
headers={'Accept': u'application/\u2603'})
|