2012-05-10 20:56:34 +00:00
|
|
|
<?php
|
|
|
|
|
|
2021-12-09 23:03:19 +00:00
|
|
|
use MediaWiki\Page\PageIdentityValue;
|
2020-04-09 12:06:22 +00:00
|
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
|
|
|
|
use Wikimedia\TestingAccessWrapper;
|
|
|
|
|
|
2012-05-10 20:56:34 +00:00
|
|
|
/**
|
2017-12-25 04:04:47 +00:00
|
|
|
* @covers LinksUpdate
|
2021-12-07 05:37:26 +00:00
|
|
|
* @covers \MediaWiki\Deferred\LinksUpdate\CategoryLinksTable
|
|
|
|
|
* @covers \MediaWiki\Deferred\LinksUpdate\ExternalLinksTable
|
|
|
|
|
* @covers \MediaWiki\Deferred\LinksUpdate\GenericPageLinksTable
|
|
|
|
|
* @covers \MediaWiki\Deferred\LinksUpdate\ImageLinksTable
|
|
|
|
|
* @covers \MediaWiki\Deferred\LinksUpdate\InterwikiLinksTable
|
|
|
|
|
* @covers \MediaWiki\Deferred\LinksUpdate\LangLinksTable
|
|
|
|
|
* @covers \MediaWiki\Deferred\LinksUpdate\LinksTable
|
|
|
|
|
* @covers \MediaWiki\Deferred\LinksUpdate\LinksTableGroup
|
|
|
|
|
* @covers \MediaWiki\Deferred\LinksUpdate\PageLinksTable
|
|
|
|
|
* @covers \MediaWiki\Deferred\LinksUpdate\PagePropsTable
|
|
|
|
|
* @covers \MediaWiki\Deferred\LinksUpdate\TemplateLinksTable
|
|
|
|
|
* @covers \MediaWiki\Deferred\LinksUpdate\TitleLinksTable
|
2021-12-07 04:17:56 +00:00
|
|
|
*
|
2015-11-15 02:29:37 +00:00
|
|
|
* @group LinksUpdate
|
2012-05-10 20:56:34 +00:00
|
|
|
* @group Database
|
|
|
|
|
* ^--- make sure temporary tables are used.
|
|
|
|
|
*/
|
2015-12-07 16:26:16 +00:00
|
|
|
class LinksUpdateTest extends MediaWikiLangTestCase {
|
2016-03-07 17:26:25 +00:00
|
|
|
protected static $testingPageId;
|
2012-05-10 20:56:34 +00:00
|
|
|
|
2021-07-22 03:11:47 +00:00
|
|
|
protected function setUp(): void {
|
2021-03-08 03:23:08 +00:00
|
|
|
parent::setUp();
|
2012-05-10 20:56:34 +00:00
|
|
|
|
2012-10-02 08:39:30 +00:00
|
|
|
$this->tablesUsed = array_merge( $this->tablesUsed,
|
2016-02-17 09:09:32 +00:00
|
|
|
[
|
2012-10-02 08:39:30 +00:00
|
|
|
'interwiki',
|
|
|
|
|
'page_props',
|
|
|
|
|
'pagelinks',
|
|
|
|
|
'categorylinks',
|
|
|
|
|
'langlinks',
|
|
|
|
|
'externallinks',
|
|
|
|
|
'imagelinks',
|
|
|
|
|
'templatelinks',
|
2015-08-24 17:40:06 +00:00
|
|
|
'iwlinks',
|
|
|
|
|
'recentchanges',
|
2016-02-17 09:09:32 +00:00
|
|
|
]
|
2012-10-02 08:39:30 +00:00
|
|
|
);
|
2012-05-10 20:56:34 +00:00
|
|
|
|
2021-04-29 02:37:11 +00:00
|
|
|
$dbw = wfGetDB( DB_PRIMARY );
|
2012-10-02 08:39:30 +00:00
|
|
|
$dbw->replace(
|
|
|
|
|
'interwiki',
|
2021-12-07 04:17:56 +00:00
|
|
|
'iw_prefix',
|
2016-02-17 09:09:32 +00:00
|
|
|
[
|
2012-10-02 08:39:30 +00:00
|
|
|
'iw_prefix' => 'linksupdatetest',
|
|
|
|
|
'iw_url' => 'http://testing.com/wiki/$1',
|
|
|
|
|
'iw_api' => 'http://testing.com/w/api.php',
|
|
|
|
|
'iw_local' => 0,
|
|
|
|
|
'iw_trans' => 0,
|
|
|
|
|
'iw_wikiid' => 'linksupdatetest',
|
2016-02-17 09:09:32 +00:00
|
|
|
]
|
2012-10-02 08:39:30 +00:00
|
|
|
);
|
2015-08-24 17:40:06 +00:00
|
|
|
$this->setMwGlobals( 'wgRCWatchCategoryMembership', true );
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-07 17:26:25 +00:00
|
|
|
public function addDBDataOnce() {
|
2015-12-11 13:17:51 +00:00
|
|
|
$res = $this->insertPage( 'Testing' );
|
2016-03-07 17:26:25 +00:00
|
|
|
self::$testingPageId = $res['id'];
|
2015-08-24 17:40:06 +00:00
|
|
|
$this->insertPage( 'Some_other_page' );
|
|
|
|
|
$this->insertPage( 'Template:TestingTemplate' );
|
2012-05-10 20:56:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function makeTitleAndParserOutput( $name, $id ) {
|
2020-04-09 12:06:22 +00:00
|
|
|
// Force the value returned by getArticleID, even is
|
|
|
|
|
// READ_LATEST is passed.
|
|
|
|
|
|
|
|
|
|
/** @var Title|MockObject $t */
|
|
|
|
|
$t = $this->getMockBuilder( Title::class )
|
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
|
->onlyMethods( [ 'getArticleID' ] )
|
|
|
|
|
->getMock();
|
|
|
|
|
$t->method( 'getArticleID' )->willReturn( $id );
|
|
|
|
|
|
|
|
|
|
$tAccess = TestingAccessWrapper::newFromObject( $t );
|
|
|
|
|
$tAccess->secureAndSplit( $name );
|
2012-05-10 20:56:34 +00:00
|
|
|
|
|
|
|
|
$po = new ParserOutput();
|
2020-04-09 12:06:22 +00:00
|
|
|
$po->setTitleText( $name );
|
2012-05-10 20:56:34 +00:00
|
|
|
|
2016-02-17 09:09:32 +00:00
|
|
|
return [ $t, $po ];
|
2012-05-10 20:56:34 +00:00
|
|
|
}
|
|
|
|
|
|
2013-10-24 16:45:52 +00:00
|
|
|
/**
|
2014-02-27 19:10:59 +00:00
|
|
|
* @covers ParserOutput::addLink
|
2013-10-24 16:45:52 +00:00
|
|
|
*/
|
2012-05-10 20:56:34 +00:00
|
|
|
public function testUpdate_pagelinks() {
|
2015-12-11 13:17:51 +00:00
|
|
|
/** @var Title $t */
|
2014-02-27 19:10:59 +00:00
|
|
|
/** @var ParserOutput $po */
|
2016-03-07 17:26:25 +00:00
|
|
|
list( $t, $po ) = $this->makeTitleAndParserOutput( "Testing", self::$testingPageId );
|
2012-05-10 20:56:34 +00:00
|
|
|
|
|
|
|
|
$po->addLink( Title::newFromText( "Foo" ) );
|
2021-12-07 04:17:56 +00:00
|
|
|
$po->addLink( Title::newFromText( "Bar" ) );
|
2012-05-10 20:56:34 +00:00
|
|
|
$po->addLink( Title::newFromText( "Special:Foo" ) ); // special namespace should be ignored
|
|
|
|
|
$po->addLink( Title::newFromText( "linksupdatetest:Foo" ) ); // interwiki link should be ignored
|
|
|
|
|
$po->addLink( Title::newFromText( "#Foo" ) ); // hash link should be ignored
|
|
|
|
|
|
2014-04-24 10:05:52 +00:00
|
|
|
$update = $this->assertLinksUpdate(
|
|
|
|
|
$t,
|
|
|
|
|
$po,
|
|
|
|
|
'pagelinks',
|
2021-12-09 23:03:19 +00:00
|
|
|
[ 'pl_namespace', 'pl_title' ],
|
2016-03-07 17:26:25 +00:00
|
|
|
'pl_from = ' . self::$testingPageId,
|
2021-12-07 04:17:56 +00:00
|
|
|
[
|
|
|
|
|
[ NS_MAIN, 'Bar' ],
|
|
|
|
|
[ NS_MAIN, 'Foo' ],
|
|
|
|
|
]
|
2014-04-24 10:05:52 +00:00
|
|
|
);
|
2016-02-17 09:09:32 +00:00
|
|
|
$this->assertArrayEquals( [
|
2013-10-09 18:48:37 +00:00
|
|
|
Title::makeTitle( NS_MAIN, 'Foo' ), // newFromText doesn't yield the same internal state....
|
2021-12-07 04:17:56 +00:00
|
|
|
Title::makeTitle( NS_MAIN, 'Bar' ),
|
2016-02-17 09:09:32 +00:00
|
|
|
], $update->getAddedLinks() );
|
2012-05-10 20:56:34 +00:00
|
|
|
|
|
|
|
|
$po = new ParserOutput();
|
|
|
|
|
$po->setTitleText( $t->getPrefixedText() );
|
|
|
|
|
|
|
|
|
|
$po->addLink( Title::newFromText( "Bar" ) );
|
2021-12-07 04:17:56 +00:00
|
|
|
$po->addLink( Title::newFromText( "Baz" ) );
|
|
|
|
|
$po->addLink( Title::newFromText( "Talk:Baz" ) );
|
2012-05-10 20:56:34 +00:00
|
|
|
|
2014-04-24 10:05:52 +00:00
|
|
|
$update = $this->assertLinksUpdate(
|
|
|
|
|
$t,
|
|
|
|
|
$po,
|
|
|
|
|
'pagelinks',
|
2021-12-09 23:03:19 +00:00
|
|
|
[ 'pl_namespace', 'pl_title' ],
|
2016-03-07 17:26:25 +00:00
|
|
|
'pl_from = ' . self::$testingPageId,
|
2016-02-17 09:09:32 +00:00
|
|
|
[
|
|
|
|
|
[ NS_MAIN, 'Bar' ],
|
2021-12-07 04:17:56 +00:00
|
|
|
[ NS_MAIN, 'Baz' ],
|
|
|
|
|
[ NS_TALK, 'Baz' ],
|
2016-02-17 09:09:32 +00:00
|
|
|
]
|
2014-04-24 10:05:52 +00:00
|
|
|
);
|
2016-02-17 09:09:32 +00:00
|
|
|
$this->assertArrayEquals( [
|
2021-12-07 04:17:56 +00:00
|
|
|
Title::makeTitle( NS_MAIN, 'Baz' ),
|
|
|
|
|
Title::makeTitle( NS_TALK, 'Baz' ),
|
2016-02-17 09:09:32 +00:00
|
|
|
], $update->getAddedLinks() );
|
|
|
|
|
$this->assertArrayEquals( [
|
2013-10-09 18:48:37 +00:00
|
|
|
Title::makeTitle( NS_MAIN, 'Foo' ),
|
2016-02-17 09:09:32 +00:00
|
|
|
], $update->getRemovedLinks() );
|
2012-05-10 20:56:34 +00:00
|
|
|
}
|
|
|
|
|
|
2021-12-09 23:03:19 +00:00
|
|
|
public function testUpdate_pagelinks_move() {
|
|
|
|
|
list( $t, $po ) = $this->makeTitleAndParserOutput( "Testing", self::$testingPageId );
|
|
|
|
|
|
|
|
|
|
$po->addLink( Title::newFromText( "Foo" ) );
|
|
|
|
|
$this->assertLinksUpdate(
|
|
|
|
|
$t,
|
|
|
|
|
$po,
|
|
|
|
|
'pagelinks',
|
|
|
|
|
[ 'pl_namespace', 'pl_title', 'pl_from_namespace' ],
|
|
|
|
|
'pl_from = ' . self::$testingPageId,
|
|
|
|
|
[
|
|
|
|
|
[ NS_MAIN, 'Foo', NS_MAIN ],
|
|
|
|
|
]
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
list( $t, $po ) = $this->makeTitleAndParserOutput( "User:Testing", self::$testingPageId );
|
|
|
|
|
$po->addLink( Title::newFromText( "Foo" ) );
|
|
|
|
|
$this->assertMoveLinksUpdate(
|
|
|
|
|
$t,
|
|
|
|
|
new PageIdentityValue( 2, 0, "Foo", false ),
|
|
|
|
|
$po,
|
|
|
|
|
'pagelinks',
|
|
|
|
|
[ 'pl_namespace', 'pl_title', 'pl_from_namespace' ],
|
|
|
|
|
'pl_from = ' . self::$testingPageId,
|
|
|
|
|
[
|
|
|
|
|
[ NS_MAIN, 'Foo', NS_USER ],
|
|
|
|
|
]
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-24 16:45:52 +00:00
|
|
|
/**
|
2014-02-27 19:10:59 +00:00
|
|
|
* @covers ParserOutput::addExternalLink
|
2019-02-07 16:10:09 +00:00
|
|
|
* @covers LinksUpdate::getAddedExternalLinks
|
|
|
|
|
* @covers LinksUpdate::getRemovedExternalLinks
|
2013-10-24 16:45:52 +00:00
|
|
|
*/
|
2012-05-10 20:56:34 +00:00
|
|
|
public function testUpdate_externallinks() {
|
2014-02-27 19:10:59 +00:00
|
|
|
/** @var ParserOutput $po */
|
2016-03-07 17:26:25 +00:00
|
|
|
list( $t, $po ) = $this->makeTitleAndParserOutput( "Testing", self::$testingPageId );
|
2012-05-10 20:56:34 +00:00
|
|
|
|
|
|
|
|
$po->addExternalLink( "http://testing.com/wiki/Foo" );
|
2021-12-07 04:17:56 +00:00
|
|
|
$po->addExternalLink( "http://testing.com/wiki/Bar" );
|
2012-05-10 20:56:34 +00:00
|
|
|
|
2019-02-07 16:10:09 +00:00
|
|
|
$update = $this->assertLinksUpdate(
|
2015-12-11 13:17:51 +00:00
|
|
|
$t,
|
|
|
|
|
$po,
|
|
|
|
|
'externallinks',
|
2021-12-09 23:03:19 +00:00
|
|
|
[ 'el_to', 'el_index' ],
|
2016-03-07 17:26:25 +00:00
|
|
|
'el_from = ' . self::$testingPageId,
|
2016-02-17 09:09:32 +00:00
|
|
|
[
|
2021-12-07 04:17:56 +00:00
|
|
|
[ 'http://testing.com/wiki/Bar', 'http://com.testing./wiki/Bar' ],
|
2016-02-17 09:09:32 +00:00
|
|
|
[ 'http://testing.com/wiki/Foo', 'http://com.testing./wiki/Foo' ],
|
|
|
|
|
]
|
2015-12-11 13:17:51 +00:00
|
|
|
);
|
2019-02-07 16:10:09 +00:00
|
|
|
|
|
|
|
|
$this->assertArrayEquals( [
|
2021-12-07 04:17:56 +00:00
|
|
|
"http://testing.com/wiki/Bar",
|
2019-02-07 16:10:09 +00:00
|
|
|
"http://testing.com/wiki/Foo"
|
|
|
|
|
], $update->getAddedExternalLinks() );
|
|
|
|
|
|
|
|
|
|
$po = new ParserOutput();
|
|
|
|
|
$po->setTitleText( $t->getPrefixedText() );
|
|
|
|
|
$po->addExternalLink( 'http://testing.com/wiki/Bar' );
|
2021-12-07 04:17:56 +00:00
|
|
|
$po->addExternalLink( 'http://testing.com/wiki/Baz' );
|
2019-02-07 16:10:09 +00:00
|
|
|
$update = $this->assertLinksUpdate(
|
|
|
|
|
$t,
|
|
|
|
|
$po,
|
|
|
|
|
'externallinks',
|
2021-12-09 23:03:19 +00:00
|
|
|
[ 'el_to', 'el_index' ],
|
2019-02-07 16:10:09 +00:00
|
|
|
'el_from = ' . self::$testingPageId,
|
|
|
|
|
[
|
|
|
|
|
[ 'http://testing.com/wiki/Bar', 'http://com.testing./wiki/Bar' ],
|
2021-12-07 04:17:56 +00:00
|
|
|
[ 'http://testing.com/wiki/Baz', 'http://com.testing./wiki/Baz' ],
|
2019-02-07 16:10:09 +00:00
|
|
|
]
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$this->assertArrayEquals( [
|
2021-12-07 04:17:56 +00:00
|
|
|
"http://testing.com/wiki/Baz"
|
2019-02-07 16:10:09 +00:00
|
|
|
], $update->getAddedExternalLinks() );
|
|
|
|
|
$this->assertArrayEquals( [
|
|
|
|
|
"http://testing.com/wiki/Foo"
|
|
|
|
|
], $update->getRemovedExternalLinks() );
|
2012-05-10 20:56:34 +00:00
|
|
|
}
|
|
|
|
|
|
2013-10-24 16:45:52 +00:00
|
|
|
/**
|
2014-02-27 19:10:59 +00:00
|
|
|
* @covers ParserOutput::addCategory
|
2013-10-24 16:45:52 +00:00
|
|
|
*/
|
2012-05-10 20:56:34 +00:00
|
|
|
public function testUpdate_categorylinks() {
|
2014-02-27 19:10:59 +00:00
|
|
|
/** @var ParserOutput $po */
|
2013-03-01 20:02:42 +00:00
|
|
|
$this->setMwGlobals( 'wgCategoryCollation', 'uppercase' );
|
|
|
|
|
|
2016-03-07 17:26:25 +00:00
|
|
|
list( $t, $po ) = $this->makeTitleAndParserOutput( "Testing", self::$testingPageId );
|
2012-05-10 20:56:34 +00:00
|
|
|
|
|
|
|
|
$po->addCategory( "Foo", "FOO" );
|
2021-12-07 04:17:56 +00:00
|
|
|
$po->addCategory( "Bar", "BAR" );
|
2012-05-10 20:56:34 +00:00
|
|
|
|
2015-12-11 13:17:51 +00:00
|
|
|
$this->assertLinksUpdate(
|
|
|
|
|
$t,
|
|
|
|
|
$po,
|
|
|
|
|
'categorylinks',
|
2021-12-09 23:03:19 +00:00
|
|
|
[ 'cl_to', 'cl_sortkey' ],
|
2016-03-07 17:26:25 +00:00
|
|
|
'cl_from = ' . self::$testingPageId,
|
2021-12-07 04:17:56 +00:00
|
|
|
[
|
|
|
|
|
[ 'Bar', "BAR\nTESTING" ],
|
|
|
|
|
[ 'Foo', "FOO\nTESTING" ]
|
|
|
|
|
]
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// Check category count
|
|
|
|
|
$this->assertSelect(
|
|
|
|
|
'category',
|
|
|
|
|
[ 'cat_title', 'cat_pages' ],
|
|
|
|
|
[ 'cat_title' => [ 'Foo', 'Bar', 'Baz' ] ],
|
|
|
|
|
[
|
|
|
|
|
[ 'Bar', 1 ],
|
|
|
|
|
[ 'Foo', 1 ]
|
|
|
|
|
]
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
list( $t, $po ) = $this->makeTitleAndParserOutput( "Testing", self::$testingPageId );
|
|
|
|
|
$po->addCategory( "Bar", "Bar" );
|
|
|
|
|
$po->addCategory( "Baz", "Baz" );
|
|
|
|
|
|
|
|
|
|
$this->assertLinksUpdate(
|
|
|
|
|
$t,
|
|
|
|
|
$po,
|
|
|
|
|
'categorylinks',
|
2021-12-09 23:03:19 +00:00
|
|
|
[ 'cl_to', 'cl_sortkey' ],
|
2021-12-07 04:17:56 +00:00
|
|
|
'cl_from = ' . self::$testingPageId,
|
|
|
|
|
[
|
|
|
|
|
[ 'Bar', "BAR\nTESTING" ],
|
|
|
|
|
[ 'Baz', "BAZ\nTESTING" ]
|
|
|
|
|
]
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// Check category count decrement
|
|
|
|
|
$this->assertSelect(
|
|
|
|
|
'category',
|
|
|
|
|
[ 'cat_title', 'cat_pages' ],
|
|
|
|
|
[ 'cat_title' => [ 'Foo', 'Bar', 'Baz' ] ],
|
|
|
|
|
[
|
|
|
|
|
[ 'Bar', 1 ],
|
|
|
|
|
[ 'Baz', 1 ],
|
|
|
|
|
]
|
2015-12-11 13:17:51 +00:00
|
|
|
);
|
2012-05-10 20:56:34 +00:00
|
|
|
}
|
|
|
|
|
|
2015-08-24 17:40:06 +00:00
|
|
|
public function testOnAddingAndRemovingCategory_recentChangesRowIsAdded() {
|
|
|
|
|
$this->setMwGlobals( 'wgCategoryCollation', 'uppercase' );
|
|
|
|
|
|
|
|
|
|
$title = Title::newFromText( 'Testing' );
|
|
|
|
|
$wikiPage = new WikiPage( $title );
|
2021-06-24 08:42:19 +00:00
|
|
|
$wikiPage->doUserEditContent(
|
|
|
|
|
new WikitextContent( '[[Category:Foo]]' ),
|
|
|
|
|
$this->getTestSysop()->getUser(),
|
|
|
|
|
'added category'
|
|
|
|
|
);
|
2015-11-15 02:29:37 +00:00
|
|
|
$this->runAllRelatedJobs();
|
2015-08-24 17:40:06 +00:00
|
|
|
|
|
|
|
|
$this->assertRecentChangeByCategorization(
|
|
|
|
|
$title,
|
2020-06-15 23:05:13 +00:00
|
|
|
$wikiPage->getParserOutput( ParserOptions::newCanonical( 'canonical' ) ),
|
2015-08-24 17:40:06 +00:00
|
|
|
Title::newFromText( 'Category:Foo' ),
|
2016-02-17 09:09:32 +00:00
|
|
|
[ [ 'Foo', '[[:Testing]] added to category' ] ]
|
2015-08-24 17:40:06 +00:00
|
|
|
);
|
|
|
|
|
|
2021-06-24 08:42:19 +00:00
|
|
|
$wikiPage->doUserEditContent(
|
|
|
|
|
new WikitextContent( '[[Category:Bar]]' ),
|
|
|
|
|
$this->getTestSysop()->getUser(),
|
|
|
|
|
'replaced category'
|
|
|
|
|
);
|
2015-11-15 02:29:37 +00:00
|
|
|
$this->runAllRelatedJobs();
|
|
|
|
|
|
2015-08-24 17:40:06 +00:00
|
|
|
$this->assertRecentChangeByCategorization(
|
|
|
|
|
$title,
|
2020-06-15 23:05:13 +00:00
|
|
|
$wikiPage->getParserOutput( ParserOptions::newCanonical( 'canonical' ) ),
|
2015-08-24 17:40:06 +00:00
|
|
|
Title::newFromText( 'Category:Foo' ),
|
2016-02-17 09:09:32 +00:00
|
|
|
[
|
|
|
|
|
[ 'Foo', '[[:Testing]] added to category' ],
|
|
|
|
|
[ 'Foo', '[[:Testing]] removed from category' ],
|
|
|
|
|
]
|
2015-08-24 17:40:06 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$this->assertRecentChangeByCategorization(
|
|
|
|
|
$title,
|
2020-06-15 23:05:13 +00:00
|
|
|
$wikiPage->getParserOutput( ParserOptions::newCanonical( 'canonical' ) ),
|
2015-08-24 17:40:06 +00:00
|
|
|
Title::newFromText( 'Category:Bar' ),
|
2016-02-17 09:09:32 +00:00
|
|
|
[
|
|
|
|
|
[ 'Bar', '[[:Testing]] added to category' ],
|
|
|
|
|
]
|
2015-08-24 17:40:06 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testOnAddingAndRemovingCategoryToTemplates_embeddingPagesAreIgnored() {
|
|
|
|
|
$this->setMwGlobals( 'wgCategoryCollation', 'uppercase' );
|
|
|
|
|
|
|
|
|
|
$templateTitle = Title::newFromText( 'Template:TestingTemplate' );
|
|
|
|
|
$templatePage = new WikiPage( $templateTitle );
|
|
|
|
|
|
|
|
|
|
$wikiPage = new WikiPage( Title::newFromText( 'Testing' ) );
|
2021-06-24 08:42:19 +00:00
|
|
|
$wikiPage->doUserEditContent(
|
|
|
|
|
new WikitextContent( '{{TestingTemplate}}' ),
|
|
|
|
|
$this->getTestSysop()->getUser(),
|
|
|
|
|
'added template'
|
|
|
|
|
);
|
2015-11-15 02:29:37 +00:00
|
|
|
$this->runAllRelatedJobs();
|
|
|
|
|
|
2015-08-24 17:40:06 +00:00
|
|
|
$otherWikiPage = new WikiPage( Title::newFromText( 'Some_other_page' ) );
|
2021-06-24 08:42:19 +00:00
|
|
|
$otherWikiPage->doUserEditContent(
|
|
|
|
|
new WikitextContent( '{{TestingTemplate}}' ),
|
|
|
|
|
$this->getTestSysop()->getUser(),
|
|
|
|
|
'added template'
|
|
|
|
|
);
|
2015-11-15 02:29:37 +00:00
|
|
|
$this->runAllRelatedJobs();
|
|
|
|
|
|
|
|
|
|
$this->assertRecentChangeByCategorization(
|
|
|
|
|
$templateTitle,
|
2020-06-15 23:05:13 +00:00
|
|
|
$templatePage->getParserOutput( ParserOptions::newCanonical( 'canonical' ) ),
|
2015-11-15 02:29:37 +00:00
|
|
|
Title::newFromText( 'Baz' ),
|
2016-02-17 09:09:32 +00:00
|
|
|
[]
|
2015-11-15 02:29:37 +00:00
|
|
|
);
|
|
|
|
|
|
2021-06-24 08:42:19 +00:00
|
|
|
$templatePage->doUserEditContent(
|
|
|
|
|
new WikitextContent( '[[Category:Baz]]' ),
|
|
|
|
|
$this->getTestSysop()->getUser(),
|
|
|
|
|
'added category'
|
|
|
|
|
);
|
2015-11-15 02:29:37 +00:00
|
|
|
$this->runAllRelatedJobs();
|
2015-08-24 17:40:06 +00:00
|
|
|
|
|
|
|
|
$this->assertRecentChangeByCategorization(
|
|
|
|
|
$templateTitle,
|
2020-06-15 23:05:13 +00:00
|
|
|
$templatePage->getParserOutput( ParserOptions::newCanonical( 'canonical' ) ),
|
2015-11-15 02:29:37 +00:00
|
|
|
Title::newFromText( 'Baz' ),
|
2016-02-26 10:28:16 +00:00
|
|
|
[ [
|
|
|
|
|
'Baz',
|
2016-04-02 16:06:40 +00:00
|
|
|
'[[:Template:TestingTemplate]] added to category, ' .
|
|
|
|
|
'[[Special:WhatLinksHere/Template:TestingTemplate|this page is included within other pages]]'
|
2016-02-26 10:28:16 +00:00
|
|
|
] ]
|
2015-08-24 17:40:06 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-09 23:03:19 +00:00
|
|
|
public function testUpdate_categorylinks_move() {
|
|
|
|
|
$this->setMwGlobals( 'wgCategoryCollation', 'uppercase' );
|
|
|
|
|
|
|
|
|
|
/** @var ParserOutput $po */
|
|
|
|
|
list( $t, $po ) = $this->makeTitleAndParserOutput( "Old", self::$testingPageId );
|
|
|
|
|
|
|
|
|
|
$po->addCategory( "Foo", "FOO" );
|
|
|
|
|
|
|
|
|
|
$this->assertLinksUpdate(
|
|
|
|
|
$t,
|
|
|
|
|
$po,
|
|
|
|
|
'categorylinks',
|
|
|
|
|
[ 'cl_to', 'cl_sortkey' ],
|
|
|
|
|
'cl_from = ' . self::$testingPageId,
|
|
|
|
|
[
|
|
|
|
|
[ 'Foo', "FOO\nOLD" ]
|
|
|
|
|
]
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
/** @var ParserOutput $po */
|
|
|
|
|
list( $t, $po ) = $this->makeTitleAndParserOutput( "New", self::$testingPageId );
|
|
|
|
|
|
|
|
|
|
$po->addCategory( "Foo", "FOO" );
|
|
|
|
|
|
|
|
|
|
// An update to cl_sortkey is not expected if there was no move
|
|
|
|
|
$this->assertLinksUpdate(
|
|
|
|
|
$t,
|
|
|
|
|
$po,
|
|
|
|
|
'categorylinks',
|
|
|
|
|
[ 'cl_to', 'cl_sortkey' ],
|
|
|
|
|
'cl_from = ' . self::$testingPageId,
|
|
|
|
|
[
|
|
|
|
|
[ 'Foo', "FOO\nOLD" ]
|
|
|
|
|
]
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// With move notification, update to cl_sortkey is expected
|
|
|
|
|
$this->assertMoveLinksUpdate(
|
|
|
|
|
$t,
|
|
|
|
|
new PageIdentityValue( 2, 0, "new", false ),
|
|
|
|
|
$po,
|
|
|
|
|
'categorylinks',
|
|
|
|
|
[ 'cl_to', 'cl_sortkey' ],
|
|
|
|
|
'cl_from = ' . self::$testingPageId,
|
|
|
|
|
[
|
|
|
|
|
[ 'Foo', "FOO\nNEW" ]
|
|
|
|
|
]
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-24 16:45:52 +00:00
|
|
|
/**
|
2014-02-27 19:10:59 +00:00
|
|
|
* @covers ParserOutput::addInterwikiLink
|
2013-10-24 16:45:52 +00:00
|
|
|
*/
|
2012-05-10 20:56:34 +00:00
|
|
|
public function testUpdate_iwlinks() {
|
2014-02-27 19:10:59 +00:00
|
|
|
/** @var ParserOutput $po */
|
2016-03-07 17:26:25 +00:00
|
|
|
list( $t, $po ) = $this->makeTitleAndParserOutput( "Testing", self::$testingPageId );
|
2012-05-10 20:56:34 +00:00
|
|
|
|
2021-12-07 04:17:56 +00:00
|
|
|
$target1 = Title::makeTitleSafe( NS_MAIN, "T1", '', 'linksupdatetest' );
|
|
|
|
|
$target2 = Title::makeTitleSafe( NS_MAIN, "T2", '', 'linksupdatetest' );
|
|
|
|
|
$target3 = Title::makeTitleSafe( NS_MAIN, "T3", '', 'linksupdatetest' );
|
|
|
|
|
$po->addInterwikiLink( $target1 );
|
|
|
|
|
$po->addInterwikiLink( $target2 );
|
2012-05-10 20:56:34 +00:00
|
|
|
|
2015-12-11 13:17:51 +00:00
|
|
|
$this->assertLinksUpdate(
|
|
|
|
|
$t,
|
|
|
|
|
$po,
|
|
|
|
|
'iwlinks',
|
2021-12-09 23:03:19 +00:00
|
|
|
[ 'iwl_prefix', 'iwl_title' ],
|
2016-03-07 17:26:25 +00:00
|
|
|
'iwl_from = ' . self::$testingPageId,
|
2021-12-07 04:17:56 +00:00
|
|
|
[
|
|
|
|
|
[ 'linksupdatetest', 'T1' ],
|
|
|
|
|
[ 'linksupdatetest', 'T2' ],
|
|
|
|
|
]
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
/** @var ParserOutput $po */
|
|
|
|
|
list( $t, $po ) = $this->makeTitleAndParserOutput( "Testing", self::$testingPageId );
|
|
|
|
|
|
|
|
|
|
$po->addInterwikiLink( $target2 );
|
|
|
|
|
$po->addInterwikiLink( $target3 );
|
|
|
|
|
|
|
|
|
|
$this->assertLinksUpdate(
|
|
|
|
|
$t,
|
|
|
|
|
$po,
|
|
|
|
|
'iwlinks',
|
2021-12-09 23:03:19 +00:00
|
|
|
[ 'iwl_prefix', 'iwl_title' ],
|
2021-12-07 04:17:56 +00:00
|
|
|
'iwl_from = ' . self::$testingPageId,
|
|
|
|
|
[
|
|
|
|
|
[ 'linksupdatetest', 'T2' ],
|
|
|
|
|
[ 'linksupdatetest', 'T3' ]
|
|
|
|
|
]
|
2015-12-11 13:17:51 +00:00
|
|
|
);
|
2012-05-10 20:56:34 +00:00
|
|
|
}
|
|
|
|
|
|
2013-10-24 16:45:52 +00:00
|
|
|
/**
|
2014-02-27 19:10:59 +00:00
|
|
|
* @covers ParserOutput::addTemplate
|
2013-10-24 16:45:52 +00:00
|
|
|
*/
|
2012-05-10 20:56:34 +00:00
|
|
|
public function testUpdate_templatelinks() {
|
2014-02-27 19:10:59 +00:00
|
|
|
/** @var ParserOutput $po */
|
2016-03-07 17:26:25 +00:00
|
|
|
list( $t, $po ) = $this->makeTitleAndParserOutput( "Testing", self::$testingPageId );
|
2012-05-10 20:56:34 +00:00
|
|
|
|
2021-12-07 04:17:56 +00:00
|
|
|
$target1 = Title::newFromText( "Template:T1" );
|
|
|
|
|
$target2 = Title::newFromText( "Template:T2" );
|
|
|
|
|
$target3 = Title::newFromText( "Template:T3" );
|
|
|
|
|
|
|
|
|
|
$po->addTemplate( $target1, 23, 42 );
|
|
|
|
|
$po->addTemplate( $target2, 23, 42 );
|
2012-05-10 20:56:34 +00:00
|
|
|
|
2014-04-24 10:05:52 +00:00
|
|
|
$this->assertLinksUpdate(
|
|
|
|
|
$t,
|
|
|
|
|
$po,
|
|
|
|
|
'templatelinks',
|
2021-12-09 23:03:19 +00:00
|
|
|
[ 'tl_namespace', 'tl_title' ],
|
2016-03-07 17:26:25 +00:00
|
|
|
'tl_from = ' . self::$testingPageId,
|
2021-12-07 04:17:56 +00:00
|
|
|
[
|
|
|
|
|
[ NS_TEMPLATE, 'T1' ],
|
|
|
|
|
[ NS_TEMPLATE, 'T2' ],
|
|
|
|
|
]
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
/** @var ParserOutput $po */
|
|
|
|
|
list( $t, $po ) = $this->makeTitleAndParserOutput( "Testing", self::$testingPageId );
|
|
|
|
|
|
|
|
|
|
$po->addTemplate( $target2, 23, 42 );
|
|
|
|
|
$po->addTemplate( $target3, 23, 42 );
|
|
|
|
|
|
|
|
|
|
$this->assertLinksUpdate(
|
|
|
|
|
$t,
|
|
|
|
|
$po,
|
|
|
|
|
'templatelinks',
|
2021-12-09 23:03:19 +00:00
|
|
|
[ 'tl_namespace', 'tl_title' ],
|
2021-12-07 04:17:56 +00:00
|
|
|
'tl_from = ' . self::$testingPageId,
|
|
|
|
|
[
|
|
|
|
|
[ NS_TEMPLATE, 'T2' ],
|
|
|
|
|
[ NS_TEMPLATE, 'T3' ],
|
|
|
|
|
]
|
2014-04-24 10:05:52 +00:00
|
|
|
);
|
2012-05-10 20:56:34 +00:00
|
|
|
}
|
|
|
|
|
|
2013-10-24 16:45:52 +00:00
|
|
|
/**
|
2014-02-27 19:10:59 +00:00
|
|
|
* @covers ParserOutput::addImage
|
2013-10-24 16:45:52 +00:00
|
|
|
*/
|
2012-05-10 20:56:34 +00:00
|
|
|
public function testUpdate_imagelinks() {
|
2014-02-27 19:10:59 +00:00
|
|
|
/** @var ParserOutput $po */
|
2016-03-07 17:26:25 +00:00
|
|
|
list( $t, $po ) = $this->makeTitleAndParserOutput( "Testing", self::$testingPageId );
|
2012-05-10 20:56:34 +00:00
|
|
|
|
2021-12-07 04:17:56 +00:00
|
|
|
$po->addImage( "1.png" );
|
|
|
|
|
$po->addImage( "2.png" );
|
2012-05-10 20:56:34 +00:00
|
|
|
|
2015-12-11 13:17:51 +00:00
|
|
|
$this->assertLinksUpdate(
|
|
|
|
|
$t,
|
|
|
|
|
$po,
|
|
|
|
|
'imagelinks',
|
|
|
|
|
'il_to',
|
2016-03-07 17:26:25 +00:00
|
|
|
'il_from = ' . self::$testingPageId,
|
2021-12-07 04:17:56 +00:00
|
|
|
[ [ '1.png' ], [ '2.png' ] ]
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
/** @var ParserOutput $po */
|
|
|
|
|
list( $t, $po ) = $this->makeTitleAndParserOutput( "Testing", self::$testingPageId );
|
|
|
|
|
|
|
|
|
|
$po->addImage( "2.png" );
|
|
|
|
|
$po->addImage( "3.png" );
|
|
|
|
|
|
|
|
|
|
$this->assertLinksUpdate(
|
|
|
|
|
$t,
|
|
|
|
|
$po,
|
|
|
|
|
'imagelinks',
|
|
|
|
|
'il_to',
|
|
|
|
|
'il_from = ' . self::$testingPageId,
|
|
|
|
|
[ [ '2.png' ], [ '3.png' ] ]
|
2015-12-11 13:17:51 +00:00
|
|
|
);
|
2012-05-10 20:56:34 +00:00
|
|
|
}
|
|
|
|
|
|
2013-10-24 16:45:52 +00:00
|
|
|
/**
|
2014-02-27 19:10:59 +00:00
|
|
|
* @covers ParserOutput::addLanguageLink
|
2013-10-24 16:45:52 +00:00
|
|
|
*/
|
2012-05-10 20:56:34 +00:00
|
|
|
public function testUpdate_langlinks() {
|
2016-02-17 09:09:32 +00:00
|
|
|
$this->setMwGlobals( [
|
2014-07-07 23:21:09 +00:00
|
|
|
'wgCapitalLinks' => true,
|
2016-02-17 09:09:32 +00:00
|
|
|
] );
|
2014-07-07 23:21:09 +00:00
|
|
|
|
2014-02-27 19:10:59 +00:00
|
|
|
/** @var ParserOutput $po */
|
2016-03-07 17:26:25 +00:00
|
|
|
list( $t, $po ) = $this->makeTitleAndParserOutput( "Testing", self::$testingPageId );
|
2012-05-10 20:56:34 +00:00
|
|
|
|
2021-12-07 04:17:56 +00:00
|
|
|
$po->addLanguageLink( 'De:1' );
|
|
|
|
|
$po->addLanguageLink( 'En:1' );
|
|
|
|
|
$po->addLanguageLink( 'Fr:1' );
|
2012-05-10 20:56:34 +00:00
|
|
|
|
2015-12-11 13:17:51 +00:00
|
|
|
$this->assertLinksUpdate(
|
|
|
|
|
$t,
|
|
|
|
|
$po,
|
|
|
|
|
'langlinks',
|
2021-12-09 23:03:19 +00:00
|
|
|
[ 'll_lang', 'll_title' ],
|
2016-03-07 17:26:25 +00:00
|
|
|
'll_from = ' . self::$testingPageId,
|
2021-12-07 04:17:56 +00:00
|
|
|
[
|
|
|
|
|
[ 'De', '1' ],
|
|
|
|
|
[ 'En', '1' ],
|
|
|
|
|
[ 'Fr', '1' ]
|
|
|
|
|
]
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
list( $t, $po ) = $this->makeTitleAndParserOutput( "Testing", self::$testingPageId );
|
|
|
|
|
$po->addLanguageLink( 'En:2' );
|
|
|
|
|
$po->addLanguageLink( 'Fr:1' );
|
|
|
|
|
|
|
|
|
|
$this->assertLinksUpdate(
|
|
|
|
|
$t,
|
|
|
|
|
$po,
|
|
|
|
|
'langlinks',
|
2021-12-09 23:03:19 +00:00
|
|
|
[ 'll_lang', 'll_title' ],
|
2021-12-07 04:17:56 +00:00
|
|
|
'll_from = ' . self::$testingPageId,
|
|
|
|
|
[
|
|
|
|
|
[ 'En', '2' ],
|
|
|
|
|
[ 'Fr', '1' ]
|
|
|
|
|
]
|
2015-12-11 13:17:51 +00:00
|
|
|
);
|
2012-05-10 20:56:34 +00:00
|
|
|
}
|
|
|
|
|
|
2013-10-24 16:45:52 +00:00
|
|
|
/**
|
2021-10-07 16:13:46 +00:00
|
|
|
* @covers ParserOutput::setPageProperty
|
2013-10-24 16:45:52 +00:00
|
|
|
*/
|
2012-05-10 20:56:34 +00:00
|
|
|
public function testUpdate_page_props() {
|
2014-02-27 19:10:59 +00:00
|
|
|
/** @var ParserOutput $po */
|
2016-03-07 17:26:25 +00:00
|
|
|
list( $t, $po ) = $this->makeTitleAndParserOutput( "Testing", self::$testingPageId );
|
2012-05-10 20:56:34 +00:00
|
|
|
|
2021-02-05 14:15:30 +00:00
|
|
|
$fields = [ 'pp_propname', 'pp_value', 'pp_sortkey' ];
|
2021-12-07 04:17:56 +00:00
|
|
|
$cond = 'pp_page = ' . self::$testingPageId;
|
|
|
|
|
|
|
|
|
|
$po->setPageProperty( 'deleted', 1 );
|
|
|
|
|
$po->setPageProperty( 'changed', 1 );
|
|
|
|
|
$this->assertLinksUpdate(
|
|
|
|
|
$t, $po, 'page_props', $fields, $cond,
|
|
|
|
|
[
|
|
|
|
|
[ 'changed', '1', 1 ],
|
|
|
|
|
[ 'deleted', '1', 1 ]
|
|
|
|
|
]
|
|
|
|
|
);
|
2012-05-10 20:56:34 +00:00
|
|
|
|
2021-12-07 04:17:56 +00:00
|
|
|
list( $t, $po ) = $this->makeTitleAndParserOutput( "Testing", self::$testingPageId );
|
|
|
|
|
|
|
|
|
|
$expected = [];
|
2021-10-07 16:13:46 +00:00
|
|
|
$po->setPageProperty( "bool", true );
|
2016-02-17 09:09:32 +00:00
|
|
|
$expected[] = [ "bool", true ];
|
2014-03-31 11:00:28 +00:00
|
|
|
|
2021-12-07 04:17:56 +00:00
|
|
|
$po->setPageProperty( 'changed', 2 );
|
|
|
|
|
$expected[] = [ 'changed', 2 ];
|
|
|
|
|
|
2021-10-07 16:13:46 +00:00
|
|
|
$po->setPageProperty( "float", 4.0 + 1.0 / 4.0 );
|
2016-02-17 09:09:32 +00:00
|
|
|
$expected[] = [ "float", 4.0 + 1.0 / 4.0 ];
|
2014-03-31 11:00:28 +00:00
|
|
|
|
2021-10-07 16:13:46 +00:00
|
|
|
$po->setPageProperty( "int", -7 );
|
2016-02-17 09:09:32 +00:00
|
|
|
$expected[] = [ "int", -7 ];
|
2014-03-31 11:00:28 +00:00
|
|
|
|
2021-10-07 16:13:46 +00:00
|
|
|
$po->setPageProperty( "string", "33 bar" );
|
2016-02-17 09:09:32 +00:00
|
|
|
$expected[] = [ "string", "33 bar" ];
|
2014-03-31 11:00:28 +00:00
|
|
|
|
|
|
|
|
// compute expected sortkey values
|
2021-02-05 14:15:30 +00:00
|
|
|
foreach ( $expected as &$row ) {
|
|
|
|
|
$value = $row[1];
|
2014-03-31 11:00:28 +00:00
|
|
|
|
2021-02-05 14:15:30 +00:00
|
|
|
if ( is_int( $value ) || is_float( $value ) || is_bool( $value ) ) {
|
|
|
|
|
$row[] = floatval( $value );
|
|
|
|
|
} else {
|
|
|
|
|
$row[] = null;
|
2014-03-31 11:00:28 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-07 04:17:56 +00:00
|
|
|
$update = $this->assertLinksUpdate(
|
2016-03-07 17:26:25 +00:00
|
|
|
$t, $po, 'page_props', $fields, 'pp_page = ' . self::$testingPageId, $expected );
|
2021-12-07 04:17:56 +00:00
|
|
|
|
|
|
|
|
$expectedAssoc = [];
|
|
|
|
|
foreach ( $expected as list( $name, $value ) ) {
|
|
|
|
|
$expectedAssoc[$name] = $value;
|
|
|
|
|
}
|
|
|
|
|
$this->assertArrayEquals( $expectedAssoc, $update->getAddedProperties() );
|
|
|
|
|
$this->assertArrayEquals(
|
|
|
|
|
[
|
|
|
|
|
'changed' => '1',
|
|
|
|
|
'deleted' => '1'
|
|
|
|
|
],
|
|
|
|
|
$update->getRemovedProperties()
|
|
|
|
|
);
|
2014-03-31 11:00:28 +00:00
|
|
|
}
|
|
|
|
|
|
2013-05-15 01:12:35 +00:00
|
|
|
// @todo test recursive, too!
|
2012-05-10 20:56:34 +00:00
|
|
|
|
2014-04-24 10:05:52 +00:00
|
|
|
protected function assertLinksUpdate( Title $title, ParserOutput $parserOutput,
|
|
|
|
|
$table, $fields, $condition, array $expectedRows
|
2021-12-09 23:03:19 +00:00
|
|
|
) {
|
|
|
|
|
return $this->assertMoveLinksUpdate( $title, null, $parserOutput,
|
|
|
|
|
$table, $fields, $condition, $expectedRows );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function assertMoveLinksUpdate(
|
|
|
|
|
Title $title, ?PageIdentityValue $oldTitle, ParserOutput $parserOutput,
|
|
|
|
|
$table, $fields, $condition, array $expectedRows
|
2014-04-24 10:05:52 +00:00
|
|
|
) {
|
2012-05-10 20:56:34 +00:00
|
|
|
$update = new LinksUpdate( $title, $parserOutput );
|
2021-12-07 04:17:56 +00:00
|
|
|
$update->setStrictTestMode();
|
2021-12-09 23:03:19 +00:00
|
|
|
if ( $oldTitle ) {
|
|
|
|
|
$update->setMoveDetails( $oldTitle );
|
|
|
|
|
}
|
2012-05-10 20:56:34 +00:00
|
|
|
|
|
|
|
|
$update->doUpdate();
|
|
|
|
|
|
|
|
|
|
$this->assertSelect( $table, $fields, $condition, $expectedRows );
|
2013-10-09 18:48:37 +00:00
|
|
|
return $update;
|
2012-05-10 20:56:34 +00:00
|
|
|
}
|
2015-08-24 17:40:06 +00:00
|
|
|
|
|
|
|
|
protected function assertRecentChangeByCategorization(
|
|
|
|
|
Title $pageTitle, ParserOutput $parserOutput, Title $categoryTitle, $expectedRows
|
|
|
|
|
) {
|
2019-01-04 18:55:11 +00:00
|
|
|
$this->assertSelect(
|
|
|
|
|
[ 'recentchanges', 'comment' ],
|
2021-12-09 23:03:19 +00:00
|
|
|
[ 'rc_title', 'comment_text' ],
|
2019-01-04 18:55:11 +00:00
|
|
|
[
|
|
|
|
|
'rc_type' => RC_CATEGORIZE,
|
|
|
|
|
'rc_namespace' => NS_CATEGORY,
|
|
|
|
|
'rc_title' => $categoryTitle->getDBkey(),
|
|
|
|
|
'comment_id = rc_comment_id',
|
|
|
|
|
],
|
|
|
|
|
$expectedRows
|
|
|
|
|
);
|
2015-08-24 17:40:06 +00:00
|
|
|
}
|
2015-11-15 02:29:37 +00:00
|
|
|
|
|
|
|
|
private function runAllRelatedJobs() {
|
|
|
|
|
$queueGroup = JobQueueGroup::singleton();
|
|
|
|
|
while ( $job = $queueGroup->pop( 'refreshLinksPrioritized' ) ) {
|
|
|
|
|
$job->run();
|
|
|
|
|
$queueGroup->ack( $job );
|
|
|
|
|
}
|
|
|
|
|
while ( $job = $queueGroup->pop( 'categoryMembershipChange' ) ) {
|
|
|
|
|
$job->run();
|
|
|
|
|
$queueGroup->ack( $job );
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-09-11 14:48:02 +00:00
|
|
|
|
|
|
|
|
public function testIsRecursive() {
|
|
|
|
|
list( $title, $po ) = $this->makeTitleAndParserOutput( 'Test', 1 );
|
|
|
|
|
$linksUpdate = new LinksUpdate( $title, $po );
|
|
|
|
|
$this->assertTrue( $linksUpdate->isRecursive(), 'LinksUpdate is recursive by default' );
|
|
|
|
|
|
|
|
|
|
$linksUpdate = new LinksUpdate( $title, $po, true );
|
|
|
|
|
$this->assertTrue( $linksUpdate->isRecursive(),
|
|
|
|
|
'LinksUpdate is recursive when asked to be recursive' );
|
|
|
|
|
|
|
|
|
|
$linksUpdate = new LinksUpdate( $title, $po, false );
|
|
|
|
|
$this->assertFalse( $linksUpdate->isRecursive(),
|
|
|
|
|
'LinksUpdate is not recursive when asked to be not recursive' );
|
|
|
|
|
}
|
2012-05-10 20:56:34 +00:00
|
|
|
}
|