aboutsummaryrefslogtreecommitdiffstats
path: root/tests/phpunit/includes/parser/TidyTest.php
Commit message (Collapse)AuthorAgeFilesLines
* Move trivially compatible tests to the unit tests suiteMáté Szabó2019-06-301-64/+0
| | | | | | | | | | | | | | | | | | | | | This changeset resumes work on T89432 and related tickets by porting an initial set of tests to the new unit test suite separated out in I69b92db3e70093570e05cc0a64c7780a278b321a. The tests were only ported if they worked immediately without requiring any changes other than changing the test case class to MediaWikiUnitTestCase and moving the test to the new suite. If a test failed for any reason (even trivial misconfiguration), it was NOT ported. With this change, the unit tests suite now consits of a total of 455 tests. As before, you can run these tests via the following command: $ composer phpunit:unit Bug: T84948 Bug: T89432 Bug: T87781 Change-Id: Ibb8175981092d7f41864e641cc3c118af70a5c76
* Revert "Separate MediaWiki unit and integration tests"Legoktm2019-06-131-0/+64
| | | | | | | | This reverts commit 0a2b996278e57a8b8c5377cd3a3eaa54f993d4a9. Reason for revert: Broke postgres tests. Change-Id: I27d8e0c807ad5f0748b9611a4f3df84cc213fbe1
* Separate MediaWiki unit and integration testsMáté Szabó2019-06-131-64/+0
| | | | | | | | | | | | | | | | | | | | | This changeset implements T89432 and related tickets and is based on exploration done at the Prague Hackathon. The goal is to identify tests in MediaWiki core that can be run without having to install & configure MediaWiki and its dependencies, and provide a way to execute these tests via the standard phpunit entry point, allowing for faster development and integration with existing tooling like IDEs. The initial set of tests that met these criteria were identified using the work Amir did in I88822667693d9e00ac3d4639c87bc24e5083e5e8. These tests were then moved into a new subdirectory under phpunit/ and organized into a separate test suite. The environment for this suite is set up via a PHPUnit bootstrap file without a custom entry point. You can execute these tests by running: $ vendor/bin/phpunit -d memory_limit=512M -c tests/phpunit/unit-tests.xml Bug: T89432 Bug: T87781 Bug: T84948 Change-Id: Iad01033a0548afd4d2a6f2c1ef6fcc9debf72c0d
* Add missing @covers to parser related testsUmherirrender2019-02-011-0/+1
| | | | Change-Id: I615ba41c9a6f235f65991549cb27003438115fe9
* Default installations to using RemexHtml for tidyingJames D. Forrester2018-04-101-2/+2
| | | | | | | | | | | This combines two changes – defaulting tidying to on, previously off, and defaulting the tidying library to RemexHtml, previously the tidy binary. Config options are going to be a bit of a mess until we drop support for the old tidy binary config route. Bug: T185753 Depends-On: I0a8973f508fbf65160177b003260831639828eeb Change-Id: I6879a77a78d780c7c056d807dde20682c6097d1b
* Revert "Default installations to using RemexHtml for tidying"Addshore2018-04-061-2/+2
| | | | | | | | | This reverts commit efcef34d3da74613b01a320873bc59e134748183. This is causing failures in CI for extensions Depends-On: If9789a61d52f60882fc2f0226757c9d93e1c6362 Change-Id: I17cf305a951b2bf1f03285b12c3e131abcffd31d
* Default installations to using RemexHtml for tidyingJames D. Forrester2018-04-051-2/+2
| | | | | | | | | | | This combines two changes – defaulting tidying to on, previously off, and defaulting the tidying library to RemexHtml, previously the tidy binary. Config options are going to be a bit of a mess until we drop support for the old tidy binary config route. Bug: T185753 Depends-On: I0a8973f508fbf65160177b003260831639828eea Change-Id: I6879a77a78d780c7c056d807dde20682c6097d1a
* Convert all array() syntax to []Kunal Mehta2016-02-171-10/+10
| | | | | | | | | | Per wikitech-l consensus: https://lists.wikimedia.org/pipermail/wikitech-l/2016-February/084821.html Notes: * Disabled CallTimePassByReference due to false positives (T127163) Change-Id: I2c8ce713ce6600a0bb7bf67537c87044c7a45c4b
* Abstract and refactor Tidy supportTim Starling2015-09-101-2/+1
| | | | | | | | | | | | | | * Split tidy implementations into a class hierarchy * Bring all tidy configuration into a single associative array and deprecate the old configuration. * Remove $wgAlwaysUseTidy This is preparatory to replacement of Tidy (T89331). I used the name "Raggett" for things relating to Dave Raggett's Tidy, since if we use "tidy" to mean the new abstract system as well as Raggett's tidy, it gets confusing. Change-Id: I77af1a16cbbb47fc226d05fb9aad56c58e8910b5
* test: Clean up data providers that should be staticTimo Tijhof2014-09-181-1/+1
| | | | | | | | | | | | | | | | | | Follows-up b36d883. By far most data providers are static (and PHPUnit expects them to be static and calls them that way). Most of these classes already had their data providers static but additional commits sloppily introduced non-static ones. * ResourceLoaderWikiModuleTest, 8968d8787f. * TitleTest, 545f1d3a73. Odd unused method 'dataTestIsValidMoveOperation' was introduced in 550b878e63. * GlobalVarConfigTest, a3e18c3670. Change-Id: I5da99f7cd3da68c550ae507ffe1f725d31e7666f
* Fixed spacingumherirrender2014-08-271-1/+1
| | | | | | | | | - Added space after reserved words: function, foreach, if - Combined 'else if' into elseif - Added braces to one-line statements - Added spaces after comma, before parentheses Change-Id: Ie5bbf680d6fbe0f0872dab2700c16b1394906a72
* Protect MathML from Tidyphysikerwelt2014-08-221-0/+19
| | | | | | | | | | | | | | MediaWiki installations that use the setting $wgUseTidy = true; are unable to output MathML since the well defined MathML elements are filtered out by Tidy. This was reported as http://sourceforge.net/p/tidy/patches/84/ . This change hides MathML blocks from Tidy. Bug: 66516 Change-Id: Ib48b91238c3eddd6a86b62f6ce57801d7058f0d8
* Make setUp and tearDown protected in testsaude2013-11-241-1/+2
| | | | | | | These are protected in the parent MediaWikiTestCase and PHPUnit_Framework_TestCase. No good reason to make them public. Change-Id: I45ecc0e4209f0c3b27e63a550112e4e0ddf6e530
* Fixed spacingumherirrender2013-11-191-1/+1
| | | | | | | | | | | - Removed double spaces - Added space after if/switch/foreach - Removed space on elseif - Added space around parentheses - Added newline at end of file - Removed space before semicolon at end of line Change-Id: Id40b87e04786c6111e6686d7f7eea1e588bdf37d
* Fix Tidy quietly breaking TOC disablingMax Semenik2013-10-251-0/+44
The functionality was introduced in I2889bcb9 but doesn't work in presence if Tidy. Change-Id: Ibf96cc3bc94fac75fd92ec5b9205011fcb68f0c2