87 lines
1.6 KiB
PHP
87 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace SMW\Tests;
|
|
|
|
use SMW\InMemoryPoolCache;
|
|
|
|
/**
|
|
* @covers \SMW\InMemoryPoolCache
|
|
* @group semantic-mediawiki
|
|
*
|
|
* @license GPL-2.0-or-later
|
|
* @since 2.3
|
|
*
|
|
* @author mwjames
|
|
*/
|
|
class InMemoryPoolCacheTest extends \PHPUnit\Framework\TestCase {
|
|
|
|
use PHPUnitCompat;
|
|
|
|
protected function tearDown(): void {
|
|
InMemoryPoolCache::getInstance()->clear();
|
|
parent::tearDown();
|
|
}
|
|
|
|
public function testCanConstruct() {
|
|
$cacheFactory = $this->getMockBuilder( '\SMW\CacheFactory' )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$this->assertInstanceOf(
|
|
'\SMW\InMemoryPoolCache',
|
|
new InMemoryPoolCache( $cacheFactory )
|
|
);
|
|
|
|
$this->assertInstanceOf(
|
|
'\SMW\InMemoryPoolCache',
|
|
InMemoryPoolCache::getInstance()
|
|
);
|
|
}
|
|
|
|
public function testPoolCache() {
|
|
$instance = InMemoryPoolCache::getInstance();
|
|
|
|
$this->assertInstanceOf(
|
|
'\Onoi\Cache\Cache',
|
|
$instance->getPoolCacheById( 'Foo' )
|
|
);
|
|
|
|
$instance->getPoolCacheById( 'Foo' )->save( 'Bar', 42 );
|
|
|
|
$this->assertEquals(
|
|
42,
|
|
$instance->getPoolCacheById( 'Foo' )->fetch( 'Bar' )
|
|
);
|
|
|
|
$instance->resetPoolCacheById( 'Foo' );
|
|
}
|
|
|
|
public function testGetStats() {
|
|
$instance = InMemoryPoolCache::getInstance();
|
|
|
|
$instance->getPoolCacheById( 'Foo' )->save( 'Bar', 42 );
|
|
|
|
$this->assertNotEmpty(
|
|
$instance->getStats()
|
|
);
|
|
|
|
$this->assertIsString(
|
|
|
|
$instance->getStats( InMemoryPoolCache::FORMAT_PLAIN )
|
|
);
|
|
|
|
$this->assertContains(
|
|
'ul',
|
|
$instance->getStats( InMemoryPoolCache::FORMAT_HTML )
|
|
);
|
|
|
|
$this->assertIsString(
|
|
|
|
$instance->getStats( InMemoryPoolCache::FORMAT_JSON )
|
|
);
|
|
|
|
$instance->resetPoolCacheById( 'Foo' );
|
|
}
|
|
|
|
}
|