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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
|
<?php
namespace MediaWiki\Tests\Unit\Revision;
use MediaWiki\CommentStore\CommentStore;
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\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 Wikimedia\ObjectCache\HashBagOStuff;
use Wikimedia\ObjectCache\WANObjectCache;
use Wikimedia\Rdbms\ILBFactory;
use Wikimedia\Rdbms\ILoadBalancer;
use Wikimedia\TestingAccessWrapper;
/**
* @covers \MediaWiki\Revision\RevisionStoreFactory
*/
class RevisionStoreFactoryTest extends MediaWikiUnitTestCase {
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->getMockActorStoreFactory(),
new NullLogger(),
$this->createMock( IContentHandlerFactory::class ),
$this->getPageStoreFactory(),
$this->createMock( TitleFactory::class ),
$this->createHookContainer()
);
$this->assertTrue( true );
}
public static function provideWikiIds() {
yield [ false ];
yield [ 'somewiki' ];
}
/**
* @dataProvider provideWikiIds
*/
public function testGetRevisionStore( $wikiId ) {
$cache = $this->getHashWANObjectCache();
$commentStore = $this->createMock( CommentStore::class );
$factory = new RevisionStoreFactory(
$this->getMockLoadBalancerFactory(),
$this->getMockBlobStoreFactory(),
$this->getNameTableStoreFactory(),
$this->createMock( SlotRoleRegistry::class ),
$cache,
new HashBagOStuff(),
$commentStore,
$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->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;
}
}
|