wiki.techinc.nl/tests/phpunit/includes/api/ApiQueryTest.php
Brad Jorsch 252ae6268b (bug 43762) Mark slow unit test as @group medium
All tests based on APITestCase can be slow. I've also seen more than one
Jenkins failure due to GlobalTest::testMerge timing out.

Also, added a meta-test on APITestCase to make sure that all its
subclasses are marked with @group medium or @group large, to prevent new
tests from re-causing the bug.

Change-Id: I48630736a3d06574876fd1fa3d90899cfbc48012
2013-01-18 14:07:49 -05:00

69 lines
1.6 KiB
PHP

<?php
/**
* @group API
* @group Database
* @group medium
*/
class ApiQueryTest extends ApiTestCase {
protected function setUp() {
parent::setUp();
$this->doLogin();
}
function testTitlesGetNormalized() {
global $wgMetaNamespace;
$data = $this->doApiRequest( array(
'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(
array(
'from' => 'Project:articleA',
'to' => $to->getPrefixedText(),
),
$data[0]['query']['normalized'][0]
);
$this->assertEquals(
array(
'from' => 'article_B',
'to' => 'Article B'
),
$data[0]['query']['normalized'][1]
);
}
function testTitlesAreRejectedIfInvalid() {
$title = false;
while( !$title || Title::newFromText( $title )->exists() ) {
$title = md5( mt_rand( 0, 10000 ) + rand( 0, 999000 ) );
}
$data = $this->doApiRequest( array(
'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] );
}
}