gplx/mediawiki/extensions/SemanticMediaWiki/tests/phpunit/CacheFactoryTest.php

170 lines
3.3 KiB
PHP

<?php
namespace SMW\Tests;
use MediaWiki\Title\Title;
use Onoi\Cache\Cache;
use Onoi\Cache\NullCache;
use SMW\CacheFactory;
/**
* @covers \SMW\CacheFactory
* @group semantic-mediawiki
*
* @license GPL-2.0-or-later
* @since 2.2
*
* @author mwjames
*/
class CacheFactoryTest extends \PHPUnit\Framework\TestCase {
use PHPUnitCompat;
public function testCanConstruct() {
$this->assertInstanceOf(
'\SMW\CacheFactory',
new CacheFactory( 'hash' )
);
}
public function testGetMainCacheType() {
$instance = new CacheFactory( 'hash' );
$this->assertEquals(
'hash',
$instance->getMainCacheType()
);
$instance = new CacheFactory( CACHE_NONE );
$this->assertEquals(
CACHE_NONE,
$instance->getMainCacheType()
);
}
public function testGetCachePrefix() {
$instance = new CacheFactory( 'hash' );
$this->assertIsString(
$instance->getCachePrefix()
);
}
public function testGetPurgeCacheKey() {
$title = $this->getMockBuilder( Title::class )
->disableOriginalConstructor()
->getMock();
$title->expects( $this->any() )
->method( 'getArticleID' )
->willReturn( 42 );
$instance = new CacheFactory( 'hash' );
$this->assertIsString(
$instance->getPurgeCacheKey( $title )
);
$this->assertSame(
smwfCacheKey( 'smw:arc', 42 ),
$instance->getPurgeCacheKey( $title )
);
$this->assertSame(
smwfCacheKey( \SMW\MediaWiki\Hooks\ArticlePurge::CACHE_NAMESPACE, 42 ),
$instance->getPurgeCacheKey( $title )
);
}
public function testCanConstructCacheOptions() {
$instance = new CacheFactory( 'hash' );
$cacheOptions = $instance->newCacheOptions( [
'useCache' => true,
'ttl' => 0
] );
$this->assertTrue(
$cacheOptions->useCache
);
}
public function testIncompleteCacheOptionsThrowsException() {
$instance = new CacheFactory( 'hash' );
$this->expectException( 'RuntimeException' );
$cacheOptions = $instance->newCacheOptions( [
'useCache' => true
] );
}
public function testCanConstructFixedInMemoryCache() {
$instance = new CacheFactory( 'hash' );
$this->assertInstanceOf(
'Onoi\Cache\Cache',
$instance->newFixedInMemoryCache()
);
}
public function testCanConstructNullCache() {
$instance = new CacheFactory( 'hash' );
$this->assertInstanceOf(
'Onoi\Cache\Cache',
$instance->newNullCache()
);
}
public function testCanConstructMediaWikiCompositeCache() {
$instance = new CacheFactory( 'hash' );
$this->assertInstanceOf(
'Onoi\Cache\Cache',
$instance->newMediaWikiCompositeCache( CACHE_NONE )
);
$this->assertInstanceOf(
'Onoi\Cache\Cache',
$instance->newMediaWikiCompositeCache( $instance->getMainCacheType() )
);
}
public function testCanConstructMediaWikiCache() {
$instance = new CacheFactory();
$this->assertInstanceOf(
Cache::class,
$instance->newMediaWikiCache( 'hash' )
);
}
public function testCanConstructCacheByType() {
$instance = new CacheFactory();
$this->assertInstanceOf(
NullCache::class,
$instance->newCacheByType( CACHE_NONE )
);
$this->assertInstanceOf(
Cache::class,
$instance->newCacheByType( 'hash' )
);
}
public function testCanConstructBlobStore() {
$instance = new CacheFactory( 'hash' );
$this->assertInstanceOf(
'Onoi\BlobStore\BlobStore',
$instance->newBlobStore( 'foo', CACHE_NONE )
);
}
}