This may seem a bit weird but anything else related to actor is already under user/ including ActorCache, ActorNormalization, ActorStore and ActorStoreFactory. Bug: T321882 Change-Id: I7072b374bba7a0cd9d905e399c822bf30bd5c0d8
174 lines
5 KiB
PHP
174 lines
5 KiB
PHP
<?php
|
|
|
|
namespace MediaWiki\Tests\Unit\Revision;
|
|
|
|
use CommentStore;
|
|
use HashBagOStuff;
|
|
use MediaWiki\Content\IContentHandlerFactory;
|
|
use MediaWiki\Page\PageStore;
|
|
use MediaWiki\Page\PageStoreFactory;
|
|
use MediaWiki\Revision\RevisionStore;
|
|
use MediaWiki\Revision\RevisionStoreFactory;
|
|
use MediaWiki\Revision\SlotRoleRegistry;
|
|
use MediaWiki\Storage\BlobStore;
|
|
use MediaWiki\Storage\BlobStoreFactory;
|
|
use MediaWiki\Storage\NameTableStore;
|
|
use MediaWiki\Storage\NameTableStoreFactory;
|
|
use MediaWiki\Storage\SqlBlobStore;
|
|
use MediaWiki\Title\TitleFactory;
|
|
use MediaWiki\User\ActorMigration;
|
|
use MediaWiki\User\ActorStore;
|
|
use MediaWiki\User\ActorStoreFactory;
|
|
use MediaWiki\User\UserIdentityLookup;
|
|
use MediaWikiUnitTestCase;
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
|
use Psr\Log\LoggerInterface;
|
|
use Psr\Log\NullLogger;
|
|
use WANObjectCache;
|
|
use Wikimedia\Rdbms\ILBFactory;
|
|
use Wikimedia\Rdbms\ILoadBalancer;
|
|
use Wikimedia\TestingAccessWrapper;
|
|
|
|
class RevisionStoreFactoryTest extends MediaWikiUnitTestCase {
|
|
|
|
/**
|
|
* @covers \MediaWiki\Revision\RevisionStoreFactory::__construct
|
|
*/
|
|
public function testValidConstruction_doesntCauseErrors() {
|
|
new RevisionStoreFactory(
|
|
$this->getMockLoadBalancerFactory(),
|
|
$this->getMockBlobStoreFactory(),
|
|
$this->getNameTableStoreFactory(),
|
|
$this->createMock( SlotRoleRegistry::class ),
|
|
$this->getHashWANObjectCache(),
|
|
new HashBagOStuff(),
|
|
$this->createMock( CommentStore::class ),
|
|
$this->createMock( ActorMigration::class ),
|
|
$this->getMockActorStoreFactory(),
|
|
new NullLogger(),
|
|
$this->createMock( IContentHandlerFactory::class ),
|
|
$this->getPageStoreFactory(),
|
|
$this->createMock( TitleFactory::class ),
|
|
$this->createHookContainer()
|
|
);
|
|
$this->assertTrue( true );
|
|
}
|
|
|
|
public function provideWikiIds() {
|
|
yield [ false ];
|
|
yield [ 'somewiki' ];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider provideWikiIds
|
|
* @covers \MediaWiki\Revision\RevisionStoreFactory::getRevisionStore
|
|
*/
|
|
public function testGetRevisionStore( $wikiId ) {
|
|
$cache = $this->getHashWANObjectCache();
|
|
$commentStore = $this->createMock( CommentStore::class );
|
|
$actorMigration = $this->createMock( ActorMigration::class );
|
|
|
|
$factory = new RevisionStoreFactory(
|
|
$this->getMockLoadBalancerFactory(),
|
|
$this->getMockBlobStoreFactory(),
|
|
$this->getNameTableStoreFactory(),
|
|
$this->createMock( SlotRoleRegistry::class ),
|
|
$cache,
|
|
new HashBagOStuff(),
|
|
$commentStore,
|
|
$actorMigration,
|
|
$this->getMockActorStoreFactory(),
|
|
new NullLogger(),
|
|
$this->createMock( IContentHandlerFactory::class ),
|
|
$this->getPageStoreFactory(),
|
|
$this->createMock( TitleFactory::class ),
|
|
$this->createHookContainer()
|
|
);
|
|
|
|
$store = $factory->getRevisionStore( $wikiId );
|
|
$wrapper = TestingAccessWrapper::newFromObject( $store );
|
|
|
|
// ensure the correct object type is returned
|
|
$this->assertInstanceOf( RevisionStore::class, $store );
|
|
|
|
// ensure the RevisionStore is for the given wikiId
|
|
$this->assertSame( $wikiId, $wrapper->wikiId );
|
|
|
|
// ensure all other required services are correctly set
|
|
$this->assertSame( $cache, $wrapper->cache );
|
|
$this->assertSame( $commentStore, $wrapper->commentStore );
|
|
$this->assertSame( $actorMigration, $wrapper->actorMigration );
|
|
|
|
$this->assertInstanceOf( ILoadBalancer::class, $wrapper->loadBalancer );
|
|
$this->assertInstanceOf( BlobStore::class, $wrapper->blobStore );
|
|
$this->assertInstanceOf( NameTableStore::class, $wrapper->contentModelStore );
|
|
$this->assertInstanceOf( NameTableStore::class, $wrapper->slotRoleStore );
|
|
$this->assertInstanceOf( LoggerInterface::class, $wrapper->logger );
|
|
$this->assertInstanceOf( UserIdentityLookup::class, $wrapper->actorStore );
|
|
}
|
|
|
|
/**
|
|
* @return MockObject|ILBFactory
|
|
*/
|
|
private function getMockLoadBalancerFactory() {
|
|
$mock = $this->createMock( ILBFactory::class );
|
|
$mock->method( 'getMainLB' )
|
|
->willReturn( $this->createMock( ILoadBalancer::class ) );
|
|
|
|
return $mock;
|
|
}
|
|
|
|
/**
|
|
* @return MockObject|BlobStoreFactory
|
|
*/
|
|
private function getMockBlobStoreFactory() {
|
|
$mock = $this->createMock( BlobStoreFactory::class );
|
|
|
|
$mock->method( 'newSqlBlobStore' )
|
|
->willReturn( $this->createMock( SqlBlobStore::class ) );
|
|
|
|
return $mock;
|
|
}
|
|
|
|
/**
|
|
* @return PageStoreFactory|MockObject
|
|
*/
|
|
private function getPageStoreFactory(): PageStoreFactory {
|
|
$mock = $this->createMock( PageStoreFactory::class );
|
|
|
|
$mock->method( 'getPageStore' )
|
|
->willReturn( $this->createMock( PageStore::class ) );
|
|
|
|
return $mock;
|
|
}
|
|
|
|
/**
|
|
* @return NameTableStoreFactory
|
|
*/
|
|
private function getNameTableStoreFactory() {
|
|
return new NameTableStoreFactory(
|
|
$this->getMockLoadBalancerFactory(),
|
|
$this->getHashWANObjectCache(),
|
|
new NullLogger()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @return WANObjectCache
|
|
*/
|
|
private function getHashWANObjectCache() {
|
|
return new WANObjectCache( [ 'cache' => new HashBagOStuff() ] );
|
|
}
|
|
|
|
/**
|
|
* @return ActorStoreFactory|MockObject
|
|
*/
|
|
private function getMockActorStoreFactory() {
|
|
$mock = $this->createMock( ActorStoreFactory::class );
|
|
|
|
$mock->method( 'getActorStore' )
|
|
->willReturn( $this->createMock( ActorStore::class ) );
|
|
|
|
return $mock;
|
|
}
|
|
}
|