-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathliveserver.py
More file actions
68 lines (54 loc) · 2 KB
/
Copy pathliveserver.py
File metadata and controls
68 lines (54 loc) · 2 KB
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
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 url_base(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()