mirror of
https://github.com/symfony/cache.git
synced 2026-03-23 23:22:07 +01:00
42 lines
1.2 KiB
PHP
42 lines
1.2 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Symfony package.
|
|
*
|
|
* (c) Fabien Potencier <fabien@symfony.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Symfony\Component\Cache\Tests\Adapter;
|
|
|
|
use Psr\Cache\CacheItemPoolInterface;
|
|
use Symfony\Component\Cache\Adapter\RedisTagAwareAdapter;
|
|
|
|
/**
|
|
* @group integration
|
|
*/
|
|
class RedisTagAwareArrayAdapterTest extends RedisArrayAdapterTest
|
|
{
|
|
use TagAwareTestTrait;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
$this->skippedTests['testTagItemExpiry'] = 'Testing expiration slows down the test suite';
|
|
}
|
|
|
|
public function createCachePool(int $defaultLifetime = 0, ?string $testMethod = null): CacheItemPoolInterface
|
|
{
|
|
if ('testClearWithPrefix' === $testMethod && \defined('Redis::SCAN_PREFIX')) {
|
|
self::$redis->setOption(\Redis::OPT_SCAN, \Redis::SCAN_PREFIX);
|
|
}
|
|
|
|
$this->assertInstanceOf(\RedisArray::class, self::$redis);
|
|
$adapter = new RedisTagAwareAdapter(self::$redis, str_replace('\\', '.', __CLASS__), $defaultLifetime);
|
|
|
|
return $adapter;
|
|
}
|
|
}
|