mediawiki-extensions-Linter/tests/phpunit/RecordLintJobTest.php
C. Scott Ananian 551a1fb398 Allow Parsoid to provide category ID hints
This eases deployment dependencies by allowing Parsoid to supply an
appropriate database category ID so that new lint categories can be
appropriately stored during the interval between adding a new lint
category to Parsoid and deploying an Extension:Linter patch to
describe it.

Change-Id: Ib7b2342168fa53ca2abac7d5f54fe313be341eb7
2019-12-03 23:26:34 -05:00

69 lines
2.1 KiB
PHP

<?php
/**
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*
* @file
*/
namespace MediaWiki\Linter\Test;
use MediaWiki\Linter\Database;
use MediaWiki\Linter\LintError;
use MediaWiki\Linter\RecordLintJob;
use Title;
/**
* @group Database
* @group Broken
* @covers MediaWiki\Linter\RecordLintJob
*/
class RecordLintJobTest extends \MediaWikiTestCase {
/**
* @param int $articleId
* @param int $revId
* @return Title
*/
private function getMockTitle( $articleId = 1, $revId = 2 ) {
$mock = $this->createMock( Title::class );
$mock->expects( $this->any() )->method( 'getLatestRevID' )->willReturn( $revId );
$mock->expects( $this->any() )->method( 'getArticleID' )->willReturn( $articleId );
return $mock;
}
public function testRun() {
$error = [
'type' => 'fostered',
'location' => [ 0, 10 ],
'params' => [],
'dbid' => null,
];
$job = new RecordLintJob( $this->getMockTitle(), [
'errors' => [ $error ],
'revision' => 2,
] );
$this->assertTrue( $job->run() );
/** @var LintError[] $errorsFromDb */
$errorsFromDb = array_values( ( new Database( 1 ) )->getForPage() );
$this->assertCount( 1, $errorsFromDb );
$this->assertInstanceOf( LintError::class, $errorsFromDb[0] );
$this->assertEquals( $error['type'], $errorsFromDb[0]->category );
$this->assertEquals( $error['location'], $errorsFromDb[0]->location );
$this->assertEquals( $error['params'], $errorsFromDb[0]->params );
}
}