Since in several cases, with an all-in-one commit, git's file rename detection failed, I split the renames out into their own commit to make review easier. Some changes here won't make complete sense without the following commit. * Moved TestsAutoLoader to tests/common/. It will be joined by a friend. * Renamed ParserTest to ParserTestRunner, since the former name was overly generic. * Renamed TestFileIterator to TestFileReader. Please see the subsequent commit for rationale. * Moved parserTests.php to tests/parser/. It was the only file left in tests/, and it should have been moved to tests/parser years ago, analogous to phpunit.php. * Renamed NewParserTest to ParserIntegrationTest. This was a tricky one, apparently the name has to end in "Test" or else the structure test will fail. Analogous to ParserMethodsTest etc. Rationale: because it's not new anymore. * Renamed MediaWikiParserTest to ParserTestTopLevelSuite and moved it to the suites directory. A more descriptive name. Being in suites/ shields it from StructureTests, and is correct anyway. Change-Id: Iddc6eaf815fdd64b3addb8570b4b6303ab99d634
42 lines
1.2 KiB
PHP
42 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
*
|
|
* @file
|
|
* @ingroup Testing
|
|
*/
|
|
|
|
/**
|
|
* An iterator for use as a phpunit data provider. Provides the test arguments
|
|
* in the order expected by ParserIntegrationTest::testParserTest().
|
|
*/
|
|
class TestFileDataProvider extends TestFileReader {
|
|
function current() {
|
|
$test = parent::current();
|
|
if ( $test ) {
|
|
return [
|
|
$test['test'],
|
|
$test['input'],
|
|
$test['result'],
|
|
$test['options'],
|
|
$test['config'],
|
|
];
|
|
} else {
|
|
return $test;
|
|
}
|
|
}
|
|
}
|
|
|