Created
March 15, 2013 07:20
-
-
Save jerrykan/5168064 to your computer and use it in GitHub Desktop.
A basic wsgi http server to help with running selenium test cases
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import multiprocessing | |
import socket | |
import time | |
import unittest | |
from wsgiref.simple_server import make_server, WSGIRequestHandler | |
class QuietHandler(WSGIRequestHandler): | |
def log_request(*args, **kwargs): | |
pass | |
class LiveServerTestCase(unittest.TestCase): | |
def create_app(self): | |
"""Create your wsgi app and return it.""" | |
raise NotImplementedError | |
def __call__(self, result=None): | |
""" | |
Do some custom setup stuff and then hand off to TestCase to do its | |
thing. | |
""" | |
try: | |
self._pre_setup() | |
super(LiveServerTestCase, self).__call__(result) | |
finally: | |
self._post_teardown() | |
def get_server_url(self): | |
"""Return the url of the test server.""" | |
return 'http://{0}:{1}'.format(self.host, self.port) | |
def _pre_setup(self): | |
"""Setup and start the test server in the background.""" | |
server = None | |
port_range = (8080, 8090) | |
self.host = 'localhost' | |
self.port = port_range[0] | |
self._process = None | |
# Get the app | |
self.app = self.create_app() | |
# Cycle through the port range to find a free port | |
while server is None and self.port <= port_range[1]: | |
try: | |
server = make_server(self.host, self.port, self.app, | |
handler_class=QuietHandler) | |
except socket.error as e: | |
self.port += 1 | |
# No free port, raise an exception | |
if server is None: | |
raise socket.error('Ports {0}-{1} are all already in use'.format( | |
*port_range)) | |
# Start the test server in the background | |
self._process = multiprocessing.Process(target=server.serve_forever) | |
self._process.start() | |
# Give the test server a bit of time to prepare for handling requests | |
time.sleep(1) | |
def _post_teardown(self): | |
"""Stop the test server.""" | |
if self._process is not None: | |
self._process.terminate() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment