2012-05-10 20:56:34 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/**
|
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 {
|
2012-05-10 20:56:34 +00:00
|
|
|
|
2013-03-18 19:44:43 +00:00
|
|
|
function __construct( $name = null, array $data = array(), $dataName = '' ) {
|
2012-05-10 20:56:34 +00:00
|
|
|
parent::__construct( $name, $data, $dataName );
|
|
|
|
|
|
2012-10-02 08:39:30 +00:00
|
|
|
$this->tablesUsed = array_merge( $this->tablesUsed,
|
|
|
|
|
array(
|
|
|
|
|
'interwiki',
|
|
|
|
|
'page_props',
|
|
|
|
|
'pagelinks',
|
|
|
|
|
'categorylinks',
|
|
|
|
|
'langlinks',
|
|
|
|
|
'externallinks',
|
|
|
|
|
'imagelinks',
|
|
|
|
|
'templatelinks',
|
2015-08-24 17:40:06 +00:00
|
|
|
'iwlinks',
|
|
|
|
|
'recentchanges',
|
2012-10-02 08:39:30 +00:00
|
|
|
)
|
|
|
|
|
);
|
2012-05-10 20:56:34 +00:00
|
|
|
}
|
|
|
|
|
|
2012-10-08 10:56:20 +00:00
|
|
|
protected function setUp() {
|
2012-10-23 17:02:36 +00:00
|
|
|
parent::setUp();
|
2012-05-10 20:56:34 +00:00
|
|
|
$dbw = wfGetDB( DB_MASTER );
|
2012-10-02 08:39:30 +00:00
|
|
|
$dbw->replace(
|
|
|
|
|
'interwiki',
|
|
|
|
|
array( 'iw_prefix' ),
|
|
|
|
|
array(
|
|
|
|
|
'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',
|
|
|
|
|
)
|
|
|
|
|
);
|
2015-08-24 17:40:06 +00:00
|
|
|
$this->setMwGlobals( 'wgRCWatchCategoryMembership', true );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function addDBData() {
|
|
|
|
|
$this->insertPage( 'Testing' );
|
|
|
|
|
$this->insertPage( 'Some_other_page' );
|
|
|
|
|
$this->insertPage( 'Template:TestingTemplate' );
|
2012-05-10 20:56:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function makeTitleAndParserOutput( $name, $id ) {
|
|
|
|
|
$t = Title::newFromText( $name );
|
|
|
|
|
$t->mArticleID = $id; # XXX: this is fugly
|
|
|
|
|
|
|
|
|
|
$po = new ParserOutput();
|
|
|
|
|
$po->setTitleText( $t->getPrefixedText() );
|
|
|
|
|
|
|
|
|
|
return array( $t, $po );
|
|
|
|
|
}
|
|
|
|
|
|
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() {
|
2014-02-27 19:10:59 +00:00
|
|
|
/** @var ParserOutput $po */
|
2012-05-10 20:56:34 +00:00
|
|
|
list( $t, $po ) = $this->makeTitleAndParserOutput( "Testing", 111 );
|
|
|
|
|
|
|
|
|
|
$po->addLink( Title::newFromText( "Foo" ) );
|
|
|
|
|
$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',
|
|
|
|
|
'pl_namespace,
|
|
|
|
|
pl_title',
|
|
|
|
|
'pl_from = 111',
|
|
|
|
|
array( array( NS_MAIN, 'Foo' ) )
|
|
|
|
|
);
|
2013-10-09 18:48:37 +00:00
|
|
|
$this->assertArrayEquals( array(
|
|
|
|
|
Title::makeTitle( NS_MAIN, 'Foo' ), // newFromText doesn't yield the same internal state....
|
|
|
|
|
), $update->getAddedLinks() );
|
2012-05-10 20:56:34 +00:00
|
|
|
|
|
|
|
|
$po = new ParserOutput();
|
|
|
|
|
$po->setTitleText( $t->getPrefixedText() );
|
|
|
|
|
|
|
|
|
|
$po->addLink( Title::newFromText( "Bar" ) );
|
2013-10-09 18:48:37 +00:00
|
|
|
$po->addLink( Title::newFromText( "Talk:Bar" ) );
|
2012-05-10 20:56:34 +00:00
|
|
|
|
2014-04-24 10:05:52 +00:00
|
|
|
$update = $this->assertLinksUpdate(
|
|
|
|
|
$t,
|
|
|
|
|
$po,
|
|
|
|
|
'pagelinks',
|
|
|
|
|
'pl_namespace,
|
|
|
|
|
pl_title',
|
|
|
|
|
'pl_from = 111',
|
|
|
|
|
array(
|
|
|
|
|
array( NS_MAIN, 'Bar' ),
|
|
|
|
|
array( NS_TALK, 'Bar' ),
|
|
|
|
|
)
|
|
|
|
|
);
|
2013-10-09 18:48:37 +00:00
|
|
|
$this->assertArrayEquals( array(
|
|
|
|
|
Title::makeTitle( NS_MAIN, 'Bar' ),
|
|
|
|
|
Title::makeTitle( NS_TALK, 'Bar' ),
|
|
|
|
|
), $update->getAddedLinks() );
|
|
|
|
|
$this->assertArrayEquals( array(
|
|
|
|
|
Title::makeTitle( NS_MAIN, 'Foo' ),
|
|
|
|
|
), $update->getRemovedLinks() );
|
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::addExternalLink
|
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 */
|
2012-05-10 20:56:34 +00:00
|
|
|
list( $t, $po ) = $this->makeTitleAndParserOutput( "Testing", 111 );
|
|
|
|
|
|
|
|
|
|
$po->addExternalLink( "http://testing.com/wiki/Foo" );
|
|
|
|
|
|
|
|
|
|
$this->assertLinksUpdate( $t, $po, 'externallinks', 'el_to, el_index', 'el_from = 111', array(
|
|
|
|
|
array( 'http://testing.com/wiki/Foo', 'http://com.testing./wiki/Foo' ),
|
|
|
|
|
) );
|
|
|
|
|
}
|
|
|
|
|
|
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' );
|
|
|
|
|
|
2012-05-10 20:56:34 +00:00
|
|
|
list( $t, $po ) = $this->makeTitleAndParserOutput( "Testing", 111 );
|
|
|
|
|
|
|
|
|
|
$po->addCategory( "Foo", "FOO" );
|
|
|
|
|
|
|
|
|
|
$this->assertLinksUpdate( $t, $po, 'categorylinks', 'cl_to, cl_sortkey', 'cl_from = 111', array(
|
|
|
|
|
array( 'Foo', "FOO\nTESTING" ),
|
|
|
|
|
) );
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-24 17:40:06 +00:00
|
|
|
public function testOnAddingAndRemovingCategory_recentChangesRowIsAdded() {
|
|
|
|
|
$this->setMwGlobals( 'wgCategoryCollation', 'uppercase' );
|
|
|
|
|
|
|
|
|
|
$title = Title::newFromText( 'Testing' );
|
|
|
|
|
$wikiPage = new WikiPage( $title );
|
|
|
|
|
$wikiPage->doEditContent( new WikitextContent( '[[Category:Foo]]' ), 'added category' );
|
2015-11-15 02:29:37 +00:00
|
|
|
$this->runAllRelatedJobs();
|
2015-08-24 17:40:06 +00:00
|
|
|
|
|
|
|
|
$this->assertRecentChangeByCategorization(
|
|
|
|
|
$title,
|
|
|
|
|
$wikiPage->getParserOutput( new ParserOptions() ),
|
|
|
|
|
Title::newFromText( 'Category:Foo' ),
|
|
|
|
|
array( array( 'Foo', '[[:Testing]] added to category' ) )
|
|
|
|
|
);
|
|
|
|
|
|
2015-11-15 02:29:37 +00:00
|
|
|
$wikiPage->doEditContent( new WikitextContent( '[[Category:Bar]]' ), 'replaced category' );
|
|
|
|
|
$this->runAllRelatedJobs();
|
|
|
|
|
|
2015-08-24 17:40:06 +00:00
|
|
|
$this->assertRecentChangeByCategorization(
|
|
|
|
|
$title,
|
|
|
|
|
$wikiPage->getParserOutput( new ParserOptions() ),
|
|
|
|
|
Title::newFromText( 'Category:Foo' ),
|
|
|
|
|
array(
|
|
|
|
|
array( 'Foo', '[[:Testing]] added to category' ),
|
|
|
|
|
array( 'Foo', '[[:Testing]] removed from category' ),
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$this->assertRecentChangeByCategorization(
|
|
|
|
|
$title,
|
|
|
|
|
$wikiPage->getParserOutput( new ParserOptions() ),
|
|
|
|
|
Title::newFromText( 'Category:Bar' ),
|
|
|
|
|
array(
|
|
|
|
|
array( 'Bar', '[[:Testing]] added to category' ),
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testOnAddingAndRemovingCategoryToTemplates_embeddingPagesAreIgnored() {
|
|
|
|
|
$this->setMwGlobals( 'wgCategoryCollation', 'uppercase' );
|
|
|
|
|
|
|
|
|
|
$templateTitle = Title::newFromText( 'Template:TestingTemplate' );
|
|
|
|
|
$templatePage = new WikiPage( $templateTitle );
|
|
|
|
|
|
|
|
|
|
$wikiPage = new WikiPage( Title::newFromText( 'Testing' ) );
|
|
|
|
|
$wikiPage->doEditContent( new WikitextContent( '{{TestingTemplate}}' ), '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' ) );
|
|
|
|
|
$otherWikiPage->doEditContent( new WikitextContent( '{{TestingTemplate}}' ), 'added template' );
|
2015-11-15 02:29:37 +00:00
|
|
|
$this->runAllRelatedJobs();
|
|
|
|
|
|
|
|
|
|
$this->assertRecentChangeByCategorization(
|
|
|
|
|
$templateTitle,
|
|
|
|
|
$templatePage->getParserOutput( new ParserOptions() ),
|
|
|
|
|
Title::newFromText( 'Baz' ),
|
|
|
|
|
array()
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$templatePage->doEditContent( new WikitextContent( '[[Category:Baz]]' ), 'added category' );
|
|
|
|
|
$this->runAllRelatedJobs();
|
2015-08-24 17:40:06 +00:00
|
|
|
|
|
|
|
|
$this->assertRecentChangeByCategorization(
|
|
|
|
|
$templateTitle,
|
|
|
|
|
$templatePage->getParserOutput( new ParserOptions() ),
|
2015-11-15 02:29:37 +00:00
|
|
|
Title::newFromText( 'Baz' ),
|
|
|
|
|
array( array( 'Baz', '[[:Template:TestingTemplate]] and 2 pages added to category' ) )
|
2015-08-24 17:40:06 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
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 */
|
2012-05-10 20:56:34 +00:00
|
|
|
list( $t, $po ) = $this->makeTitleAndParserOutput( "Testing", 111 );
|
|
|
|
|
|
|
|
|
|
$target = Title::makeTitleSafe( NS_MAIN, "Foo", '', 'linksupdatetest' );
|
|
|
|
|
$po->addInterwikiLink( $target );
|
|
|
|
|
|
|
|
|
|
$this->assertLinksUpdate( $t, $po, 'iwlinks', 'iwl_prefix, iwl_title', 'iwl_from = 111', array(
|
|
|
|
|
array( 'linksupdatetest', 'Foo' ),
|
|
|
|
|
) );
|
|
|
|
|
}
|
|
|
|
|
|
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 */
|
2012-05-10 20:56:34 +00:00
|
|
|
list( $t, $po ) = $this->makeTitleAndParserOutput( "Testing", 111 );
|
|
|
|
|
|
|
|
|
|
$po->addTemplate( Title::newFromText( "Template:Foo" ), 23, 42 );
|
|
|
|
|
|
2014-04-24 10:05:52 +00:00
|
|
|
$this->assertLinksUpdate(
|
|
|
|
|
$t,
|
|
|
|
|
$po,
|
|
|
|
|
'templatelinks',
|
|
|
|
|
'tl_namespace,
|
|
|
|
|
tl_title',
|
|
|
|
|
'tl_from = 111',
|
|
|
|
|
array( array( NS_TEMPLATE, 'Foo' ) )
|
|
|
|
|
);
|
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 */
|
2012-05-10 20:56:34 +00:00
|
|
|
list( $t, $po ) = $this->makeTitleAndParserOutput( "Testing", 111 );
|
|
|
|
|
|
|
|
|
|
$po->addImage( "Foo.png" );
|
|
|
|
|
|
|
|
|
|
$this->assertLinksUpdate( $t, $po, 'imagelinks', 'il_to', 'il_from = 111', array(
|
|
|
|
|
array( 'Foo.png' ),
|
|
|
|
|
) );
|
|
|
|
|
}
|
|
|
|
|
|
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() {
|
2014-07-07 23:21:09 +00:00
|
|
|
$this->setMwGlobals( array(
|
|
|
|
|
'wgCapitalLinks' => true,
|
|
|
|
|
) );
|
|
|
|
|
|
2014-02-27 19:10:59 +00:00
|
|
|
/** @var ParserOutput $po */
|
2012-05-10 20:56:34 +00:00
|
|
|
list( $t, $po ) = $this->makeTitleAndParserOutput( "Testing", 111 );
|
|
|
|
|
|
2012-12-07 11:33:47 +00:00
|
|
|
$po->addLanguageLink( Title::newFromText( "en:Foo" )->getFullText() );
|
2012-05-10 20:56:34 +00:00
|
|
|
|
|
|
|
|
$this->assertLinksUpdate( $t, $po, 'langlinks', 'll_lang, ll_title', 'll_from = 111', array(
|
|
|
|
|
array( 'En', 'Foo' ),
|
|
|
|
|
) );
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-24 16:45:52 +00:00
|
|
|
/**
|
2014-02-27 19:10:59 +00:00
|
|
|
* @covers ParserOutput::setProperty
|
2013-10-24 16:45:52 +00:00
|
|
|
*/
|
2012-05-10 20:56:34 +00:00
|
|
|
public function testUpdate_page_props() {
|
2014-03-31 11:00:28 +00:00
|
|
|
global $wgPagePropsHaveSortkey;
|
|
|
|
|
|
2014-02-27 19:10:59 +00:00
|
|
|
/** @var ParserOutput $po */
|
2012-05-10 20:56:34 +00:00
|
|
|
list( $t, $po ) = $this->makeTitleAndParserOutput( "Testing", 111 );
|
|
|
|
|
|
2014-03-31 11:00:28 +00:00
|
|
|
$fields = array( 'pp_propname', 'pp_value' );
|
|
|
|
|
$expected = array();
|
2012-05-10 20:56:34 +00:00
|
|
|
|
2014-03-31 11:00:28 +00:00
|
|
|
$po->setProperty( "bool", true );
|
|
|
|
|
$expected[] = array( "bool", true );
|
|
|
|
|
|
2014-07-19 21:12:10 +00:00
|
|
|
$po->setProperty( "float", 4.0 + 1.0 / 4.0 );
|
|
|
|
|
$expected[] = array( "float", 4.0 + 1.0 / 4.0 );
|
2014-03-31 11:00:28 +00:00
|
|
|
|
|
|
|
|
$po->setProperty( "int", -7 );
|
|
|
|
|
$expected[] = array( "int", -7 );
|
|
|
|
|
|
|
|
|
|
$po->setProperty( "string", "33 bar" );
|
|
|
|
|
$expected[] = array( "string", "33 bar" );
|
|
|
|
|
|
|
|
|
|
// compute expected sortkey values
|
|
|
|
|
if ( $wgPagePropsHaveSortkey ) {
|
|
|
|
|
$fields[] = 'pp_sortkey';
|
|
|
|
|
|
|
|
|
|
foreach ( $expected as &$row ) {
|
|
|
|
|
$value = $row[1];
|
|
|
|
|
|
|
|
|
|
if ( is_int( $value ) || is_float( $value ) || is_bool( $value ) ) {
|
|
|
|
|
$row[] = floatval( $value );
|
|
|
|
|
} else {
|
|
|
|
|
$row[] = null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$this->assertLinksUpdate( $t, $po, 'page_props', $fields, 'pp_page = 111', $expected );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testUpdate_page_props_without_sortkey() {
|
|
|
|
|
$this->setMwGlobals( 'wgPagePropsHaveSortkey', false );
|
|
|
|
|
|
|
|
|
|
$this->testUpdate_page_props();
|
2012-05-10 20:56:34 +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
|
|
|
|
|
) {
|
2012-05-10 20:56:34 +00:00
|
|
|
$update = new LinksUpdate( $title, $parserOutput );
|
|
|
|
|
|
2015-09-11 13:44:59 +00:00
|
|
|
// NOTE: make sure LinksUpdate does not generate warnings when called inside a transaction.
|
2012-06-13 15:43:07 +00:00
|
|
|
$update->beginTransaction();
|
2012-05-10 20:56:34 +00:00
|
|
|
$update->doUpdate();
|
2012-06-13 15:43:07 +00:00
|
|
|
$update->commitTransaction();
|
2012-05-10 20:56:34 +00:00
|
|
|
|
|
|
|
|
$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
|
|
|
|
|
) {
|
|
|
|
|
$this->assertSelect(
|
|
|
|
|
'recentchanges',
|
|
|
|
|
'rc_title, rc_comment',
|
|
|
|
|
array(
|
|
|
|
|
'rc_type' => RC_CATEGORIZE,
|
|
|
|
|
'rc_namespace' => NS_CATEGORY,
|
|
|
|
|
'rc_title' => $categoryTitle->getDBkey()
|
|
|
|
|
),
|
|
|
|
|
$expectedRows
|
|
|
|
|
);
|
|
|
|
|
}
|
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 );
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-05-10 20:56:34 +00:00
|
|
|
}
|