Testing portal
MediaWiki supplements manual testing/bug reporting with automated testing. Here's a summary of current automated testing and request for next steps, as of 5 July 2011. This portal will point you to resources so you can run test suites, write tests, and improve the testing infrastructure.
Contents |
[edit] Testing approaches and how we do them
There are several overlapping approaches in testing:
- fuzz testing: you inject random values and look at the results. Developers, testers, and users do this manually.
- unit testing: making sure your API public methods works as expected. Automated via PHPUnit, QUnit, and Jenkins.
- integration testing: testing the integrated whole as it operates together; looking at an installation and trying to break it and filing bug reports; manually or via automation
- behaviour testing : trying to reproduce an user scenario (as you can program into Selenium)
- logical testing : just invert any logical conditions (aka: == is made != while != are made ==).
- code coverage : in a method, try to inject values to test all possible code paths and conditions (usually automated, in our case via parsertests & Jenkins)
[edit] Test suites
[edit] MediaWiki internal
- Parser tests
- Currently automatically run on trunk and integrated into CodeReview overview
- Hooks for extensions to add tests (not yet automated)
- t/ unit tests
- not totally functional bugzilla:20112
- Some of the more generic ones (eol checks, bom checks) moved to tools/code-utils in r54922
- tests/ unit tests
- checkSyntax
- In maintenance/
- Needs upload capability
[edit] External suites
Extension test framework
[edit] Manual test plans
[edit] Client-side test suites
- There's some stuff going on with some of the UsabilityInitiative extension, not yet automated.
- Some talk of doing Selenium-based browser-hosted testing but this has not yet been implemented.
- Some Selenium tests
- Selenium no longer the way forward Sumanah 19:15, 1 July 2011 (UTC)
- Using HTML rendering engine (Gecko? WebKit?) to run user interface tests
- some JS testing notes
- Once you get QUnit tests, have a look at TestSwarm, a distributed JS tester.
[edit] Performance testing
It would likely be wise to set up some automated performance testing; e.g., checking how much time, how many DB queries, how much memory used, etc. during various operations (maybe the same tests running above).
While performance indicators can vary based on environment and non-deterministic factors, logging and graphing the results of multiple iterations from a consistent testing environment can help us with two important things:
- Identify performance regressions when we see an unexpected shift in the figures
- Confirm performance improvements when we make some optimization
See for instance Mozilla's performance test graphs for Firefox:
(more FF stuff via https://developer.mozilla.org/en/Tinderbox )
[edit] How to report a bug
https://www.mediawiki.org/wiki/How_to_report_a_bug
[edit] Other notes
- Extension Testing
- Mobile browser testing
- Database testing
- Continuous integration server
- Manual:Unit testing
- Fixing broken tests
[edit] Links
- Search for testing in MediaWiki.org.
- Test wiki: http://test2.wikipedia.org