Changes between Version 73 and Version 74 of DeveloperGuidelinesTesting
- Timestamp:
- 01/24/09 16:21:08 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified DeveloperGuidelinesTesting
v73 v74 5 5 This page defines what our current approach versus our [wiki:BluePrintTesting BluePrint for future options] 6 6 7 Test-Driven Development is a programming styles which says that you 1st write your test cases (from the [BluePrints specs]) & then proceed to make them pass.[[BR]] 8 Behaviour-Driven Development takes this further to focus on the Specification rather than the Verification using something like [http://www.codeplex.com/pyspec pyspec] or [http://pypi.python.org/pypi/PyFIT/0.8a2 PyFIT]to provide testable specs: 9 * http://behaviour-driven.org/BDDProcess 10 * http://fitnesse.org/FitNesse.AcceptanceTests 7 Test-Driven Development is a programming styles which says that you 1st write your test cases (from the [BluePrints specs]) & then proceed to make them pass. 11 8 12 9 [wiki:InstallationGuidelinesDeveloper#TestingSetup] … … 47 44 print "test_%i@xxxxxxxx" % random.randint(1, 10000) 48 45 }}} 46 !ToDo: Investigate how we can test multiple browsers. 49 47 50 [http://cherrypy.org CherryPy]'s [http://cherrypy.org/browser/trunk/cherrypy/test/webtest.py WebTest] is good for in-process testing .[[BR]]48 [http://cherrypy.org CherryPy]'s [http://cherrypy.org/browser/trunk/cherrypy/test/webtest.py WebTest] is good for in-process testing & can be run from a browser-less server(easier for CI-integration).[[BR]] 51 49 These tests are stored in {{{/tests/webtest}}}.[[BR]] 52 50 NB These are a work-in-progress...need to enable access to Web2Py environment (db, etc) using: … … 84 82 == Continuous Integration == 85 83 We are starting to use the Trac-integrated [http://bitten.edgewall.org Bitten] to monitor code quality. 84 85 !ToDo: Write a step to parse/store the results of Selenium's {{{HandleResults.py}}} 86 86 {{{ 87 87 <step id="lint" description="Run PyLint"> … … 94 94 ToDo: Fix Windowss: 95 95 {{{Error opening pylint results file ([Errno 2] No such file or directory: 'c:\\docume~1\\username\\locals~1\\temp\\bittenxx1j1x\\build_Trunk_3\\pylint-report.txt')}}} 96 We need to write a {{{build/test-results.xml}}} for this one: 96 97 {{{ 97 98 <step id="test" description="Run unit tests">