X-Git-Url: https://git.cyclocoop.org/?a=blobdiff_plain;f=tests%2Fphpunit%2FREADME;h=0a32ba17e64fa04b253068dbcb9563ada9d81e60;hb=fedbf95f4718e657a8c24dd1db689df1afa62431;hp=ce78270dc0a66b83b358d94d3dea3e3235b66805;hpb=23f69f10ed07c7fbe7d752882a88d55351ce2e3d;p=lhc%2Fweb%2Fwiklou.git diff --git a/tests/phpunit/README b/tests/phpunit/README index ce78270dc0..0a32ba17e6 100644 --- a/tests/phpunit/README +++ b/tests/phpunit/README @@ -1,35 +1,53 @@ == MediaWiki PHPUnit Tests == -Some quickie unit tests done with the PHPUnit testing framework. To run the -test suite, run 'make test' in this (maintenance/tests/phpunit) directory. +The unit tests for MediaWiki are implemented using the PHPUnit testing +framework and require PHPUnit to run. + === WARNING === -The current versions of some of these tests are DESTRUCTIVE AND WILL ALTER -YOUR WIKI'S CONTENTS. DO NOT RUN ON A PRODUCTION SYSTEM OR ONE WHERE YOU -NEED TO RETAIN YOUR DATA. +Some of the unit tests are DESTRUCTIVE and WILL ALTER YOUR WIKI'S CONTENTS. + +DO NOT RUN THESE TESTS ON A PRODUCTION SYSTEM OR ON ANY SYSTEM WHERE YOU NEED +TO RETAIN YOUR DATA. -=== Installation === -PHPUnit is no longer maintained by PEAR. To get the current version of -PHPUnit, first uninstall any old version of PHPUnit or PHPUnit2 from PEAR, -then install the current version from phpunit.de like this: +== Installation == - pear channel-discover pear.phpunit.de - pear install phpunit/PHPUnit +If PHPUnit is not installed, follow the installation instructions in the +PHPUnit Manual at: -You also may wish to install this via your normal package mechanism: + http://www.phpunit.de/manual/current/en/installation.html - aptitude install phpunit - or - - yum install phpunit -=== Notes === +On Unix-like operating systems, run: + + make install + + +== Running tests == + +The tests are run from your operating system's command line. + +Ensure that you are in the tests/phpunit directory of your MediaWiki +installation. + + +On Unix-like operating systems, the tests runs are controlled with a makefile. +Run command: + + make help + +for a full list of options for running tests. + + +On Windows-family operating systems, run the 'run-tests.bat' batch file. + + +=== Writing tests === + +A guide to writing unit tests for MediaWiki can be found at: + + http://mediawiki.org/wiki/Unit_Testing -* Label currently broken tests in the group Broken and they will not be run -by phpunit. You can add them to the group by putting the following comment at -the top of the file: - /** - * @group Broken - */ -* Need to fix some broken tests