class PredisCacheTest in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/PredisCacheTest.php \Doctrine\Tests\Common\Cache\PredisCacheTest
Hierarchy
- class \Doctrine\Tests\Common\Cache\CacheTest extends \Doctrine\Tests\DoctrineTestCase
- class \Doctrine\Tests\Common\Cache\PredisCacheTest
Expanded class hierarchy of PredisCacheTest
File
- vendor/
doctrine/ cache/ tests/ Doctrine/ Tests/ Common/ Cache/ PredisCacheTest.php, line 10
Namespace
Doctrine\Tests\Common\CacheView source
class PredisCacheTest extends CacheTest {
private $client;
public function setUp() {
if (!class_exists('Predis\\Client')) {
$this
->markTestSkipped('Predis\\Client is missing. Make sure to "composer install" to have all dev dependencies.');
}
$this->client = new Client();
try {
$this->client
->connect();
} catch (ConnectionException $e) {
$this
->markTestSkipped('The ' . __CLASS__ . ' requires the use of redis');
}
}
public function testHitMissesStatsAreProvided() {
$cache = $this
->_getCacheDriver();
$stats = $cache
->getStats();
$this
->assertNotNull($stats[Cache::STATS_HITS]);
$this
->assertNotNull($stats[Cache::STATS_MISSES]);
}
/**
* @return PredisCache
*/
protected function _getCacheDriver() {
return new PredisCache($this->client);
}
/**
* {@inheritDoc}
*
* @dataProvider falseCastedValuesProvider
*/
public function testFalseCastedValues($value) {
if (array() === $value) {
$this
->markTestIncomplete('Predis currently doesn\'t support saving empty array values. ' . 'See https://github.com/nrk/predis/issues/241');
}
parent::testFalseCastedValues($value);
}
}