1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
<?php
use MediaWiki\Config\HashConfig;
use MediaWiki\Linker\LinksMigration;
use MediaWiki\Linker\LinkTargetLookup;
use MediaWiki\MainConfigNames;
use MediaWiki\Title\TitleValue;
/**
* @covers \MediaWiki\Linker\LinksMigration
*/
class LinksMigrationTest extends MediaWikiUnitTestCase {
public static function provideReadNew() {
yield [ SCHEMA_COMPAT_READ_NEW ];
yield [ SCHEMA_COMPAT_NEW ];
}
/**
* @dataProvider provideReadNew
* @covers \MediaWiki\Linker\LinksMigration::getLinksConditions
*/
public function testGetLinksConditionsReadNew( $configValue ) {
$title = new TitleValue( NS_USER, 'Someuser' );
$linkTargetStore = $this->createMock( LinkTargetLookup::class );
$linkTargetStore->method( 'getLinkTargetId' )
->with( $title )
->willReturn( 1 );
$linkTargetStore->expects( $this->never() )->method( 'acquireLinkTargetId' );
$config = new HashConfig(
[
MainConfigNames::PageLinksSchemaMigrationStage => $configValue
]
);
$linksMigration = new LinksMigration( $config, $linkTargetStore );
$this->assertSame(
[ 'pl_target_id' => 1 ],
$linksMigration->getLinksConditions( 'pagelinks', $title )
);
}
public static function provideReadOld() {
yield [ SCHEMA_COMPAT_READ_OLD ];
}
/**
* @dataProvider provideReadOld
* @covers \MediaWiki\Linker\LinksMigration::getLinksConditions
*/
public function testGetLinksConditionsReadOld( $configValue ) {
$this->markTestSkipped( 'No table currently with support for read old' );
$title = new TitleValue( NS_USER, 'Someuser' );
$linkTargetStore = $this->createMock( LinkTargetLookup::class );
$linkTargetStore->expects( $this->never() )->method( 'getLinkTargetId' );
$linkTargetStore->expects( $this->never() )->method( 'acquireLinkTargetId' );
$config = new HashConfig(
[
MainConfigNames::PageLinksSchemaMigrationStage => $configValue
]
);
$linksMigration = new LinksMigration( $config, $linkTargetStore );
$this->assertSame(
[ 'pl_namespace' => 2, 'pl_title' => 'Someuser' ],
$linksMigration->getLinksConditions( 'pagelinks', $title )
);
}
}
|