wiki.techinc.nl/tests/phpunit/includes/api/ApiQueryAllPagesTest.php
Kunal Mehta 6e9b4f0e9c Convert all array() syntax to []
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
2016-02-17 01:33:00 -08:00

36 lines
945 B
PHP

<?php
/**
* @group API
* @group Database
* @group medium
*/
class ApiQueryAllPagesTest extends ApiTestCase {
protected function setUp() {
parent::setUp();
$this->doLogin();
}
/**
*Test bug 25702
*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->doEdit( 'Some text', '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->assertNotEquals( 0, count( $result[0]['query']['allpages'] ),
'allpages list does not contain page Category:Template:xyz' );
}
}