我正在为我的 python webapp2 应用程序编写一些 js 单元测试(使用 qunit),我希望为我的所有单元测试套件创建一个索引页面。每个单元测试套件都映射到单个 url 和单个处理程序对象。这些处理程序对象中的每一个都继承自一个公共基类 TestHandler。这是 url 映射的处理程序。
app = webapp2.WSGIApplication([
webapp2.Route(r'/test',
handler=TestHandler,
name='testindex'),
webapp2.Route(r'/test/datastream',
handler=TestStreamHandler,
name='datastream'),
webapp2.Route(r'/test/timecontrol',
handler=TestTimeControlHandler,
name='timecontrol'),
], config=webapp2_config)
有没有办法自动读取可用的测试 url,然后生成一个 index html 页面,其中包含指向所有单元测试套件页面的链接?