<?php
class CacheTestCase extends DrupalWebTestCase {
protected $default_bin = 'cache';
protected $default_cid = 'test_temporary';
protected $default_value = 'CacheTest';
protected function checkCacheExists($cid, $var, $bin = NULL) {
if ($bin == NULL) {
$bin = $this->default_bin;
}
$cache = cache_get($cid, $bin);
return isset($cache->data) && $cache->data == $var;
}
protected function assertCacheExists($message, $var = NULL, $cid = NULL, $bin = NULL) {
if ($bin == NULL) {
$bin = $this->default_bin;
}
if ($cid == NULL) {
$cid = $this->default_cid;
}
if ($var == NULL) {
$var = $this->default_value;
}
$this
->assertTrue($this
->checkCacheExists($cid, $var, $bin), $message);
}
function assertCacheRemoved($message, $cid = NULL, $bin = NULL) {
if ($bin == NULL) {
$bin = $this->default_bin;
}
if ($cid == NULL) {
$cid = $this->default_cid;
}
$cache = cache_get($cid, $bin);
$this
->assertFalse($cache, $message);
}
protected function generalWipe($bin = NULL) {
if ($bin == NULL) {
$bin = $this->default_bin;
}
cache_clear_all(NULL, $bin);
}
protected function setupLifetime($time) {
variable_set('cache_lifetime', $time);
variable_set('cache_flush', 0);
}
}
class CacheSavingCase extends CacheTestCase {
public static function getInfo() {
return array(
'name' => 'Cache saving test',
'description' => 'Check our variables are saved and restored the right way.',
'group' => 'Cache',
);
}
function testString() {
$this
->checkVariable($this
->randomName(100));
}
function testInteger() {
$this
->checkVariable(100);
}
function testDouble() {
$this
->checkVariable(1.29);
}
function testArray() {
$this
->checkVariable(array(
'drupal1',
'drupal2' => 'drupal3',
'drupal4' => array(
'drupal5',
'drupal6',
),
));
}
function testObject() {
$test_object = new stdClass();
$test_object->test1 = $this
->randomName(100);
$test_object->test2 = 100;
$test_object->test3 = array(
'drupal1',
'drupal2' => 'drupal3',
'drupal4' => array(
'drupal5',
'drupal6',
),
);
cache_set('test_object', $test_object, 'cache');
$cache = cache_get('test_object', 'cache');
$this
->assertTrue(isset($cache->data) && $cache->data == $test_object, 'Object is saved and restored properly.');
}
function checkVariable($var) {
cache_set('test_var', $var, 'cache');
$cache = cache_get('test_var', 'cache');
$this
->assertTrue(isset($cache->data) && $cache->data === $var, format_string('@type is saved and restored properly.', array(
'@type' => ucfirst(gettype($var)),
)));
}
function testNoEmptyCids() {
$this
->drupalGet('user/register');
$this
->assertFalse(cache_get(''), 'No cache entry is written with an empty cid.');
}
}
class CacheGetMultipleUnitTest extends CacheTestCase {
public static function getInfo() {
return array(
'name' => 'Fetching multiple cache items',
'description' => 'Confirm that multiple records are fetched correctly.',
'group' => 'Cache',
);
}
function setUp() {
$this->default_bin = 'cache_page';
parent::setUp();
}
function testCacheMultiple() {
$item1 = $this
->randomName(10);
$item2 = $this
->randomName(10);
cache_set('item1', $item1, $this->default_bin);
cache_set('item2', $item2, $this->default_bin);
$this
->assertTrue($this
->checkCacheExists('item1', $item1), 'Item 1 is cached.');
$this
->assertTrue($this
->checkCacheExists('item2', $item2), 'Item 2 is cached.');
$item_ids = array(
'item1',
'item2',
);
$items = cache_get_multiple($item_ids, $this->default_bin);
$this
->assertEqual($items['item1']->data, $item1, 'Item was returned from cache successfully.');
$this
->assertEqual($items['item2']->data, $item2, 'Item was returned from cache successfully.');
cache_clear_all('item2', $this->default_bin);
$item_ids = array(
'item1',
'item2',
);
$items = cache_get_multiple($item_ids, $this->default_bin);
$this
->assertEqual($items['item1']->data, $item1, 'Item was returned from cache successfully.');
$this
->assertFalse(isset($items['item2']), 'Item was not returned from the cache.');
$this
->assertTrue(count($items) == 1, 'Only valid cache entries returned.');
}
}
class CacheClearCase extends CacheTestCase {
public static function getInfo() {
return array(
'name' => 'Cache clear test',
'description' => 'Check our clearing is done the proper way.',
'group' => 'Cache',
);
}
function setUp() {
$this->default_bin = 'cache_page';
$this->default_value = $this
->randomName(10);
parent::setUp();
}
function testClearCid() {
cache_set('test_cid_clear', $this->default_value, $this->default_bin);
$this
->assertCacheExists(t('Cache was set for clearing cid.'), $this->default_value, 'test_cid_clear');
cache_clear_all('test_cid_clear', $this->default_bin);
$this
->assertCacheRemoved(t('Cache was removed after clearing cid.'), 'test_cid_clear');
cache_set('test_cid_clear1', $this->default_value, $this->default_bin);
cache_set('test_cid_clear2', $this->default_value, $this->default_bin);
$this
->assertTrue($this
->checkCacheExists('test_cid_clear1', $this->default_value) && $this
->checkCacheExists('test_cid_clear2', $this->default_value), 'Two caches were created for checking cid "*" with wildcard false.');
cache_clear_all('*', $this->default_bin);
$this
->assertTrue($this
->checkCacheExists('test_cid_clear1', $this->default_value) && $this
->checkCacheExists('test_cid_clear2', $this->default_value), 'Two caches still exists after clearing cid "*" with wildcard false.');
}
function testClearWildcard() {
cache_set('test_cid_clear1', $this->default_value, $this->default_bin);
cache_set('test_cid_clear2', $this->default_value, $this->default_bin);
$this
->assertTrue($this
->checkCacheExists('test_cid_clear1', $this->default_value) && $this
->checkCacheExists('test_cid_clear2', $this->default_value), 'Two caches were created for checking cid "*" with wildcard true.');
cache_clear_all('*', $this->default_bin, TRUE);
$this
->assertFalse($this
->checkCacheExists('test_cid_clear1', $this->default_value) || $this
->checkCacheExists('test_cid_clear2', $this->default_value), 'Two caches removed after clearing cid "*" with wildcard true.');
cache_set('test_cid_clear1', $this->default_value, $this->default_bin);
cache_set('test_cid_clear2', $this->default_value, $this->default_bin);
$this
->assertTrue($this
->checkCacheExists('test_cid_clear1', $this->default_value) && $this
->checkCacheExists('test_cid_clear2', $this->default_value), 'Two caches were created for checking cid substring with wildcard true.');
cache_clear_all('test_', $this->default_bin, TRUE);
$this
->assertFalse($this
->checkCacheExists('test_cid_clear1', $this->default_value) || $this
->checkCacheExists('test_cid_clear2', $this->default_value), 'Two caches removed after clearing cid substring with wildcard true.');
}
function testClearArray() {
cache_set('test_cid_clear1', $this->default_value, $this->default_bin);
cache_set('test_cid_clear2', $this->default_value, $this->default_bin);
cache_set('test_cid_clear3', $this->default_value, $this->default_bin);
$this
->assertTrue($this
->checkCacheExists('test_cid_clear1', $this->default_value) && $this
->checkCacheExists('test_cid_clear2', $this->default_value) && $this
->checkCacheExists('test_cid_clear3', $this->default_value), 'Three cache entries were created.');
cache_clear_all(array(
'test_cid_clear1',
'test_cid_clear2',
), $this->default_bin);
$this
->assertFalse($this
->checkCacheExists('test_cid_clear1', $this->default_value) || $this
->checkCacheExists('test_cid_clear2', $this->default_value), 'Two cache entries removed after clearing with an array.');
$this
->assertTrue($this
->checkCacheExists('test_cid_clear3', $this->default_value), 'Entry was not cleared from the cache');
variable_set('cache_clear_threshold', 2);
cache_set('test_cid_clear1', $this->default_value, $this->default_bin);
cache_set('test_cid_clear2', $this->default_value, $this->default_bin);
$this
->assertTrue($this
->checkCacheExists('test_cid_clear1', $this->default_value) && $this
->checkCacheExists('test_cid_clear2', $this->default_value), 'Two cache entries were created.');
cache_clear_all(array(
'test_cid_clear1',
'test_cid_clear2',
'test_cid_clear3',
), $this->default_bin);
$this
->assertFalse($this
->checkCacheExists('test_cid_clear1', $this->default_value) || $this
->checkCacheExists('test_cid_clear2', $this->default_value) || $this
->checkCacheExists('test_cid_clear3', $this->default_value), 'All cache entries removed when the array exceeded the cache clear threshold.');
}
function testFlushAllCaches() {
$bins = array(
'cache',
'cache_filter',
'cache_page',
'cache_boostrap',
'cache_path',
);
$bins = array_merge(module_invoke_all('flush_caches'), $bins);
foreach ($bins as $id => $bin) {
$id = 'test_cid_clear' . $id;
cache_set($id, $this->default_value, $bin);
}
drupal_flush_all_caches();
foreach ($bins as $id => $bin) {
$id = 'test_cid_clear' . $id;
$this
->assertFalse($this
->checkCacheExists($id, $this->default_value, $bin), format_string('All cache entries removed from @bin.', array(
'@bin' => $bin,
)));
}
}
function testIsValidBin() {
$valid_bins = array(
'cache',
'cache_filter',
'cache_page',
'cache_boostrap',
'cache_path',
);
$valid_bins = array_merge(module_invoke_all('flush_caches'), $valid_bins);
foreach ($valid_bins as $id => $bin) {
$cache = _cache_get_object($bin);
if ($cache instanceof DrupalDatabaseCache) {
$this
->assertTrue($cache
->isValidBin(), format_string('Cache bin @bin is valid.', array(
'@bin' => $bin,
)));
}
}
$invalid_bins = array(
'block',
'filter',
'missing_table',
$this
->randomName(),
);
foreach ($invalid_bins as $id => $bin) {
$cache = _cache_get_object($bin);
if ($cache instanceof DrupalDatabaseCache) {
$this
->assertFalse($cache
->isValidBin(), format_string('Cache bin @bin is not valid.', array(
'@bin' => $bin,
)));
}
}
}
function testMinimumCacheLifetime() {
$this
->setupLifetime(300);
$account = $this
->drupalCreateUser(array());
$this
->drupalLogin($account);
$data = $this
->randomName(100);
cache_set($data, $data, 'cache', CACHE_TEMPORARY);
$cached = cache_get($data);
$this
->assertTrue(isset($cached->data) && $cached->data === $data, 'Cached item retrieved.');
cache_set($data, $data, 'cache_page', CACHE_TEMPORARY);
cache_clear_all(NULL, 'cache_page');
$_SESSION['cache_expiration']['cache_page'] = time();
$cached = cache_get($data);
$this
->assertTrue(isset($cached->data) && $cached->data == $data, 'Cached item retrieved');
$cached = cache_get($data, 'cache_page');
$this
->assertFalse($cached, 'Cached item was invalidated');
}
}
class CacheIsEmptyCase extends CacheTestCase {
public static function getInfo() {
return array(
'name' => 'Cache emptiness test',
'description' => 'Check if a cache bin is empty after performing clear operations.',
'group' => 'Cache',
);
}
function setUp() {
$this->default_bin = 'cache_page';
$this->default_value = $this
->randomName(10);
parent::setUp();
}
function testIsEmpty() {
cache_clear_all('*', $this->default_bin);
$this
->assertTrue(cache_is_empty($this->default_bin), 'The cache bin is empty');
cache_set($this->default_cid, $this->default_value, $this->default_bin);
$this
->assertCacheExists(t('Cache was set.'), $this->default_value, $this->default_cid);
$this
->assertFalse(cache_is_empty($this->default_bin), 'The cache bin is not empty');
cache_clear_all($this->default_cid, $this->default_bin);
$this
->assertCacheRemoved(t('Cache was removed.'), $this->default_cid);
$this
->assertTrue(cache_is_empty($this->default_bin), 'The cache bin is empty');
}
}