summaryrefslogtreecommitdiff
path: root/tests/phpunit/includes/api/ApiPurgeTest.php
blob: a7f9229d034b808004c1a592da764acb73f32c3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php

/**
 * @group API
 * @group Database
 * @group medium
 */
class ApiPurgeTest extends ApiTestCase {

	protected 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 );
		}
	}

}