Changes between Version 44 and Version 45 of DeveloperGuidelinesTesting
- Timestamp:
- 01/12/09 07:32:55 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified DeveloperGuidelinesTesting
v44 v45 50 50 * http://docutils.sourceforge.net 51 51 ---- 52 Testing that Testers should be doing :52 Testing that Testers should be doing as part of Acceptance: 53 53 == Boundary Testing (should do) == 54 54 Checks functionality of modules against [BluePrints specs]: Building the Right Code … … 56 56 This sees the application as a black box & so the same tests could be run here against both the Python & PHP versions, for instance. 57 57 58 Sahana is a Web-based application, so testing should be from browser perspective: 59 58 60 Functional tests can be written using: 59 61 * [http://seleniumhq.org Selenium] 62 * Selenium & Twisted: http://agiletesting.blogspot.com/2005/03/web-app-testing-with-python-part-2.html 60 63 * discussion on using Selenium with Web2Py: http://groups.google.com/group/web2py/msg/d8c9fd6008029f6b 64 * [http://joker.linuxstuff.pl/documentation/make_selenium make_selenium.py] 65 * [http://wwwsearch.sourceforge.net/mechanize/ Mechanize] - library for programming website browsing 66 * [http://twill.idyll.org/testing.html Twill] is built on Mechanize 67 * [http://pypi.python.org/pypi/zope.testbrowser/3.6.0a1 zope.testbrowser] is built on Mechanize (& not Zope-specific 68 * MaxQ: http://agiletesting.blogspot.com/2005/02/web-app-testing-with-python-part-1.html 61 69 * [http://jakarta.apache.org/jmeter/ JMeter] 62 This is done by the Testers who accept the Code as a result. 70 * [http://www.badboy.com.au Badboy] 63 71 64 72 == Integration Testing (good thing) == … … 82 90 * http://groups.google.com/group/web2py/browse_thread/thread/cf5c5bd53bc42d49 83 91 84 == Stress Tests == 92 === Load Tests === 93 How many simultaneous users can the system support? 85 94 * http://tsung.erlang-projects.org/ 86 95 * Siege 96 97 === Stress Tests === 98 If extreme load is applied to the application, does it recover gracefully? 99 * Tools above but using more extreme parameters parameters 87 100 88 101 == Security Tests ==