… and avoid assertEmpty() on arrays, in favor of a much more strict assertSame( [] ). Change-Id: I20266b0b1fc38a3a87666ba1b0793cb2b37d94a9
38 lines
916 B
PHP
38 lines
916 B
PHP
<?php
|
|
|
|
/**
|
|
* @group API
|
|
* @group Database
|
|
* @group medium
|
|
*
|
|
* @covers ApiPurge
|
|
*/
|
|
class ApiPurgeTest extends ApiTestCase {
|
|
|
|
/**
|
|
* @group Broken
|
|
*/
|
|
public function testPurgeMainPage() {
|
|
if ( !Title::newFromText( 'UTPage' )->exists() ) {
|
|
$this->markTestIncomplete( "The article [[UTPage]] does not exist" );
|
|
}
|
|
|
|
$somePage = mt_rand();
|
|
|
|
$data = $this->doApiRequest( [
|
|
'action' => 'purge',
|
|
'titles' => 'UTPage|' . $somePage . '|%5D' ] );
|
|
|
|
$this->assertArrayHasKey( 'purge', $data[0],
|
|
"Must receive a 'purge' result from API" );
|
|
|
|
$this->assertCount( 3, $data[0]['purge'],
|
|
"Purge request for three articles should give back three results received: "
|
|
. var_export( $data[0]['purge'], true ) );
|
|
|
|
$pages = [ 'UTPage' => 'purged', $somePage => 'missing', '%5D' => 'invalid' ];
|
|
foreach ( $data[0]['purge'] as $v ) {
|
|
$this->assertArrayHasKey( $pages[$v['title']], $v );
|
|
}
|
|
}
|
|
}
|