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.
		
		
		
		
			
				
					101 lines
				
				2.7 KiB
			
		
		
			
		
	
	
					101 lines
				
				2.7 KiB
			| 
											12 years ago
										 | <?php
 | ||
| 
											12 years ago
										 | namespace yiiunit\extensions\redis;
 | ||
|  | 
 | ||
|  | use Yii;
 | ||
|  | use yii\redis\Cache;
 | ||
|  | use yii\redis\Connection;
 | ||
|  | use yiiunit\framework\caching\CacheTestCase;
 | ||
|  | 
 | ||
|  | Yii::setAlias('@yii/redis', __DIR__ . '/../../../../extensions/redis');
 | ||
| 
											12 years ago
										 | 
 | ||
|  | /**
 | ||
|  |  * Class for testing redis cache backend
 | ||
| 
											12 years ago
										 |  * @group redis
 | ||
|  |  * @group caching
 | ||
| 
											12 years ago
										 |  */
 | ||
|  | class RedisCacheTest extends CacheTestCase
 | ||
|  | {
 | ||
|  | 	private $_cacheInstance = null;
 | ||
|  | 
 | ||
|  | 	/**
 | ||
| 
											12 years ago
										 | 	 * @return Cache
 | ||
| 
											12 years ago
										 | 	 */
 | ||
|  | 	protected function getCacheInstance()
 | ||
|  | 	{
 | ||
| 
											12 years ago
										 | 		$databases = $this->getParam('databases');
 | ||
|  | 		$params = isset($databases['redis']) ? $databases['redis'] : null;
 | ||
|  | 		if ($params === null) {
 | ||
|  | 			$this->markTestSkipped('No redis server connection configured.');
 | ||
| 
											12 years ago
										 | 		}
 | ||
| 
											12 years ago
										 | 		$connection = new Connection($params);
 | ||
|  | 		if(!@stream_socket_client($connection->hostname . ':' . $connection->port, $errorNumber, $errorDescription, 0.5)) {
 | ||
|  | 			$this->markTestSkipped('No redis server running at ' . $connection->hostname . ':' . $connection->port . ' : ' . $errorNumber . ' - ' . $errorDescription);
 | ||
|  | 		}
 | ||
|  | 
 | ||
|  | 		$this->mockApplication(['components' => ['redis' => $connection]]);
 | ||
| 
											12 years ago
										 | 
 | ||
| 
											12 years ago
										 | 		if ($this->_cacheInstance === null) {
 | ||
| 
											12 years ago
										 | 			$this->_cacheInstance = new Cache();
 | ||
| 
											12 years ago
										 | 		}
 | ||
|  | 		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'));
 | ||
|  | 	}
 | ||
|  | 
 | ||
| 
											12 years ago
										 | 	public function testExpireAddMilliseconds()
 | ||
|  | 	{
 | ||
|  | 		$cache = $this->getCacheInstance();
 | ||
|  | 
 | ||
|  | 		$this->assertTrue($cache->add('expire_testa_ms', 'expire_testa_ms', 0.2));
 | ||
|  | 		usleep(100000);
 | ||
|  | 		$this->assertEquals('expire_testa_ms', $cache->get('expire_testa_ms'));
 | ||
|  | 		usleep(300000);
 | ||
|  | 		$this->assertFalse($cache->get('expire_testa_ms'));
 | ||
|  | 	}
 | ||
|  | 
 | ||
| 
											12 years ago
										 | 	/**
 | ||
|  | 	 * Store a value that is 2 times buffer size big
 | ||
|  | 	 * https://github.com/yiisoft/yii2/issues/743
 | ||
|  | 	 */
 | ||
|  | 	public function testLargeData()
 | ||
|  | 	{
 | ||
|  | 		$cache = $this->getCacheInstance();
 | ||
|  | 
 | ||
|  | 		$data=str_repeat('XX',8192); // http://www.php.net/manual/en/function.fread.php
 | ||
|  | 		$key='bigdata1';
 | ||
|  | 
 | ||
|  | 		$this->assertFalse($cache->get($key));
 | ||
|  | 		$cache->set($key,$data);
 | ||
|  | 		$this->assertTrue($cache->get($key)===$data);
 | ||
|  | 
 | ||
|  | 		// try with multibyte string
 | ||
|  | 		$data=str_repeat('ЖЫ',8192); // http://www.php.net/manual/en/function.fread.php
 | ||
|  | 		$key='bigdata2';
 | ||
|  | 
 | ||
|  | 		$this->assertFalse($cache->get($key));
 | ||
|  | 		$cache->set($key,$data);
 | ||
|  | 		$this->assertTrue($cache->get($key)===$data);
 | ||
|  | 	}
 | ||
|  | 
 | ||
|  | 	public function testMultiByteGetAndSet()
 | ||
|  | 	{
 | ||
|  | 		$cache = $this->getCacheInstance();
 | ||
|  | 
 | ||
| 
											12 years ago
										 | 		$data=['abc'=>'ежик',2=>'def'];
 | ||
| 
											12 years ago
										 | 		$key='data1';
 | ||
|  | 
 | ||
|  | 		$this->assertFalse($cache->get($key));
 | ||
|  | 		$cache->set($key,$data);
 | ||
|  | 		$this->assertTrue($cache->get($key)===$data);
 | ||
|  | 	}
 | ||
|  | 
 | ||
|  | }
 |