我正在尝试将某些 URL 路由到移植的 WSGI 应用程序,并将子 URL 路由到普通的cherrypy 页面处理程序。
我需要以下路线才能工作。所有其他路由应返回 404。
- /api -> WSGI
- /api?wsdl -> WSGI
- /api/goodurl -> 页面处理程序
- /api/badurl -> 404 错误
挂载在 /api 的 WSGI 应用程序是一个基于传统 SOAP 的应用程序。它需要接受 ?wsdl 参数,仅此而已。
我正在 /api/some_resource 编写一个新的 RESTful api。
我遇到的问题是,如果资源不存在,它最终会将错误的请求发送到遗留的肥皂应用程序。最后一个示例“/api/badurl”最终会转到 WSGI 应用程序。
有没有办法告诉cherrypy只将前两条路由发送到WSGI应用程序?
我写了一个简单的例子来说明我的问题:
import cherrypy
globalConf = {
'server.socket_host': '0.0.0.0',
'server.socket_port': 8080,
}
cherrypy.config.update(globalConf)
class HelloApiWsgi(object):
def __call__(self, environ, start_response):
start_response('200 OK', [('Content-Type', 'text/html')])
return ['Hello World from WSGI']
class HelloApi(object):
@cherrypy.expose
def index(self):
return "Hello from api"
cherrypy.tree.graft(HelloApiWsgi(), '/api')
cherrypy.tree.mount(HelloApi(), '/api/hello')
cherrypy.engine.start()
cherrypy.engine.block()
下面是一些单元测试:
import unittest
import requests
server = 'localhost:8080'
class TestRestApi(unittest.TestCase):
def testWsgi(self):
r = requests.get('http://%s/api?wsdl'%(server))
self.assertEqual(r.status_code, 200)
self.assertEqual(r.text, 'Hello World from WSGI')
r = requests.get('http://%s/api'%(server))
self.assertEqual(r.status_code, 200)
self.assertEqual(r.text, 'Hello World from WSGI')
def testGoodUrl(self):
r = requests.get('http://%s/api/hello'%(server))
self.assertEqual(r.status_code, 200)
self.assertEqual(r.text, 'Hello from api')
def testBadUrl(self):
r = requests.get('http://%s/api/badurl'%(server))
self.assertEqual(r.status_code, 404)
输出:
nosetests test_rest_api.py
F..
======================================================================
FAIL: testBadUrl (webserver.test_rest_api.TestRestApi)
----------------------------------------------------------------------
Traceback (most recent call last):
File line 25, in testBadUrl
self.assertEqual(r.status_code, 404)
AssertionError: 200 != 404
-------------------- >> begin captured stdout << ---------------------
Hello World from WSGI