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( array( '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' ); } }