wiki.techinc.nl/tests/phpunit/includes/api/ApiQueryTest.php
Antoine Musso da8ba7c544 Regroup all API tests in the 'API' PHPUnit group
That will let us tests all the API tests by using PHPUnit group
filtering such as:

 php phpunit.php --group API

Also cleaned some whitespaces

Patchset-4: skipped files that had only whitespace changes

Change-Id: I51e03d910521b061f505e3a9b11a08c7b95f1538
2012-04-02 16:55:31 +02:00

68 lines
1.5 KiB
PHP

<?php
/**
* @group API
* @group Database
*/
class ApiQueryTest extends ApiTestCase {
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] );
}
}