2016-12-02 16:11:16 +00:00
|
|
|
<?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;
|
|
|
|
|
2021-06-11 17:36:24 +00:00
|
|
|
use ContentHandler;
|
2016-12-02 16:11:16 +00:00
|
|
|
use MediaWiki\Linter\Database;
|
|
|
|
use MediaWiki\Linter\LintError;
|
|
|
|
use MediaWiki\Linter\RecordLintJob;
|
|
|
|
use Title;
|
2021-06-11 17:36:24 +00:00
|
|
|
use User;
|
2016-12-02 16:11:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @group Database
|
|
|
|
* @covers MediaWiki\Linter\RecordLintJob
|
|
|
|
*/
|
2021-10-12 19:52:50 +00:00
|
|
|
class RecordLintJobTest extends \MediaWikiIntegrationTestCase {
|
2016-12-02 16:11:16 +00:00
|
|
|
/**
|
2021-06-11 17:36:24 +00:00
|
|
|
* @return array
|
2016-12-02 16:11:16 +00:00
|
|
|
*/
|
2021-06-11 17:36:24 +00:00
|
|
|
private function createTitleAndPage() {
|
|
|
|
$titleText = 'TestPage';
|
|
|
|
$userName = 'LinterUser';
|
|
|
|
$baseText = 'wikitext test content';
|
|
|
|
|
|
|
|
$ns = $this->getDefaultWikitextNS();
|
|
|
|
$title = Title::newFromText( $titleText, $ns );
|
|
|
|
$user = User::newFromName( $userName );
|
|
|
|
if ( $user->getId() === 0 ) {
|
|
|
|
$user->addToDatabase();
|
|
|
|
}
|
2021-12-16 21:19:15 +00:00
|
|
|
$page = $this->getServiceContainer()->getWikiPageFactory()->newFromTitle( $title );
|
2016-12-02 16:11:16 +00:00
|
|
|
|
2021-06-11 17:36:24 +00:00
|
|
|
$content = ContentHandler::makeContent( $baseText, $title );
|
|
|
|
$page->doUserEditContent( $content, $user, "base text for test" );
|
|
|
|
|
|
|
|
return [ 'title' => $title,
|
|
|
|
'pageID' => $page->getRevisionRecord()->getPageId(),
|
|
|
|
'revID' => $page->getRevisionRecord()->getID()
|
|
|
|
];
|
2016-12-02 16:11:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testRun() {
|
|
|
|
$error = [
|
|
|
|
'type' => 'fostered',
|
|
|
|
'location' => [ 0, 10 ],
|
|
|
|
'params' => [],
|
2017-12-07 22:30:14 +00:00
|
|
|
'dbid' => null,
|
2016-12-02 16:11:16 +00:00
|
|
|
];
|
2021-06-11 17:36:24 +00:00
|
|
|
$titleAndPage = $this->createTitleAndPage();
|
|
|
|
$job = new RecordLintJob( $titleAndPage['title'], [
|
2016-12-02 16:11:16 +00:00
|
|
|
'errors' => [ $error ],
|
2021-06-11 17:36:24 +00:00
|
|
|
'revision' => $titleAndPage['revID']
|
2016-12-02 16:11:16 +00:00
|
|
|
] );
|
|
|
|
$this->assertTrue( $job->run() );
|
|
|
|
/** @var LintError[] $errorsFromDb */
|
2021-06-11 17:36:24 +00:00
|
|
|
$errorsFromDb = array_values( ( new Database( $titleAndPage['pageID'] ) )->getForPage() );
|
2016-12-02 16:11:16 +00:00
|
|
|
$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 );
|
|
|
|
}
|
|
|
|
}
|