Results in passing a user where previously the fallback to $wgUser was being used, mostly in tests. Bug: T255507 Change-Id: Iabe24315b23c0ad1272353186425e71974528d23
36 lines
960 B
PHP
36 lines
960 B
PHP
<?php
|
|
|
|
/**
|
|
* @group API
|
|
* @group Database
|
|
* @group medium
|
|
*
|
|
* @covers ApiQueryAllPages
|
|
*/
|
|
class ApiQueryAllPagesTest extends ApiTestCase {
|
|
/**
|
|
* Test T27702
|
|
* Prefixes of API search requests are not handled with case sensitivity and may result
|
|
* in wrong search results
|
|
*/
|
|
public function testPrefixNormalizationSearchBug() {
|
|
$title = Title::newFromText( 'Category:Template:xyz' );
|
|
$page = WikiPage::factory( $title );
|
|
|
|
$page->doUserEditContent(
|
|
ContentHandler::makeContent( 'Some text', $page->getTitle() ),
|
|
$this->getTestSysop()->getUser(),
|
|
'inserting content'
|
|
);
|
|
|
|
$result = $this->doApiRequest( [
|
|
'action' => 'query',
|
|
'list' => 'allpages',
|
|
'apnamespace' => NS_CATEGORY,
|
|
'apprefix' => 'Template:x' ] );
|
|
|
|
$this->assertArrayHasKey( 'query', $result[0] );
|
|
$this->assertArrayHasKey( 'allpages', $result[0]['query'] );
|
|
$this->assertContains( 'Category:Template:xyz', $result[0]['query']['allpages'][0] );
|
|
}
|
|
}
|