class CouchbaseCacheTest in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/CouchbaseCacheTest.php \Doctrine\Tests\Common\Cache\CouchbaseCacheTest
Hierarchy
- class \Doctrine\Tests\Common\Cache\CacheTest extends \Doctrine\Tests\DoctrineTestCase
- class \Doctrine\Tests\Common\Cache\CouchbaseCacheTest
Expanded class hierarchy of CouchbaseCacheTest
File
- vendor/
doctrine/ cache/ tests/ Doctrine/ Tests/ Common/ Cache/ CouchbaseCacheTest.php, line 8
Namespace
Doctrine\Tests\Common\CacheView source
class CouchbaseCacheTest extends CacheTest {
private $couchbase;
public function setUp() {
if (extension_loaded('couchbase')) {
try {
$this->couchbase = new Couchbase('127.0.0.1', 'Administrator', 'password', 'default');
} catch (Exception $ex) {
$this
->markTestSkipped('Could not instantiate the Couchbase cache because of: ' . $ex);
}
}
else {
$this
->markTestSkipped('The ' . __CLASS__ . ' requires the use of the couchbase extension');
}
}
public function testNoExpire() {
$cache = $this
->_getCacheDriver();
$cache
->save('noexpire', 'value', 0);
sleep(1);
$this
->assertTrue($cache
->contains('noexpire'), 'Couchbase provider should support no-expire');
}
public function testLongLifetime() {
$cache = $this
->_getCacheDriver();
$cache
->save('key', 'value', 30 * 24 * 3600 + 1);
$this
->assertTrue($cache
->contains('key'), 'Couchbase provider should support TTL > 30 days');
}
protected function _getCacheDriver() {
$driver = new CouchbaseCache();
$driver
->setCouchbase($this->couchbase);
return $driver;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CacheTest:: |
public | function | The following values get converted to FALSE if you cast them to a boolean. | |
CacheTest:: |
protected | function | Return whether multiple cache providers share the same storage. | 3 |
CacheTest:: |
public | function | ||
CacheTest:: |
public | function | @dataProvider provideCrudValues | |
CacheTest:: |
public | function | Check to see that objects are correctly serialized and unserialized by the cache provider. | 1 |
CacheTest:: |
public | function | ||
CacheTest:: |
public | function | ||
CacheTest:: |
public | function | ||
CacheTest:: |
public | function | Check to see that, even if the user saves a value that can be interpreted as false, the cache adapter will still recognize its existence there. | 2 |
CacheTest:: |
public | function | ||
CacheTest:: |
public | function | ||
CacheTest:: |
public | function | Check to see that objects fetched via fetchMultiple are properly unserialized | 1 |
CacheTest:: |
public | function | ||
CacheTest:: |
public | function | ||
CacheTest:: |
public | function | ||
CacheTest:: |
public | function | @group DCOM-43 | 8 |
CacheTest:: |
public | function | ||
CouchbaseCacheTest:: |
private | property | ||
CouchbaseCacheTest:: |
public | function | ||
CouchbaseCacheTest:: |
public | function | ||
CouchbaseCacheTest:: |
public | function | ||
CouchbaseCacheTest:: |
protected | function |
Overrides CacheTest:: |