wiki.techinc.nl/tests/phpunit
dylsss 29f58a5e15 ApiTestCase: Support APIs with parameter prefixes in doApiRequestWithToken
Add an optional parameter to doApiRequest/doApiRequestWithToken to automatically prefix parameters.

Change-Id: If69074b12fb4682490e05243ae808c39a17c697b
Bug: T310008
2022-06-07 22:36:39 +00:00
..
data resourceloader: Tweak RL\FilePath handling in packageFiles 2022-05-27 22:40:41 +01:00
docs
includes ApiTestCase: Support APIs with parameter prefixes in doApiRequestWithToken 2022-06-07 22:36:39 +00:00
integration/includes Merge "ParserCache: always use JSON" 2022-06-07 14:12:29 +00:00
languages Merge "Fix typo in "overridden"" 2022-05-15 10:11:30 +00:00
maintenance Tests: Cleanup some unnecessary nested function calls 2022-06-06 01:02:34 +01:00
mocks Docs: remove references to DefaultSettings.php 2022-05-30 21:27:09 +02:00
structure Settings: Generate schema artefacts using a single maintenance script 2022-06-05 19:17:29 +00:00
suites Pass <Test,TestMode> as argument pair, deprecate old TestFileReader 2022-06-03 17:15:38 -04:00
tests rdbms: Replace getConnection with getLazyConnectionRef 2022-05-12 07:43:03 +02:00
unit Merge "ParserCache: always use JSON" 2022-06-07 14:12:29 +00:00
bootstrap.maintenance.php phpunit: Remove or inline phpunit.php loadSettings() and fatalError() 2022-03-31 18:49:18 +00:00
bootstrap.php Turn DefaultSettings.php into a deprecated stub 2022-05-17 16:50:56 +02:00
HamcrestPHPUnitIntegration.php
LessFileCompilationTest.php tests: Fix types in documentation by adding use statements 2022-05-29 07:11:15 +00:00
MediaWikiCliOptions.php Improve ObjectCache integration tests 2022-02-11 10:20:33 +11:00
MediaWikiCoversValidator.php Use str_starts_with/str_ends_with 2022-05-02 10:59:58 +03:00
MediaWikiGroupValidator.php
MediaWikiIntegrationTestCase.php Start clean up of revision_actor_temp table 2022-05-23 15:37:42 +00:00
MediaWikiLangTestCase.php build: Updating dependencies 2021-07-22 03:36:05 +00:00
MediaWikiLoggerPHPUnitExtension.php Re-add PHPUnit start/end log messages 2021-11-26 13:58:41 +11:00
MediaWikiPHPUnitResultPrinter.php phpunit: Use customized TestDox output 2022-06-05 19:25:50 +00:00
MediaWikiTestCaseTrait.php assertStatusOK() should not report warnings. 2022-06-03 13:44:11 +02:00
MediaWikiUnitTestCase.php Use updated ObjectFactory namespace 2022-03-09 23:04:51 +00:00
phpunit.php Setup.php: clarify the use of $IP. 2022-05-03 11:53:05 +02:00
README.md phpunit: Update and simplify README 2022-03-31 19:37:33 +01:00
ResourceLoaderTestCase.php resourceloader: Decouple some internal constructor args 2022-06-02 18:27:33 +01:00
suite.xml phpunit: Remove custom MediaWikiPHPUnitCommand and use default directly 2022-03-31 17:58:41 +00:00

MediaWiki PHPUnit tests

WARNING: Integration tests may be destructive and alter or remove parts of your local database. We try to use temporary tables where possible, but you must never run tests on a production server or on a wiki where you don't want to lose data.

Running tests

If you haven't already, run composer update (specifically without --no-dev) in the MediaWiki core directory. This will install PHPUnit.

To read about how to run specific tests, refer to:

https://www.mediawiki.org/wiki/Manual:PHP_unit_testing/Running_the_tests

Writing tests

A guide to writing PHPUnit tests for MediaWiki can be found at:

https://www.mediawiki.org/wiki/Manual:PHP_unit_testing