FileCacheTest.php 795 Bytes
Newer Older
1 2
<?php
namespace yiiunit\framework\caching;
Alexander Makarov committed
3

4 5 6 7
use yii\caching\FileCache;

/**
 * Class for testing file cache backend
8
 * @group caching
9
 */
Alexander Makarov committed
10
class FileCacheTest extends CacheTestCase
11 12 13 14 15 16 17 18
{
	private $_cacheInstance = null;

	/**
	 * @return FileCache
	 */
	protected function getCacheInstance()
	{
resurtm committed
19
		if ($this->_cacheInstance === null) {
20 21 22 23 24 25
			$this->_cacheInstance = new FileCache(array(
				'cachePath' => '@yiiunit/runtime/cache',
			));
		}
		return $this->_cacheInstance;
	}
26 27 28 29 30

	public function testExpire()
	{
		$cache = $this->getCacheInstance();

31
		static::$time = \time();
32
		$this->assertTrue($cache->set('expire_test', 'expire_test', 2));
33
		static::$time++;
34
		$this->assertEquals('expire_test', $cache->get('expire_test'));
35
		static::$time++;
36 37
		$this->assertFalse($cache->get('expire_test'));
	}
Zander Baldwin committed
38
}