我正在为我的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)
有没有办法自动读取可用的测试网址,然后生成包含所有单元测试套件页面链接的索引html页面?