wiki.techinc.nl/tests/phpunit/includes/api/ApiPurgeTest.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

40 lines
948 B
PHP

<?php
/**
* @group API
* @group Database
*/
class ApiPurgeTest extends ApiTestCase {
function setUp() {
parent::setUp();
$this->doLogin();
}
/**
* @group Broken
*/
function testPurgeMainPage() {
if ( !Title::newFromText( 'UTPage' )->exists() ) {
$this->markTestIncomplete( "The article [[UTPage]] does not exist" );
}
$somePage = mt_rand();
$data = $this->doApiRequest( array(
'action' => 'purge',
'titles' => 'UTPage|' . $somePage . '|%5D' ) );
$this->assertArrayHasKey( 'purge', $data[0],
"Must receive a 'purge' result from API" );
$this->assertEquals( 3, count( $data[0]['purge'] ),
"Purge request for three articles should give back three results received: " . var_export( $data[0]['purge'], true ) );
$pages = array( 'UTPage' => 'purged', $somePage => 'missing', '%5D' => 'invalid' );
foreach( $data[0]['purge'] as $v ) {
$this->assertArrayHasKey( $pages[$v['title']], $v );
}
}
}