mediawiki-extensions-Linter/tests/phpunit/LintUpdateTest.php
daniel 8b22ad5d78 Trigger Parsoid run when page metadata is being updated
When RESTBase is turned off, Parsoid runs will no longer be triggered
on template changes. This creates a new mechanism to do that, based on
the RevisionDataUpdates hook called by DerivedPageDataUpdater. The new
behavior is controlled by a feature flag, LinterParseOnDerivedDataUpdate,
which is enabled per default. In WMF production, this should be
turned off as long as we are still triggering Parsoid parses through
the pregeneration mechanism in RESTBase.

Note that this will not write ParserOutput to the ParserCache. On edits,
pages will get parsed with Parsoid twice, once to trigger the lint data
update, and once by ParsoidCachePrewarmJob to populate the ParserCache.
Both parses will trigger the ParserLogLinterData hook, the lint data
from the second parse is redundant.

However, while ParsoidCachePrewarmJob and RevisionDataUpdates get
triggered together on edits, they also get triggered separately:
ParsoidCachePrewarmJob by page views with parser cache misses; and
RevisionDataUpdates when pages get invalidated due to template changes.

Because ParsoidCachePrewarmJob and RevisionDataUpdates generally get
triggered in different situations, it seems cleaner to keep the two
mechanisms independent of each other, and live with the duplicate parse
on edit.

Bug: T361013
Change-Id: If53841ee583ce240dd245d640b9ea9c97e1eaa55
2024-06-03 16:50:17 -05:00

197 lines
5.5 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\Content\JavaScriptContent;
use MediaWiki\Linter\LintUpdate;
use MediaWiki\MainConfigNames;
use MediaWiki\Parser\ParserOutput;
use MediaWiki\Parser\Parsoid\ParsoidParser;
use MediaWiki\Revision\MutableRevisionRecord;
use MediaWiki\Revision\RenderedRevision;
use MediaWiki\Revision\RevisionRecord;
use MediaWiki\Revision\SlotRecord;
use MediaWikiIntegrationTestCase;
use RefreshLinksJob;
use WikiPage;
use WikitextContent;
/**
* @group Database
* @covers \MediaWiki\Linter\LintUpdate
*/
class LintUpdateTest extends MediaWikiIntegrationTestCase {
protected function setUp(): void {
parent::setUp();
$this->overrideConfigValue( MainConfigNames::ParsoidSettings, [
'linting' => true
] );
$this->overrideConfigValue( 'LinterParseOnDerivedDataUpdate', true );
}
/**
* Assert that we trigger a parse, and that parse triggers onParserLogLinterData,
* and in turn triggers the ParserLogLinterData hook via Parsoid.
*/
public function testUpdate() {
$parsoid = $this->getServiceContainer()->getParsoidParserFactory()->create();
// NOTE: This performs an edit, so do it before installing the temp hook below!
$rrev = $this->newRenderedRevision();
$hookCalled = false;
$this->setTemporaryHook( 'ParserLogLinterData', static function () use ( &$hookCalled ) {
$hookCalled = true;
}, false );
$update = $this->newLintUpdate( $parsoid, $rrev );
$update->doUpdate();
$this->assertTrue( $hookCalled );
}
/**
* Assert that we don't parse if the content model is not supported.
*/
public function testSkipModel() {
$parsoid = $this->createNoOpMock(
ParsoidParser::class,
[ 'parse' ]
);
$parsoid->expects( $this->never() )->method( 'parse' );
$page = $this->getExistingTestPage();
$rev = new MutableRevisionRecord( $page );
$rev->setSlot(
SlotRecord::newUnsaved(
SlotRecord::MAIN,
new JavaScriptContent( '{}' )
)
);
$update = $this->newLintUpdate( $parsoid, $this->newRenderedRevision( $page, $rev ) );
$update->doUpdate();
}
/**
* Assert that we don't parse if the given revision is no longer the
* latest revision.
*/
public function testSkipOld() {
$parsoid = $this->createNoOpMock(
ParsoidParser::class,
[ 'parse' ]
);
$parsoid->expects( $this->never() )->method( 'parse' );
$page = $this->getExistingTestPage();
$rev = new MutableRevisionRecord( $page );
$rev->setSlot(
SlotRecord::newUnsaved(
SlotRecord::MAIN,
new WikitextContent( 'bla bla' )
)
);
// make it not the current revision
$rev->setId( $page->getLatest() - 1 );
$update = $this->newLintUpdate( $parsoid, $this->newRenderedRevision( $page, $rev ) );
$update->doUpdate();
}
/**
* Assert that a LintUpdate is triggered on edit through the RevisionDataUpdates
* hook, and in turn triggers the ParserLogLinterData hook via Parsoid.
*
* @covers \MediaWiki\Linter\Hooks::onRevisionDataUpdates
*/
public function testPageEditIntegration() {
$hookCalled = 0;
$this->setTemporaryHook( 'ParserLogLinterData', static function () use ( &$hookCalled ) {
$hookCalled++;
}, false );
$status = $this->editPage( 'JustSomePage', new WikitextContent( 'hello world' ) );
$this->assertSame( 1, $hookCalled );
$page = $this->getServiceContainer()->getWikiPageFactory()
->newFromTitle( $status->getNewRevision()->getPage() );
}
/**
* Assert that a LintUpdate is triggered from RefreshLinksJob through the
* RevisionDataUpdates hook, and in turn triggers the ParserLogLinterData
* hook via Parsoid.
*
* @covers \MediaWiki\Linter\Hooks::onRevisionDataUpdates
*/
public function testRefreshLinksJobIntegration() {
// NOTE: This performs an edit, so do it before installing the temp hook below!
$page = $this->getExistingTestPage();
$hookCalled = 0;
$this->setTemporaryHook( 'ParserLogLinterData', static function () use ( &$hookCalled ) {
$hookCalled++;
}, false );
$job = new RefreshLinksJob( $page, [] );
$job->run();
$this->assertSame( 1, $hookCalled );
}
private function newRenderedRevision( WikiPage $page = null, RevisionRecord $rev = null ) {
$page = $this->getExistingTestPage();
$title = $page->getTitle();
$rev ??= $this->getServiceContainer()->getRevisionLookup()->getRevisionByTitle( $title );
$pOpt = $page->makeParserOptions( 'canonical' );
$rrev = new RenderedRevision(
$rev,
$pOpt,
$this->getServiceContainer()->getContentRenderer(),
static function () {
}
);
$rrev->setRevisionParserOutput( new ParserOutput( 'testing' ) );
return $rrev;
}
private function newLintUpdate( ParsoidParser $parsoid, RenderedRevision $renderedRevision ) {
$wikiPageFactory = $this->getServiceContainer()->getWikiPageFactory();
return new LintUpdate(
$parsoid,
$wikiPageFactory,
$renderedRevision
);
}
}