⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 functional.py

📁 一款基于web的项目管理、bug跟踪系统。提供了与svn集成的操作界面、问题跟踪
💻 PY
字号:
#!/usr/bin/pythonfrom trac.tests.functional import *#TODO: split this into multiple smaller testcasesclass TestPreferences(FunctionalTwillTestCaseSetup):    def runTest(self):        """Set preferences for admin user"""        prefs_url = self._tester.url + "/prefs"        tc.follow('Preferences')        tc.url(prefs_url)        tc.formvalue('userprefs', 'name', 'System Administrator')        tc.formvalue('userprefs', 'email', 'admin@example.com')        tc.submit()        tc.follow('Date & Time')        tc.url(prefs_url + '/datetime')        tc.formvalue('userprefs', 'tz', 'GMT -10:00')        tc.submit()        tc.follow('General')        tc.url(prefs_url)        tc.find('System Administrator')        tc.find('admin@example.com')        tc.follow('Date & Time')        tc.url(prefs_url + '/datetime')        tc.find('GMT -10:00')class RegressionTestRev5785(FunctionalTwillTestCaseSetup):    def runTest(self):        """Test for regression of the fix in r5785"""        prefs_url = self._tester.url + "/prefs"        tc.follow('Preferences')        tc.url(prefs_url)        tc.follow('Logout')        tc.notfind(internal_error) # See [5785]        tc.follow('Login')class RegressionTestTicket5765(FunctionalTwillTestCaseSetup):    def runTest(self):        """Test for regression of http://trac.edgewall.org/ticket/5765        Unable to turn off 'Enable access keys' in Preferences        """        self._tester.go_to_front()        tc.follow('Preferences')        tc.follow('Keyboard Shortcuts')        tc.formvalue('userprefs', 'accesskeys', True)        tc.submit()        tc.find('name="accesskeys".*checked="checked"')        tc.formvalue('userprefs', 'accesskeys', False)        tc.submit()        tc.notfind('name="accesskeys".*checked="checked"')def functionalSuite(suite=None):    if not suite:        import trac.tests.functional.testcases        suite = trac.tests.functional.testcases.functionalSuite()    suite.addTest(TestPreferences())    suite.addTest(RegressionTestRev5785())    suite.addTest(RegressionTestTicket5765())    return suiteif __name__ == '__main__':    unittest.main(defaultTest='functionalSuite')

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -