forked from nlplab/brat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testserver.py
executable file
·59 lines (49 loc) · 2.11 KB
/
testserver.py
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
#!/usr/bin/env python
"""Run brat using the built-in Python CGI server for testing purposes.
Author: Pontus Stenetorp <pontus stenetorp se>
Version: 2012-07-01
"""
from http.server import test as simple_http_server_test
# Note: It is a terrible idea to import the function below, but we don't have
# a choice if we want to emulate the super-class is_cgi method.
from http.server import (CGIHTTPRequestHandler, HTTPServer,
_url_collapse_path_split)
from sys import stderr
from urllib.parse import urlparse
# Note: The only reason that we sub-class in order to pull is the stupid
# is_cgi method that assumes the usage of specific CGI directories, I simply
# refuse to play along with this kind of non-sense.
class BRATCGIHTTPRequestHandler(CGIHTTPRequestHandler):
def is_cgi(self):
# Having a CGI suffix is really a big hint of being a CGI script.
if urlparse(self.path).path.endswith('.cgi'):
self.cgi_info = _url_collapse_path_split(self.path)
return True
else:
return CGIHTTPRequestHandler.is_cgi(self)
def main(args):
# BaseHTTPServer will look for the port in argv[1] or default to 8000
try:
try:
port = int(args[1])
except ValueError:
raise TypeError
except TypeError:
print('%s is not a valid port number' % args[1], file=stderr)
return -1
except IndexError:
port = 8000
print('WARNING: This server is for testing purposes only!', file=stderr)
print((' You can also use it for trying out brat before '
'deploying on a "real" web server such as Apache.'), file=stderr)
print((' Using this web server to run brat on an open '
'network is a security risk!'), file=stderr)
print(file=stderr)
print('You can access the test server on:', file=stderr)
print(file=stderr)
print(' http://localhost:%s/' % port, file=stderr)
print(file=stderr)
simple_http_server_test(BRATCGIHTTPRequestHandler, HTTPServer)
if __name__ == '__main__':
from sys import argv
exit(main(argv))