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 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683
|
"""Installs a WSGI application in place of a real host for testing.
Introduction
============
Testing a WSGI application sometimes involves starting a server at a
local host and port, then pointing your test code to that address.
Instead, this library lets you intercept calls to any specific host/port
combination and redirect them into a `WSGI application`_ importable by
your test program. Thus, you can avoid spawning multiple processes or
threads to test your Web app.
Supported Libaries
==================
``wsgi_intercept`` works with a variety of HTTP clients in Python 3.7
and beyond, and in pypy.
* urllib2
* urllib.request
* httplib
* http.client
* httplib2
* requests
* urllib3
How Does It Work?
=================
``wsgi_intercept`` works by replacing ``httplib.HTTPConnection`` with a
subclass, ``wsgi_intercept.WSGI_HTTPConnection``. This class then
redirects specific server/port combinations into a WSGI application by
emulating a socket. If no intercept is registered for the host and port
requested, those requests are passed on to the standard handler.
The easiest way to use an intercept is to import an appropriate subclass
of ``~wsgi_intercept.interceptor.Interceptor`` and use that as a
context manager over web requests that use the library associated with
the subclass. For example::
import httplib2
from wsgi_intercept.interceptor import Httplib2Interceptor
from mywsgiapp import app
def load_app():
return app
http = httplib2.Http()
with Httplib2Interceptor(load_app, host='example.com', port=80) as url:
response, content = http.request('%s%s' % (url, '/path'))
assert response.status == 200
The interceptor class may aslo be used directly to install intercepts.
See the module documentation for more information.
Older versions required that the functions ``add_wsgi_intercept(host,
port, app_create_fn, script_name='')`` and ``remove_wsgi_intercept(host,port)``
be used to specify which URLs should be redirected into what applications.
These methods are still available, but the ``Interceptor`` classes are likely
easier to use for most use cases.
.. note:: ``app_create_fn`` is a *function object* returning a WSGI
application; ``script_name`` becomes ``SCRIPT_NAME`` in the WSGI
app's environment, if set.
.. note:: If ``http_proxy`` or ``https_proxy`` is set in the environment
this can cause difficulties with some of the intercepted libraries.
If requests or urllib is being used, these will raise an exception
if one of those variables is set.
.. note:: If ``wsgi_intercept.STRICT_RESPONSE_HEADERS`` is set to ``True``
then response headers sent by an application will be checked to
make sure they are of the type ``str`` native to the version of
Python, as required by pep 3333. The default is ``False`` (to
preserve backwards compatibility)
Install
=======
::
pip install -U wsgi_intercept
Packages Intercepted
====================
Unfortunately each of the HTTP client libraries use their own specific
mechanism for making HTTP call-outs, so individual implementations are
needed. At this time there are implementations for ``httplib2``,
``urllib3``, ``requests``, ``urllib.request`` and ``http.client``
in Python 3.
The best way to figure out how to use interception is to inspect
`the tests`_. More comprehensive documentation available upon
request.
.. _the tests: https://github.com/cdent/wsgi-intercept/tree/master/test
History
=======
Pursuant to Ian Bicking's `"best Web testing framework"`_ post, Titus
Brown put together an `in-process HTTP-to-WSGI interception mechanism`_
for his own Web testing system, twill. Because the mechanism is pretty
generic -- it works at the httplib level -- Titus decided to try adding
it into all of the *other* Python Web testing frameworks.
The Python 2 version of wsgi-intercept was the result. Kumar McMillan
later took over maintenance.
The current version is tested with Python 3.7-3.12, and pypy3. It was
assembled by `Chris Dent`_. Testing and documentation improvements from
`Sasha Hart`_.
.. _"best Web testing framework":
http://blog.ianbicking.org/best-of-the-web-app-test-frameworks.html
.. _in-process HTTP-to-WSGI interception mechanism:
http://www.advogato.org/person/titus/diary.html?start=119
.. _WSGI application: http://www.python.org/peps/pep-3333.html
.. _Chris Dent: https://github.com/cdent
.. _Sasha Hart: https://github.com/sashahart
Project Home
============
This project lives on `GitHub`_. Please submit all bugs, patches,
failing tests, et cetera using the Issue Tracker.
Additional documentation is available on `Read The Docs`_.
.. _GitHub: http://github.com/cdent/wsgi-intercept
.. _Read The Docs: http://wsgi-intercept.readthedocs.org/en/latest/
"""
from __future__ import print_function
import sys
import traceback
from io import BytesIO
from urllib.parse import unquote_to_bytes as url_unquote
from http.client import HTTPConnection, HTTPSConnection
# Set this to True to cause response headers from the intercepted
# app to be confirmed as bytestrings, behaving as some wsgi servers.
STRICT_RESPONSE_HEADERS = False
debuglevel = 0
# 1 basic
# 2 verbose
####
#
# Specify which hosts/ports to target for interception to a given WSGI app.
#
# For simplicity's sake, intercept ENTIRE host/port combinations;
# intercepting only specific URL subtrees gets complicated, because we don't
# have that information in the HTTPConnection.connect() function that does the
# redirection.
#
# format: key=(host, port), value=(create_app, top_url)
#
# (top_url becomes the SCRIPT_NAME)
_wsgi_intercept = {}
def add_wsgi_intercept(host, port, app_create_fn, script_name=''):
"""
Add a WSGI intercept call for host:port, using the app returned
by app_create_fn with a SCRIPT_NAME of 'script_name' (default '').
"""
_wsgi_intercept[(host, port)] = (app_create_fn, script_name)
def remove_wsgi_intercept(*args):
"""
Remove the WSGI intercept call for (host, port). If no arguments are
given, removes all intercepts
"""
global _wsgi_intercept
if len(args) == 0:
_wsgi_intercept = {}
else:
key = (args[0], args[1])
if key in _wsgi_intercept:
del _wsgi_intercept[key]
return len(_wsgi_intercept)
#
# make_environ: behave like a Web server. Take in 'input', and behave
# as if you're bound to 'host' and 'port'; build an environment dict
# for the WSGI app.
#
# This is where the magic happens, folks.
#
def make_environ(inp, host, port, script_name):
"""
Take 'inp' as if it were HTTP-speak being received on host:port,
and parse it into a WSGI-ok environment dictionary. Return the
dictionary.
Set 'SCRIPT_NAME' from the 'script_name' input, and, if present,
remove it from the beginning of the PATH_INFO variable.
"""
#
# parse the input up to the first blank line (or its end).
#
environ = {}
method_line = inp.readline()
method_line = method_line.decode('ISO-8859-1')
content_type = None
content_length = None
cookies = []
for line in inp:
if not line.strip():
break
k, v = line.strip().split(b':', 1)
v = v.lstrip()
# Make header value a "native" string. PEP 3333 requires that
# string-like things in headers be of type `str`. Much of the
# time this isn't a problem but the SimpleCookie library does
# type checking against `type("")`.
v = str(v.decode('ISO-8859-1'))
#
# take care of special headers, and for the rest, put them
# into the environ with HTTP_ in front.
#
if k.lower() == b'content-type':
content_type = v
elif k.lower() == b'content-length':
content_length = v
elif k.lower() == b'cookie' or k.lower() == b'cookie2':
cookies.append(v)
else:
h = k.upper()
h = h.replace(b'-', b'_')
environ['HTTP_' + str(h.decode('ISO-8859-1'))] = v
if debuglevel >= 2:
print('HEADER:', k, v)
#
# decode the method line
#
if debuglevel >= 2:
print('METHOD LINE:', method_line)
method, url, protocol = method_line.split(' ')
# Store the URI as requested by the user, without modification
# so that PATH_INFO munging can be corrected.
environ['REQUEST_URI'] = url
environ['RAW_URI'] = url
# clean the script_name off of the url, if it's there.
if not url.startswith(script_name):
script_name = '' # @CTB what to do -- bad URL. scrap?
else:
url = url[len(script_name):]
url = url.split('?', 1)
path_info = url_unquote(url[0])
query_string = ""
if len(url) == 2:
query_string = url[1]
if debuglevel:
print("method: %s; script_name: %s; path_info: %s; query_string: %s" %
(method, script_name, path_info, query_string))
r = inp.read()
inp = BytesIO(r)
#
# fill out our dictionary.
#
# Turn the bytes of the path info into a string of latin-1 code points,
# because that's what the spec says we must do to be like a server. Later
# various libraries will be forced to decode and then reencode to get the
# UTF-8 that everyone wants.
path_info = path_info.decode('latin-1')
environ.update({
"wsgi.version": (1, 0),
"wsgi.url_scheme": "http",
"wsgi.input": inp, # to read for POSTs
"wsgi.errors": sys.stderr,
"wsgi.multithread": 0,
"wsgi.multiprocess": 0,
"wsgi.run_once": 0,
"PATH_INFO": path_info,
"REMOTE_ADDR": '127.0.0.1',
"REQUEST_METHOD": method,
"SCRIPT_NAME": script_name,
"SERVER_NAME": host,
"SERVER_PORT": port,
"SERVER_PROTOCOL": protocol,
})
#
# query_string, content_type & length are optional.
#
if query_string:
environ['QUERY_STRING'] = query_string
if content_type:
environ['CONTENT_TYPE'] = content_type
if debuglevel >= 2:
print('CONTENT-TYPE:', content_type)
if content_length:
environ['CONTENT_LENGTH'] = content_length
if debuglevel >= 2:
print('CONTENT-LENGTH:', content_length)
#
# handle cookies.
#
if cookies:
environ['HTTP_COOKIE'] = "; ".join(cookies)
if debuglevel:
print('WSGI environ dictionary:', environ)
return environ
class WSGIAppError(Exception):
"""
An exception that wraps any Exception raised by the WSGI app
that is called. This is done for two reasons: it ensures that
intercepted libraries (such as requests) which use exceptions
to trigger behaviors are not interfered with by exceptions from
the WSGI app. It also helps to define a solid boundary, akin
to the network boundary between server and client, in the
testing environment.
"""
def __init__(self, error, exc_info):
Exception.__init__(self)
self.error = error
self.exception_type = exc_info[0]
self.exception_value = exc_info[1]
self.traceback = exc_info[2]
def __str__(self):
frame = traceback.extract_tb(self.traceback)[-1]
formatted = "{0!r} at {1}:{2}".format(
self.error,
frame[0],
frame[1],
)
return formatted
#
# fake socket for WSGI intercept stuff.
#
class wsgi_fake_socket:
"""
Handle HTTP traffic and stuff into a WSGI application object instead.
Note that this class assumes:
1. 'makefile' is called (by the response class) only after all of the
data has been sent to the socket by the request class;
2. non-persistent (i.e. non-HTTP/1.1) connections.
"""
def __init__(self, app, host, port, script_name, https=False):
self.app = app # WSGI app object
self.host = host
self.port = port
self.script_name = script_name # SCRIPT_NAME (app mount point)
self.inp = BytesIO() # stuff written into this "socket"
self.write_results = [] # results from the 'write_fn'
self.results = None # results from running the app
self.output = BytesIO() # all output from the app, incl headers
self.https = https
def makefile(self, *args, **kwargs):
"""
'makefile' is called by the HTTPResponse class once all of the
data has been written. So, in this interceptor class, we need to:
1. build a start_response function that grabs all the headers
returned by the WSGI app;
2. create a wsgi.input file object 'inp', containing all of the
traffic;
3. build an environment dict out of the traffic in inp;
4. run the WSGI app & grab the result object;
5. concatenate & return the result(s) read from the result object.
"""
# dynamically construct the start_response function for no good reason.
self.headers = []
def start_response(status, headers, exc_info=None):
# construct the HTTP request.
self.output.write(
b"HTTP/1.0 " + status.encode('ISO-8859-1') + b"\n")
# Keep the reference of the headers list to write them only
# when the whole application have been processed
self.headers = headers
return self.write_results.append
# construct the wsgi.input file from everything that's been
# written to this "socket".
inp = BytesIO(self.inp.getvalue())
# build the environ dictionary.
environ = make_environ(inp, self.host, self.port, self.script_name)
if self.https:
environ['wsgi.url_scheme'] = 'https'
# run the application.
try:
app_result = self.app(environ, start_response)
except Exception as error:
raise WSGIAppError(error, sys.exc_info())
self.result = iter(app_result)
###
# read all of the results. the trick here is to get the *first*
# bit of data from the app via the generator, *then* grab & return
# the data passed back from the 'write' function, and then return
# the generator data. this is because the 'write' fn doesn't
# necessarily get called until the first result is requested from
# the app function.
try:
generator_data = None
try:
generator_data = next(self.result)
finally:
# send the headers
for k, v in self.headers:
if STRICT_RESPONSE_HEADERS:
if not (isinstance(k, str) and isinstance(v, str)):
raise TypeError(
"Header has a key '%s' or value '%s' "
"which is not a native str." % (k, v))
try:
k = k.encode('ISO-8859-1')
except AttributeError:
pass
try:
v = v.encode('ISO-8859-1')
except AttributeError:
pass
self.output.write(k + b': ' + v + b"\n")
self.output.write(b'\n')
for data in self.write_results:
self.output.write(data)
if generator_data is not None:
try:
self.output.write(generator_data)
except TypeError as exc:
raise TypeError('bytes required in response: %s' % exc)
while 1:
data = next(self.result)
self.output.write(data)
except StopIteration:
pass
if hasattr(app_result, 'close'):
app_result.close()
if debuglevel >= 2:
print("***", self.output.getvalue(), "***")
# return the concatenated results.
return BytesIO(self.output.getvalue())
def sendall(self, content):
"""
Save all the traffic to self.inp.
"""
if debuglevel >= 2:
print(">>>", content, ">>>")
try:
self.inp.write(content)
except TypeError:
self.inp.write(content.encode('utf-8'))
def close(self):
"Do nothing, for now."
pass
#
# WSGI_HTTPConnection
#
class WSGI_HTTPConnection(HTTPConnection):
"""
Intercept all traffic to certain hosts & redirect into a WSGI
application object.
"""
def __init__(self, *args, **kwargs):
"""
Do a complex dance to deal with urllib3's method signature
constraints.
"""
# TODO: This seems really really fragile but is passing
# tests.
if 'host' in kwargs:
host = kwargs.pop('host')
if 'port' in kwargs:
port = kwargs.pop('port')
else:
port = None
super().__init__(host, port, *args, **kwargs)
else:
if len(args) > 2:
args = args[0:2]
super().__init__(*args, **kwargs)
def get_app(self, host, port):
"""
Return the app object for the given (host, port).
"""
key = (host, int(port))
app, script_name = None, None
if key in _wsgi_intercept:
(app_fn, script_name) = _wsgi_intercept[key]
app = app_fn()
return app, script_name
def connect(self):
"""
Override the connect() function to intercept calls to certain
host/ports.
If no app at host/port has been registered for interception then
a normal HTTPConnection is made.
"""
if debuglevel:
sys.stderr.write('connect: %s, %s\n' % (self.host, self.port,))
try:
(app, script_name) = self.get_app(self.host, self.port)
if app:
if debuglevel:
sys.stderr.write('INTERCEPTING call to %s:%s\n' %
(self.host, self.port,))
self.sock = wsgi_fake_socket(app, self.host, self.port,
script_name)
else:
HTTPConnection.connect(self)
except Exception:
if debuglevel: # intercept & print out tracebacks
traceback.print_exc()
raise
#
# WSGI_HTTPSConnection
#
class WSGI_HTTPSConnection(HTTPSConnection, WSGI_HTTPConnection):
"""
Intercept all traffic to certain hosts & redirect into a WSGI
application object.
"""
def get_app(self, host, port):
"""
Return the app object for the given (host, port).
"""
key = (host, int(port))
app, script_name = None, None
if key in _wsgi_intercept:
(app_fn, script_name) = _wsgi_intercept[key]
app = app_fn()
return app, script_name
def connect(self):
"""
Override the connect() function to intercept calls to certain
host/ports.
If no app at host/port has been registered for interception then
a normal HTTPSConnection is made.
"""
if debuglevel:
sys.stderr.write('connect: %s, %s\n' % (self.host, self.port,))
try:
(app, script_name) = self.get_app(self.host, self.port)
if app:
if debuglevel:
sys.stderr.write('INTERCEPTING call to %s:%s\n' %
(self.host, self.port,))
self.sock = wsgi_fake_socket(app, self.host, self.port,
script_name, https=True)
else:
try:
import ssl
if hasattr(self, '_context'):
# Extract cert_reqs from requests + urllib3.
# They do some of their own SSL context management
# that wsgi intercept routes around, so we need to
# be careful.
if hasattr(self, '_intercept_cert_reqs'):
cert_reqs = self._intercept_cert_reqs
else:
cert_reqs = self.cert_reqs
self._context.check_hostname = self.assert_hostname
self._check_hostname = self.assert_hostname # Py3.6
if hasattr(ssl, 'VerifyMode'):
# Support for Python3.6 and higher
if isinstance(cert_reqs, ssl.VerifyMode):
self._context.verify_mode = cert_reqs
else:
self._context.verify_mode = ssl.VerifyMode[
cert_reqs]
elif isinstance(cert_reqs, str):
# Support for Python3.5 and below
self._context.verify_mode = getattr(ssl,
cert_reqs,
self._context.verify_mode)
else:
self._context.verify_mode = cert_reqs
if not hasattr(self, 'key_file'):
self.key_file = None
if not hasattr(self, 'cert_file'):
self.cert_file = None
if not hasattr(self, '_context'):
try:
self._context = ssl.create_default_context()
except AttributeError:
self._context = ssl.SSLContext(ssl.PROTOCOL_SSLv23)
self._context.options |= ssl.OP_NO_SSLv2
if not hasattr(self, 'check_hostname'):
self._check_hostname = (
self._context.verify_mode != ssl.CERT_NONE
)
else:
self._check_hostname = self.check_hostname
except (ImportError, AttributeError):
traceback.print_exc()
HTTPSConnection.connect(self)
except Exception:
if debuglevel: # intercept & print out tracebacks
traceback.print_exc()
raise
|