You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<?php
|
|
|
|
namespace yiiunit\framework\caching;
|
|
|
|
use yii\caching\MemCache;
|
|
|
|
use yii\caching\RedisCache;
|
|
|
|
use yiiunit\TestCase;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class for testing redis cache backend
|
|
|
|
*/
|
|
|
|
class RedisCacheTest extends CacheTest
|
|
|
|
{
|
|
|
|
private $_cacheInstance = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return MemCache
|
|
|
|
*/
|
|
|
|
protected function getCacheInstance()
|
|
|
|
{
|
|
|
|
$config = array(
|
|
|
|
'hostname' => 'localhost',
|
|
|
|
'port' => 6379,
|
|
|
|
'database' => 0,
|
|
|
|
);
|
|
|
|
$dsn = $config['hostname'] . ':' .$config['port'];
|
|
|
|
if(!@stream_socket_client($dsn, $errorNumber, $errorDescription, 0.5)) {
|
|
|
|
$this->markTestSkipped('No redis server running at ' . $dsn .' : ' . $errorNumber . ' - ' . $errorDescription);
|
|
|
|
}
|
|
|
|
|
|
|
|
if($this->_cacheInstance === null) {
|
|
|
|
$this->_cacheInstance = new RedisCache($config);
|
|
|
|
}
|
|
|
|
return $this->_cacheInstance;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testExpireMilliseconds()
|
|
|
|
{
|
|
|
|
$cache = $this->getCacheInstance();
|
|
|
|
|
|
|
|
$this->assertTrue($cache->set('expire_test_ms', 'expire_test_ms', 0.2));
|
|
|
|
usleep(100000);
|
|
|
|
$this->assertEquals('expire_test_ms', $cache->get('expire_test_ms'));
|
|
|
|
usleep(300000);
|
|
|
|
$this->assertFalse($cache->get('expire_test_ms'));
|
|
|
|
}
|
|
|
|
}
|