Your IP : 172.71.120.3


Current Path : /var/www/element/data/www/wiki.element.ru/tests/phpunit/includes/api/
Upload File :
Current File : /var/www/element/data/www/wiki.element.ru/tests/phpunit/includes/api/ApiPurgeTest.php

<?php

/**
 * @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 );
		}
	}

}