29 lines
648 B
PHP
29 lines
648 B
PHP
<?php
|
|
|
|
/**
|
|
* @group API
|
|
* @group Database
|
|
* @group medium
|
|
*/
|
|
class ApiParseTest extends ApiTestCase {
|
|
|
|
protected function setUp() {
|
|
parent::setUp();
|
|
$this->doLogin();
|
|
}
|
|
|
|
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 ) );
|
|
}
|
|
}
|
|
}
|