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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
|
"""Tests of using the context manager style.
The context manager is based on the InterceptFixture used in gabbi.
"""
import socket
from uuid import uuid4
import pytest
import requests
import urllib3
from httplib2 import Http, ServerNotFoundError
import http.client as http_client
from urllib.request import urlopen
from urllib.error import URLError
from wsgi_intercept.interceptor import (
Interceptor, HttpClientInterceptor, Httplib2Interceptor,
RequestsInterceptor, UrllibInterceptor, Urllib3Interceptor)
from .wsgi_app import simple_app
httppool = urllib3.PoolManager()
def app():
return simple_app
# Base
def test_interceptor_instance():
hostname = str(uuid4())
port = 9999
interceptor = Httplib2Interceptor(app=app, host=hostname, port=port,
prefix='/foobar')
assert isinstance(interceptor, Interceptor)
assert interceptor.app == app
assert interceptor.host == hostname
assert interceptor.port == port
assert interceptor.script_name == '/foobar'
assert interceptor.url == 'http://%s:%s/foobar' % (hostname, port)
def test_intercept_by_url_no_port():
# Test for https://github.com/cdent/wsgi-intercept/issues/41
hostname = str(uuid4())
url = 'http://%s/foobar' % hostname
interceptor = Httplib2Interceptor(app=app, url=url)
assert isinstance(interceptor, Interceptor)
assert interceptor.app == app
assert interceptor.host == hostname
assert interceptor.port == 80
assert interceptor.script_name == '/foobar'
assert interceptor.url == url
# http_lib
def test_httpclient_interceptor_host():
hostname = str(uuid4())
port = 9999
with HttpClientInterceptor(app=app, host=hostname, port=port):
client = http_client.HTTPConnection(hostname, port)
client.request('GET', '/')
response = client.getresponse()
content = response.read().decode('utf-8')
assert response.status == 200
assert 'WSGI intercept successful!' in content
def test_httpclient_interceptor_url():
hostname = str(uuid4())
port = 9999
url = 'http://%s:%s/' % (hostname, port)
with HttpClientInterceptor(app=app, url=url):
client = http_client.HTTPConnection(hostname, port)
client.request('GET', '/')
response = client.getresponse()
content = response.read().decode('utf-8')
assert response.status == 200
assert 'WSGI intercept successful!' in content
def test_httpclient_in_out():
hostname = str(uuid4())
port = 9999
url = 'http://%s:%s/' % (hostname, port)
with HttpClientInterceptor(app=app, url=url):
client = http_client.HTTPConnection(hostname, port)
client.request('GET', '/')
response = client.getresponse()
content = response.read().decode('utf-8')
assert response.status == 200
assert 'WSGI intercept successful!' in content
# outside the context manager the intercept does not work
with pytest.raises(socket.gaierror):
client = http_client.HTTPConnection(hostname, port)
client.request('GET', '/')
# Httplib2
def test_httplib2_interceptor_host():
hostname = str(uuid4())
port = 9999
http = Http()
with Httplib2Interceptor(app=app, host=hostname, port=port) as url:
response, content = http.request(url)
assert response.status == 200
assert 'WSGI intercept successful!' in content.decode('utf-8')
def test_httplib2_interceptor_https_host():
hostname = str(uuid4())
port = 443
http = Http()
with Httplib2Interceptor(app=app, host=hostname, port=port) as url:
assert url == 'https://%s' % hostname
response, content = http.request(url)
assert response.status == 200
assert 'WSGI intercept successful!' in content.decode('utf-8')
def test_httplib2_interceptor_no_host():
# no hostname or port, one will be generated automatically
# we never actually know what it is
http = Http()
with Httplib2Interceptor(app=app) as url:
response, content = http.request(url)
assert response.status == 200
assert 'WSGI intercept successful!' in content.decode('utf-8')
def test_httplib2_interceptor_url():
hostname = str(uuid4())
port = 9999
url = 'http://%s:%s/' % (hostname, port)
http = Http()
with Httplib2Interceptor(app=app, url=url) as target_url:
response, content = http.request(target_url)
assert response.status == 200
assert 'WSGI intercept successful!' in content.decode('utf-8')
def test_httplib2_in_out():
hostname = str(uuid4())
port = 9999
url = 'http://%s:%s/' % (hostname, port)
http = Http()
with Httplib2Interceptor(app=app, url=url) as target_url:
response, content = http.request(target_url)
assert response.status == 200
assert 'WSGI intercept successful!' in content.decode('utf-8')
# outside the context manager the intercept does not work
with pytest.raises(ServerNotFoundError):
http.request(url)
# Requests
def test_requests_interceptor_host():
hostname = str(uuid4())
port = 9999
with RequestsInterceptor(app=app, host=hostname, port=port) as url:
response = requests.get(url)
assert response.status_code == 200
assert 'WSGI intercept successful!' in response.text
def test_requests_interceptor_url():
hostname = str(uuid4())
port = 9999
url = 'http://%s:%s/' % (hostname, port)
with RequestsInterceptor(app=app, url=url) as target_url:
response = requests.get(target_url)
assert response.status_code == 200
assert 'WSGI intercept successful!' in response.text
def test_requests_in_out():
hostname = str(uuid4())
port = 9999
url = 'http://%s:%s/' % (hostname, port)
with RequestsInterceptor(app=app, url=url) as target_url:
response = requests.get(target_url)
assert response.status_code == 200
assert 'WSGI intercept successful!' in response.text
# outside the context manager the intercept does not work
with pytest.raises(requests.ConnectionError):
requests.get(url)
# urllib3
def test_urllib3_interceptor_host():
hostname = str(uuid4())
port = 9999
with Urllib3Interceptor(app=app, host=hostname, port=port) as url:
response = httppool.request('GET', url)
assert response.status == 200
assert 'WSGI intercept successful!' in str(response.data)
def test_urllib3_interceptor_url():
hostname = str(uuid4())
port = 9999
url = 'http://%s:%s/' % (hostname, port)
with Urllib3Interceptor(app=app, url=url) as target_url:
response = httppool.request('GET', target_url)
assert response.status == 200
assert 'WSGI intercept successful!' in str(response.data)
def test_urllib3_in_out():
hostname = str(uuid4())
port = 9999
url = 'http://%s:%s/' % (hostname, port)
with Urllib3Interceptor(app=app, url=url) as target_url:
response = httppool.request('GET', target_url)
assert response.status == 200
assert 'WSGI intercept successful!' in str(response.data)
# outside the context manager the intercept does not work
with pytest.raises(urllib3.exceptions.ProtocolError):
httppool.request('GET', url, retries=False)
# urllib
def test_urllib_interceptor_host():
hostname = str(uuid4())
port = 9999
with UrllibInterceptor(app=app, host=hostname, port=port) as url:
response = urlopen(url)
assert response.code == 200
assert 'WSGI intercept successful!' in response.read().decode('utf-8')
def test_urllib_interceptor_url():
hostname = str(uuid4())
port = 9999
url = 'http://%s:%s/' % (hostname, port)
with UrllibInterceptor(app=app, url=url) as target_url:
response = urlopen(target_url)
assert response.code == 200
assert 'WSGI intercept successful!' in response.read().decode('utf-8')
def test_urllib_in_out():
hostname = str(uuid4())
port = 9999
url = 'http://%s:%s/' % (hostname, port)
with UrllibInterceptor(app=app, url=url) as target_url:
response = urlopen(target_url)
assert response.code == 200
assert 'WSGI intercept successful!' in response.read().decode('utf-8')
# outside the context manager the intercept does not work
with pytest.raises(URLError):
urlopen(url)
def test_double_nested_context_interceptor():
hostname = str(uuid4())
url1 = 'http://%s:%s/' % (hostname, 9998)
url2 = 'http://%s:%s/' % (hostname, 9999)
with Urllib3Interceptor(app=app, url=url1):
with Urllib3Interceptor(app=app, url=url2):
response = httppool.request('GET', url1)
assert response.status == 200
assert 'WSGI intercept successful!' in str(response.data)
response = httppool.request('GET', url2)
assert response.status == 200
assert 'WSGI intercept successful!' in str(response.data)
response = httppool.request('GET', url1)
assert response.status == 200
assert 'WSGI intercept successful!' in str(response.data)
# outside the inner context manager url2 does not work
with pytest.raises(urllib3.exceptions.HTTPError):
httppool.request('GET', url2, retries=False)
# outside both context managers neither url works
with pytest.raises(urllib3.exceptions.HTTPError):
httppool.request('GET', url2, retries=False)
with pytest.raises(urllib3.exceptions.HTTPError):
httppool.request('GET', url1, retries=False)
|