API warnings and error messages are currently hard-coded English strings. This patch changes that. With a few exceptions, this patch should be compatible with non-updated extensions: * The change to ApiBase::$messageMap will blow up anything trying to mess with it. * The changes to the 'ApiCheckCanExecute' hook will cause a wrong (probably unparsed) error message to be emitted for extensions not already using an ApiMessage. Unless they're currently broken like Wikibase. Bug: T37074 Bug: T47843 Depends-On: Ia2b66b57cd4eaddc30b3ffdd7b97d6ca3e02d898 Depends-On: I2e1bb975bb0045476c03ebe6cdec00259bae22ec Depends-On: I53987bf87c48f6c00deec17a8e957d24fcc3eaa6 Depends-On: Ibf93a459eb62d30f7c70d20e91ec9faeb80d10ed Depends-On: I3cf889811f44a15935e454dd42f081164d4a098c Depends-On: Ieae527de86735ddcba34724730e8730fb277b99b Depends-On: I535344c29d51521147c2a26c341dae38cec3e931 Change-Id: Iae0e2ce3bd42dd4776a9779664086119ac188412
144 lines
3.8 KiB
PHP
144 lines
3.8 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @group API
|
|
* @group Database
|
|
* @group medium
|
|
* @covers ApiQuery
|
|
*/
|
|
class ApiQueryTest extends ApiTestCase {
|
|
protected function setUp() {
|
|
parent::setUp();
|
|
$this->doLogin();
|
|
|
|
// Setup apiquerytestiw: as interwiki prefix
|
|
$this->setMwGlobals( 'wgHooks', [
|
|
'InterwikiLoadPrefix' => [
|
|
function ( $prefix, &$data ) {
|
|
if ( $prefix == 'apiquerytestiw' ) {
|
|
$data = [ 'iw_url' => 'wikipedia' ];
|
|
}
|
|
return false;
|
|
}
|
|
]
|
|
] );
|
|
}
|
|
|
|
public function testTitlesGetNormalized() {
|
|
global $wgMetaNamespace;
|
|
|
|
$this->setMwGlobals( [
|
|
'wgCapitalLinks' => true,
|
|
] );
|
|
|
|
$data = $this->doApiRequest( [
|
|
'action' => 'query',
|
|
'titles' => 'Project:articleA|article_B' ] );
|
|
|
|
$this->assertArrayHasKey( 'query', $data[0] );
|
|
$this->assertArrayHasKey( 'normalized', $data[0]['query'] );
|
|
|
|
// Forge a normalized title
|
|
$to = Title::newFromText( $wgMetaNamespace . ':ArticleA' );
|
|
|
|
$this->assertEquals(
|
|
[
|
|
'fromencoded' => false,
|
|
'from' => 'Project:articleA',
|
|
'to' => $to->getPrefixedText(),
|
|
],
|
|
$data[0]['query']['normalized'][0]
|
|
);
|
|
|
|
$this->assertEquals(
|
|
[
|
|
'fromencoded' => false,
|
|
'from' => 'article_B',
|
|
'to' => 'Article B'
|
|
],
|
|
$data[0]['query']['normalized'][1]
|
|
);
|
|
}
|
|
|
|
public function testTitlesAreRejectedIfInvalid() {
|
|
$title = false;
|
|
while ( !$title || Title::newFromText( $title )->exists() ) {
|
|
$title = md5( mt_rand( 0, 100000 ) );
|
|
}
|
|
|
|
$data = $this->doApiRequest( [
|
|
'action' => 'query',
|
|
'titles' => $title . '|Talk:' ] );
|
|
|
|
$this->assertArrayHasKey( 'query', $data[0] );
|
|
$this->assertArrayHasKey( 'pages', $data[0]['query'] );
|
|
$this->assertEquals( 2, count( $data[0]['query']['pages'] ) );
|
|
|
|
$this->assertArrayHasKey( -2, $data[0]['query']['pages'] );
|
|
$this->assertArrayHasKey( -1, $data[0]['query']['pages'] );
|
|
|
|
$this->assertArrayHasKey( 'missing', $data[0]['query']['pages'][-2] );
|
|
$this->assertArrayHasKey( 'invalid', $data[0]['query']['pages'][-1] );
|
|
}
|
|
|
|
/**
|
|
* Test the ApiBase::titlePartToKey function
|
|
*
|
|
* @param string $titlePart
|
|
* @param int $namespace
|
|
* @param string $expected
|
|
* @param string $expectException
|
|
* @dataProvider provideTestTitlePartToKey
|
|
*/
|
|
function testTitlePartToKey( $titlePart, $namespace, $expected, $expectException ) {
|
|
$this->setMwGlobals( [
|
|
'wgCapitalLinks' => true,
|
|
] );
|
|
|
|
$api = new MockApiQueryBase();
|
|
$exceptionCaught = false;
|
|
try {
|
|
$this->assertEquals( $expected, $api->titlePartToKey( $titlePart, $namespace ) );
|
|
} catch ( ApiUsageException $e ) {
|
|
$exceptionCaught = true;
|
|
}
|
|
$this->assertEquals( $expectException, $exceptionCaught,
|
|
'ApiUsageException thrown by titlePartToKey' );
|
|
}
|
|
|
|
function provideTestTitlePartToKey() {
|
|
return [
|
|
[ 'a b c', NS_MAIN, 'A_b_c', false ],
|
|
[ 'x', NS_MAIN, 'X', false ],
|
|
[ 'y ', NS_MAIN, 'Y_', false ],
|
|
[ 'template:foo', NS_CATEGORY, 'Template:foo', false ],
|
|
[ 'apiquerytestiw:foo', NS_CATEGORY, 'Apiquerytestiw:foo', false ],
|
|
[ "\xF7", NS_MAIN, null, true ],
|
|
[ 'template:foo', NS_MAIN, null, true ],
|
|
[ 'apiquerytestiw:foo', NS_MAIN, null, true ],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Test if all classes in the query module manager exists
|
|
*/
|
|
public function testClassNamesInModuleManager() {
|
|
global $wgAutoloadLocalClasses, $wgAutoloadClasses;
|
|
|
|
// wgAutoloadLocalClasses has precedence, just like in includes/AutoLoader.php
|
|
$classes = $wgAutoloadLocalClasses + $wgAutoloadClasses;
|
|
|
|
$api = new ApiMain(
|
|
new FauxRequest( [ 'action' => 'query', 'meta' => 'siteinfo' ] )
|
|
);
|
|
$queryApi = new ApiQuery( $api, 'query' );
|
|
$modules = $queryApi->getModuleManager()->getNamesWithClasses();
|
|
foreach ( $modules as $name => $class ) {
|
|
$this->assertArrayHasKey(
|
|
$class,
|
|
$classes,
|
|
'Class ' . $class . ' for api module ' . $name . ' not in autoloader (with exact case)'
|
|
);
|
|
}
|
|
}
|
|
}
|