Python BaseHTTPServer.test() Examples

The following are 20 code examples of BaseHTTPServer.test(). You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may also want to check out all available functions/classes of the module BaseHTTPServer , or try the search function .
Example #1
Source File: GzipSimpleHTTPServer.py    From GzipSimpleHTTPServer with MIT License 6 votes vote down vote up
def test(HandlerClass = SimpleHTTPRequestHandler,
         ServerClass = BaseHTTPServer.HTTPServer):
    """Run the HTTP request handler class.

    This runs an HTTP server on port 8000 (or the first command line
    argument).

    """

    parse_options()

    server_address = ('0.0.0.0', SERVER_PORT)

    SimpleHTTPRequestHandler.protocol_version = "HTTP/1.0"
    httpd = BaseHTTPServer.HTTPServer(server_address, SimpleHTTPRequestHandler)

    sa = httpd.socket.getsockname()
    print "Serving HTTP on", sa[0], "port", sa[1], "..."
    httpd.serve_forever()
    BaseHTTPServer.test(HandlerClass, ServerClass) 
Example #2
Source File: SimpleHTTPServer.py    From CTFCrackTools-V2 with GNU General Public License v3.0 5 votes vote down vote up
def test(HandlerClass = SimpleHTTPRequestHandler,
         ServerClass = BaseHTTPServer.HTTPServer):
    BaseHTTPServer.test(HandlerClass, ServerClass) 
Example #3
Source File: SimpleHTTPServer.py    From CTFCrackTools with GNU General Public License v3.0 5 votes vote down vote up
def test(HandlerClass = SimpleHTTPRequestHandler,
         ServerClass = BaseHTTPServer.HTTPServer):
    BaseHTTPServer.test(HandlerClass, ServerClass) 
Example #4
Source File: SimpleHTTPServer.py    From CTFCrackTools with GNU General Public License v3.0 5 votes vote down vote up
def test(HandlerClass = SimpleHTTPRequestHandler,
         ServerClass = BaseHTTPServer.HTTPServer):
    BaseHTTPServer.test(HandlerClass, ServerClass) 
Example #5
Source File: SimpleHTTPServer.py    From canape with GNU General Public License v3.0 5 votes vote down vote up
def test(HandlerClass = SimpleHTTPRequestHandler,
         ServerClass = BaseHTTPServer.HTTPServer):
    BaseHTTPServer.test(HandlerClass, ServerClass) 
Example #6
Source File: SimpleHTTPServer.py    From unity-python with MIT License 5 votes vote down vote up
def test(HandlerClass = SimpleHTTPRequestHandler,
         ServerClass = BaseHTTPServer.HTTPServer):
    BaseHTTPServer.test(HandlerClass, ServerClass) 
Example #7
Source File: SimpleHTTPServer.py    From PokemonGo-DesktopMap with MIT License 5 votes vote down vote up
def test(HandlerClass = SimpleHTTPRequestHandler,
         ServerClass = BaseHTTPServer.HTTPServer):
    BaseHTTPServer.test(HandlerClass, ServerClass) 
Example #8
Source File: simple_http_server.py    From simple_http_server with MIT License 5 votes vote down vote up
def main():
    # BaseHTTPServer.test(SimpleHTTPRequestHandler, BaseHTTPServer.HTTPServer)
    if sys.argv[1:]:
        port = int(sys.argv[1])
    else:
        port = 8000
    server_address = ('', port)

    SimpleHTTPRequestHandler.protocol_version = "HTTP/1.0"
    httpd = BaseHTTPServer.HTTPServer(server_address, SimpleHTTPRequestHandler)

    sa = httpd.socket.getsockname()
    print "Serving HTTP on", sa[0], "port", sa[1], "..."
    httpd.serve_forever() 
Example #9
Source File: SimpleHTTPServer.py    From RevitBatchProcessor with GNU General Public License v3.0 5 votes vote down vote up
def test(HandlerClass = SimpleHTTPRequestHandler,
         ServerClass = BaseHTTPServer.HTTPServer):
    BaseHTTPServer.test(HandlerClass, ServerClass) 
Example #10
Source File: SimpleHTTPServer.py    From CTFCrackTools-V2 with GNU General Public License v3.0 5 votes vote down vote up
def test(HandlerClass = SimpleHTTPRequestHandler,
         ServerClass = BaseHTTPServer.HTTPServer):
    BaseHTTPServer.test(HandlerClass, ServerClass) 
Example #11
Source File: SimpleHTTPServer.py    From meddle with MIT License 5 votes vote down vote up
def test(HandlerClass = SimpleHTTPRequestHandler,
         ServerClass = BaseHTTPServer.HTTPServer):
    BaseHTTPServer.test(HandlerClass, ServerClass) 
Example #12
Source File: WebApp.py    From aws-kms-workshop with Apache License 2.0 5 votes vote down vote up
def test(HandlerClass = SimpleHTTPRequestHandler,
         ServerClass = BaseHTTPServer.HTTPServer):
    BaseHTTPServer.test(HandlerClass, ServerClass) 
Example #13
Source File: WebAppEncSSE.py    From aws-kms-workshop with Apache License 2.0 5 votes vote down vote up
def test(HandlerClass = SimpleHTTPRequestHandler,
         ServerClass = BaseHTTPServer.HTTPServer):
    BaseHTTPServer.test(HandlerClass, ServerClass) 
Example #14
Source File: SimpleHTTPServer.py    From medicare-demo with Apache License 2.0 5 votes vote down vote up
def test(HandlerClass = SimpleHTTPRequestHandler,
         ServerClass = BaseHTTPServer.HTTPServer):
    BaseHTTPServer.test(HandlerClass, ServerClass) 
Example #15
Source File: SimpleHTTPServer.py    From Splunking-Crime with GNU Affero General Public License v3.0 5 votes vote down vote up
def test(HandlerClass = SimpleHTTPRequestHandler,
         ServerClass = BaseHTTPServer.HTTPServer):
    BaseHTTPServer.test(HandlerClass, ServerClass) 
Example #16
Source File: SimpleHTTPServer.py    From datafari with Apache License 2.0 5 votes vote down vote up
def test(HandlerClass = SimpleHTTPRequestHandler,
         ServerClass = BaseHTTPServer.HTTPServer):
    BaseHTTPServer.test(HandlerClass, ServerClass) 
Example #17
Source File: recipe-408991.py    From code with MIT License 5 votes vote down vote up
def test(HandlerClass = googleCacheHandler,
         ServerClass = BaseHTTPServer.HTTPServer):
    BaseHTTPServer.test(HandlerClass, ServerClass) 
Example #18
Source File: SimpleHTTPServer.py    From oss-ftp with MIT License 5 votes vote down vote up
def test(HandlerClass = SimpleHTTPRequestHandler,
         ServerClass = BaseHTTPServer.HTTPServer):
    BaseHTTPServer.test(HandlerClass, ServerClass) 
Example #19
Source File: SimpleHTTPServer.py    From BinderFilter with MIT License 5 votes vote down vote up
def test(HandlerClass = SimpleHTTPRequestHandler,
         ServerClass = BaseHTTPServer.HTTPServer):
    BaseHTTPServer.test(HandlerClass, ServerClass) 
Example #20
Source File: SimpleHTTPServer.py    From ironpython2 with Apache License 2.0 5 votes vote down vote up
def test(HandlerClass = SimpleHTTPRequestHandler,
         ServerClass = BaseHTTPServer.HTTPServer):
    BaseHTTPServer.test(HandlerClass, ServerClass)