wiki.techinc.nl/tests/phpunit/includes/Revision/RevisionStoreFactoryTest.php
daniel fe9430947d Use PageStore in RevisionStore
This introduces PageStoreFactory as well.

Change-Id: I7abd3c6a8ea70a68e8f8e9460d3bdd8c6f45338a
2021-04-05 20:58:54 +02:00

252 lines
6.8 KiB
PHP

<?php
namespace MediaWiki\Tests\Revision;
use ActorMigration;
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\User\ActorStore;
use MediaWiki\User\ActorStoreFactory;
use MediaWiki\User\UserIdentityLookup;
use MediaWikiIntegrationTestCase;
use PHPUnit\Framework\MockObject\MockObject;
use Psr\Log\LoggerInterface;
use Psr\Log\NullLogger;
use TitleFactory;
use WANObjectCache;
use Wikimedia\Rdbms\ILBFactory;
use Wikimedia\Rdbms\ILoadBalancer;
use Wikimedia\TestingAccessWrapper;
class RevisionStoreFactoryTest extends MediaWikiIntegrationTestCase {
/**
* @covers \MediaWiki\Revision\RevisionStoreFactory::__construct
*/
public function testValidConstruction_doesntCauseErrors() {
new RevisionStoreFactory(
$this->getMockLoadBalancerFactory(),
$this->getMockBlobStoreFactory(),
$this->getNameTableStoreFactory(),
$this->getMockSlotRoleRegistry(),
$this->getHashWANObjectCache(),
$this->getMockCommentStore(),
ActorMigration::newMigration(),
$this->getMockActorStoreFactory(),
new NullLogger(),
$this->getContentHandlerFactory(),
$this->getPageStoreFactory(),
$this->getTitleFactory(),
$this->createHookContainer()
);
$this->assertTrue( true );
}
public function provideWikiIds() {
yield [ true ];
yield [ false ];
yield [ 'somewiki' ];
}
/**
* @dataProvider provideWikiIds
* @covers \MediaWiki\Revision\RevisionStoreFactory::getRevisionStore
*/
public function testGetRevisionStore( $wikiId ) {
$lbFactory = $this->getMockLoadBalancerFactory();
$blobStoreFactory = $this->getMockBlobStoreFactory();
$nameTableStoreFactory = $this->getNameTableStoreFactory();
$slotRoleRegistry = $this->getMockSlotRoleRegistry();
$cache = $this->getHashWANObjectCache();
$commentStore = $this->getMockCommentStore();
$actorMigration = ActorMigration::newMigration();
$actorStoreFactory = $this->getMockActorStoreFactory();
$logger = new NullLogger();
$contentHandlerFactory = $this->getContentHandlerFactory();
$pageStoreFactory = $this->getPageStoreFactory();
$titleFactory = $this->getTitleFactory();
$hookContainer = $this->createHookContainer();
$factory = new RevisionStoreFactory(
$lbFactory,
$blobStoreFactory,
$nameTableStoreFactory,
$slotRoleRegistry,
$cache,
$commentStore,
$actorMigration,
$actorStoreFactory,
$logger,
$contentHandlerFactory,
$pageStoreFactory,
$titleFactory,
$hookContainer
);
$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|ILoadBalancer
*/
private function getMockLoadBalancer() {
return $this->getMockBuilder( ILoadBalancer::class )
->disableOriginalConstructor()->getMock();
}
/**
* @return MockObject|ILBFactory
*/
private function getMockLoadBalancerFactory() {
$mock = $this->getMockBuilder( ILBFactory::class )
->disableOriginalConstructor()->getMock();
$mock->method( 'getMainLB' )
->willReturnCallback( function () {
return $this->getMockLoadBalancer();
} );
return $mock;
}
/**
* @return MockObject|SqlBlobStore
*/
private function getMockSqlBlobStore() {
return $this->getMockBuilder( SqlBlobStore::class )
->disableOriginalConstructor()->getMock();
}
/**
* @return MockObject|BlobStoreFactory
*/
private function getMockBlobStoreFactory() {
$mock = $this->getMockBuilder( BlobStoreFactory::class )
->disableOriginalConstructor()->getMock();
$mock->method( 'newSqlBlobStore' )
->willReturnCallback( function () {
return $this->getMockSqlBlobStore();
} );
return $mock;
}
/**
* @return SlotRoleRegistry
*/
private function getMockSlotRoleRegistry() {
return $this->createMock( SlotRoleRegistry::class );
}
/**
* @return IContentHandlerFactory|MockObject
*/
private function getContentHandlerFactory(): IContentHandlerFactory {
return $this->createMock( IContentHandlerFactory::class );
}
/**
* @return PageStore|MockObject
*/
private function getMockPageStore(): PageStore {
return $this->createMock( PageStore::class );
}
/**
* @return PageStoreFactory|MockObject
*/
private function getPageStoreFactory(): PageStoreFactory {
$mock = $this->createMock( PageStoreFactory::class );
$mock->method( 'getPageStore' )
->willReturn( $this->getMockPageStore() );
return $mock;
}
/**
* @return TitleFactory|MockObject
*/
private function getTitleFactory(): TitleFactory {
return $this->createMock( TitleFactory::class );
}
/**
* @return NameTableStoreFactory
*/
private function getNameTableStoreFactory() {
return new NameTableStoreFactory(
$this->getMockLoadBalancerFactory(),
$this->getHashWANObjectCache(),
new NullLogger() );
}
/**
* @return MockObject|CommentStore
*/
private function getMockCommentStore() {
return $this->getMockBuilder( CommentStore::class )
->disableOriginalConstructor()->getMock();
}
/**
* @return WANObjectCache
*/
private function getHashWANObjectCache() {
return new WANObjectCache( [ 'cache' => new HashBagOStuff() ] );
}
/**
* @return ActorStore|MockObject
*/
private function getMockActorStore() {
return $this->getMockBuilder( ActorStore::class )
->disableOriginalConstructor()->getMock();
}
/**
* @return ActorStoreFactory|MockObject
*/
private function getMockActorStoreFactory() {
$mock = $this->getMockBuilder( ActorStoreFactory::class )
->disableOriginalConstructor()->getMock();
$mock->method( 'getActorStore' )
->willReturnCallback( function () {
return $this->getMockActorStore();
} );
return $mock;
}
}