Page MenuHomeWickedGov Phorge

LocalAndForeignDBRepoTest.php
No OneTemporary

Size
2 KB
Referenced Files
None
Subscribers
None

LocalAndForeignDBRepoTest.php

<?php
use MediaWiki\WikiMap\WikiMap;
use Wikimedia\ObjectCache\HashBagOStuff;
use Wikimedia\ObjectCache\WANObjectCache;
class LocalAndForeignDBRepoTest extends MediaWikiIntegrationTestCase {
/**
* @covers \LocalRepo::getSharedCacheKey
* @covers \ForeignDBViaLBRepo::getSharedCacheKey
*/
public function testsSharedCacheKey() {
$wikiId = WikiMap::getCurrentWikiDbDomain()->getId();
$wanCache = new WANObjectCache( [ 'cache' => new HashBagOStuff() ] );
$localRepo = new LocalRepo( [
'name' => 'local',
'backend' => 'local-backend',
'wanCache' => $wanCache
] );
$foreignRepo = new ForeignDBViaLBRepo( [
'name' => 'local',
'backend' => 'local-backend',
'wiki' => $wikiId,
'hasSharedCache' => true,
'wanCache' => $wanCache
] );
$foreignRepo2 = new ForeignDBViaLBRepo( [
'name' => 'local',
'backend' => 'local-backend',
'wiki' => 'weirdoutside-domain',
'hasSharedCache' => true,
'wanCache' => $wanCache
] );
$sharedKeyForLocal = $localRepo->getSharedCacheKey( 'class', 93 );
$sharedKeyForForeign = $foreignRepo->getSharedCacheKey( 'class', 93 );
$sharedKeyForForiegn2 = $foreignRepo2->getSharedCacheKey( 'class', 93 );
$this->assertSame(
$wanCache->makeGlobalKey( 'filerepo-class', $wikiId, 93 ),
$sharedKeyForLocal,
"Shared key (repo is on local domain)"
);
$this->assertSame(
$sharedKeyForLocal,
$sharedKeyForForeign,
"Shared key (repo is on foreign domain)"
);
$this->assertSame(
$wanCache->makeGlobalKey( 'filerepo-class', 'weirdoutside-domain', 93 ),
$sharedKeyForForiegn2,
"Shared key (repo is on a different foreign domain)"
);
}
/**
* @covers \LocalRepo::getLocalCacheKey
* @covers \ForeignDBViaLBRepo::getLocalCacheKey
*/
public function testsLocalCacheKey() {
$wikiId = WikiMap::getCurrentWikiDbDomain()->getId();
$wanCache = new WANObjectCache( [ 'cache' => new HashBagOStuff() ] );
$localRepo = new LocalRepo( [
'name' => 'local',
'backend' => 'local-backend',
'wanCache' => $wanCache
] );
$foreignRepo = new ForeignDBViaLBRepo( [
'name' => 'local',
'backend' => 'local-backend',
'wiki' => $wikiId,
'hasSharedCache' => true,
'wanCache' => $wanCache
] );
$nonsharedKeyForLocal = $localRepo->getLocalCacheKey( 'class', 93 );
$nonsharedKeyForForeign = $foreignRepo->getLocalCacheKey( 'class', 93 );
$this->assertSame(
$wanCache->makeKey( 'filerepo-class', 'local', 93 ),
$nonsharedKeyForLocal,
"Non-shared key (repo is on local domain)"
);
$this->assertSame(
$wanCache->makeKey( 'filerepo-class', 'local', 93 ),
$nonsharedKeyForForeign,
"Non-shared key (repo is on local domain)"
);
}
}

File Metadata

Mime Type
text/x-php
Expires
Tue, Aug 18, 22:47 (14 h, 59 m ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
69/2e/d8a02627cd69e3d250abbb79263d
Default Alt Text
LocalAndForeignDBRepoTest.php (2 KB)

Event Timeline