Package cherrypy :: Package test :: Module modwsgi
[hide private]
[frames] | no frames]

Source Code for Module cherrypy.test.modwsgi

  1  """Wrapper for mod_wsgi, for use as a CherryPy HTTP server. 
  2   
  3  To autostart modwsgi, the "apache" executable or script must be 
  4  on your system path, or you must override the global APACHE_PATH. 
  5  On some platforms, "apache" may be called "apachectl" or "apache2ctl"-- 
  6  create a symlink to them if needed. 
  7   
  8   
  9  KNOWN BUGS 
 10  ========== 
 11   
 12  ##1. Apache processes Range headers automatically; CherryPy's truncated 
 13  ##    output is then truncated again by Apache. See test_core.testRanges. 
 14  ##    This was worked around in http://www.cherrypy.org/changeset/1319. 
 15  2. Apache does not allow custom HTTP methods like CONNECT as per the spec. 
 16      See test_core.testHTTPMethods. 
 17  3. Max request header and body settings do not work with Apache. 
 18  ##4. Apache replaces status "reason phrases" automatically. For example, 
 19  ##    CherryPy may set "304 Not modified" but Apache will write out 
 20  ##    "304 Not Modified" (capital "M"). 
 21  ##5. Apache does not allow custom error codes as per the spec. 
 22  ##6. Apache (or perhaps modpython, or modpython_gateway) unquotes %xx in the 
 23  ##    Request-URI too early. 
 24  7. mod_wsgi will not read request bodies which use the "chunked" 
 25      transfer-coding (it passes REQUEST_CHUNKED_ERROR to ap_setup_client_block 
 26      instead of REQUEST_CHUNKED_DECHUNK, see Apache2's http_protocol.c and 
 27      mod_python's requestobject.c). 
 28  8. When responding with 204 No Content, mod_wsgi adds a Content-Length 
 29      header for you. 
 30  9. When an error is raised, mod_wsgi has no facility for printing a 
 31      traceback as the response content (it's sent to the Apache log instead). 
 32  10. Startup and shutdown of Apache when running mod_wsgi seems slow. 
 33  """ 
 34   
 35  import os 
 36  curdir = os.path.abspath(os.path.dirname(__file__)) 
 37  import re 
 38  import sys 
 39  import time 
 40   
 41  import cherrypy 
 42  from cherrypy.test import helper, webtest 
 43   
 44   
45 -def read_process(cmd, args=""):
46 pipein, pipeout = os.popen4("%s %s" % (cmd, args)) 47 try: 48 firstline = pipeout.readline() 49 if (re.search(r"(not recognized|No such file|not found)", firstline, 50 re.IGNORECASE)): 51 raise IOError('%s must be on your system path.' % cmd) 52 output = firstline + pipeout.read() 53 finally: 54 pipeout.close() 55 return output
56 57 58 if sys.platform == 'win32': 59 APACHE_PATH = "httpd" 60 else: 61 APACHE_PATH = "apache" 62 63 CONF_PATH = "test_mw.conf" 64 65 conf_modwsgi = r""" 66 # Apache2 server conf file for testing CherryPy with modpython_gateway. 67 68 ServerName 127.0.0.1 69 DocumentRoot "/" 70 Listen %(port)s 71 72 AllowEncodedSlashes On 73 LoadModule rewrite_module modules/mod_rewrite.so 74 RewriteEngine on 75 RewriteMap escaping int:escape 76 77 LoadModule log_config_module modules/mod_log_config.so 78 LogFormat "%%h %%l %%u %%t \"%%r\" %%>s %%b \"%%{Referer}i\" \"%%{User-agent}i\"" combined 79 CustomLog "%(curdir)s/apache.access.log" combined 80 ErrorLog "%(curdir)s/apache.error.log" 81 LogLevel debug 82 83 LoadModule wsgi_module modules/mod_wsgi.so 84 LoadModule env_module modules/mod_env.so 85 86 WSGIScriptAlias / "%(curdir)s/modwsgi.py" 87 SetEnv testmod %(testmod)s 88 """ 89 90
91 -class ModWSGISupervisor(helper.Supervisor):
92 93 """Server Controller for ModWSGI and CherryPy.""" 94 95 using_apache = True 96 using_wsgi = True 97 template = conf_modwsgi 98
99 - def __str__(self):
100 return "ModWSGI Server on %s:%s" % (self.host, self.port)
101
102 - def start(self, modulename):
103 mpconf = CONF_PATH 104 if not os.path.isabs(mpconf): 105 mpconf = os.path.join(curdir, mpconf) 106 107 f = open(mpconf, 'wb') 108 try: 109 output = (self.template % 110 {'port': self.port, 'testmod': modulename, 111 'curdir': curdir}) 112 f.write(output) 113 finally: 114 f.close() 115 116 result = read_process(APACHE_PATH, "-k start -f %s" % mpconf) 117 if result: 118 print(result) 119 120 # Make a request so mod_wsgi starts up our app. 121 # If we don't, concurrent initial requests will 404. 122 cherrypy._cpserver.wait_for_occupied_port("127.0.0.1", self.port) 123 webtest.openURL('/ihopetheresnodefault', port=self.port) 124 time.sleep(1)
125
126 - def stop(self):
127 """Gracefully shutdown a server that is serving forever.""" 128 read_process(APACHE_PATH, "-k stop")
129 130 131 loaded = False 132 133
134 -def application(environ, start_response):
135 import cherrypy 136 global loaded 137 if not loaded: 138 loaded = True 139 modname = "cherrypy.test." + environ['testmod'] 140 mod = __import__(modname, globals(), locals(), ['']) 141 mod.setup_server() 142 143 cherrypy.config.update({ 144 "log.error_file": os.path.join(curdir, "test.error.log"), 145 "log.access_file": os.path.join(curdir, "test.access.log"), 146 "environment": "test_suite", 147 "engine.SIGHUP": None, 148 "engine.SIGTERM": None, 149 }) 150 return cherrypy.tree(environ, start_response)
151