summaryrefslogtreecommitdiff
path: root/tests/phpunit/includes/api/ApiParseTest.php
blob: 2d714e65a247bdc853fa22eb33a0190d1e3abb19 (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
<?php

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

	protected function setUp() {
		parent::setUp();
		$this->doLogin();
	}

	public function testParseNonexistentPage() {
		$somePage = mt_rand();

		try {
			$this->doApiRequest( array(
				'action' => 'parse',
				'page' => $somePage ) );

			$this->fail( "API did not return an error when parsing a nonexistent page" );
		} catch ( UsageException $ex ) {
			$this->assertEquals( 'missingtitle', $ex->getCodeString(),
				"Parse request for nonexistent page must give 'missingtitle' error: " . var_export( $ex->getMessageArray(), true ) );
		}
	}
}