- <?php
-
- class CacheTestCase extends BackdropWebTestCase {
- protected $default_bin = 'page';
- protected $default_cid = 'test_temporary';
- protected $default_value = 'CacheTest';
-
-
- * Check whether or not a cache entry exists.
- *
- * @param $cid
- * The cache id.
- * @param $var
- * The variable the cache should contain.
- * @param $bin
- * The bin the cache item was stored in.
- * @return
- * TRUE on pass, FALSE on fail.
- */
- protected function checkCacheExists($cid, $var, $bin = NULL) {
- if ($bin == NULL) {
- $bin = $this->default_bin;
- }
-
- $cached = cache($bin)->get($cid);
-
- return isset($cached->data) && $cached->data == $var;
- }
-
-
- * Assert or a cache entry exists.
- *
- * @param $message
- * Message to display.
- * @param $var
- * The variable the cache should contain.
- * @param $cid
- * The cache id.
- * @param $bin
- * The bin the cache item was stored in.
- */
- 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);
- }
-
-
- * Assert or a cache entry has been removed.
- *
- * @param $message
- * Message to display.
- * @param $cid
- * The cache id.
- * @param $bin
- * The bin the cache item was stored in.
- */
- function assertCacheRemoved($message, $cid = NULL, $bin = NULL) {
- if ($bin == NULL) {
- $bin = $this->default_bin;
- }
- if ($cid == NULL) {
- $cid = $this->default_cid;
- }
-
- $cached = cache($bin)->get($cid);
- $this->assertFalse($cached, $message);
- }
-
-
- * Perform the general wipe.
- * @param $bin
- * The bin to perform the wipe on.
- */
- protected function generalWipe($bin = NULL) {
- if ($bin == NULL) {
- $bin = $this->default_bin;
- }
-
- cache($bin)->garbageCollection();
- }
- }
-
- class CacheSavingCase extends CacheTestCase {
-
- * Test the saving and restoring of a string.
- */
- function testString() {
- $this->checkVariable($this->randomName(100));
- }
-
-
- * Test the saving and restoring of an integer.
- */
- function testInteger() {
- $this->checkVariable(100);
- }
-
-
- * Test the saving and restoring of a double.
- */
- function testDouble() {
- $this->checkVariable(1.29);
- }
-
-
- * Test the saving and restoring of an array.
- */
- function testArray() {
- $this->checkVariable(array('backdrop1', 'backdrop2' => 'backdrop3', 'backdrop4' => array('backdrop5', 'backdrop6')));
- }
-
-
- * Test the saving and restoring of an object.
- */
- function testObject() {
- $test_object = new stdClass();
- $test_object->test1 = $this->randomName(100);
- $test_object->test2 = 100;
- $test_object->test3 = array('backdrop1', 'backdrop2' => 'backdrop3', 'backdrop4' => array('backdrop5', 'backdrop6'));
-
-
- cache()->set('test_object', $test_object);
- $cached = cache()->get('test_object');
- $this->assertTrue(isset($cached->data) && $cached->data == $test_object, 'Object is saved and restored properly.');
- }
-
-
- * Check or a variable is stored and restored properly.
- */
- function checkVariable($var) {
- cache()->set('test_var', $var);
- $cached = cache()->get('test_var');
- $this->assertTrue(isset($cached->data) && $cached->data === $var, format_string('@type is saved and restored properly.', array('@type' => ucfirst(gettype($var)))));
- }
-
-
- * Test no empty cids are written in cache table.
- */
- function testNoEmptyCids() {
- $this->backdropGet('user/register');
- $this->assertFalse(cache()->get(''), 'No cache entry is written with an empty cid.');
- }
- }
-
- * Test getMultiple().
- */
- class CacheGetMultipleUnitTest extends CacheTestCase {
- function setUp() {
- $this->default_bin = 'page';
- parent::setUp();
- }
-
-
- * Test getMultiple().
- */
- function testCacheMultiple() {
- $item1 = $this->randomName(10);
- $item2 = $this->randomName(10);
- $cache = cache($this->default_bin);
- $cache->set('item1', $item1);
- $cache->set('item2', $item2);
- $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->getMultiple($item_ids);
- $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->delete('item2');
-
-
- $item_ids = array('item1', 'item2');
- $items = $cache->getMultiple($item_ids);
- $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.');
- }
- }
-
- * Test cache clearing methods.
- */
- class CacheClearCase extends CacheTestCase {
- function setUp() {
- $this->default_bin = 'page';
- $this->default_value = $this->randomName(10);
-
- parent::setUp();
- }
-
-
- * Test clearing using a cid.
- */
- function testClearCid() {
- $cache = cache($this->default_bin);
- $cache->set('test_cid_clear', $this->default_value);
-
- $this->assertCacheExists(t('Cache was set for clearing cid.'), $this->default_value, 'test_cid_clear');
- $cache->delete('test_cid_clear');
-
- $this->assertCacheRemoved(t('Cache was removed after clearing cid.'), 'test_cid_clear');
- }
-
-
- * Test clearing using wildcard.
- */
- function testClearWildcard() {
- $cache = cache($this->default_bin);
- $cache->set('test_cid_clear1', $this->default_value);
- $cache->set('test_cid_clear2', $this->default_value);
- $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->flush();
- $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);
- $cache->set('test_cid_clear2', $this->default_value);
- $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->deletePrefix('test_');
- $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.');
- }
-
-
- * Test clearing using an array.
- */
- function testClearArray() {
-
- $cache = cache($this->default_bin);
- $cache->set('test_cid_clear1', $this->default_value);
- $cache->set('test_cid_clear2', $this->default_value);
- $cache->set('test_cid_clear3', $this->default_value);
- $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->deleteMultiple(array('test_cid_clear1', 'test_cid_clear2'));
- $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');
-
-
- $cache->set('test_cid_clear1', $this->default_value);
- $cache->set('test_cid_clear2', $this->default_value);
- $this->assertTrue($this->checkCacheExists('test_cid_clear1', $this->default_value)
- && $this->checkCacheExists('test_cid_clear2', $this->default_value),
- 'Two cache entries were created.');
- $cache->deleteMultiple(array('test_cid_clear1', 'test_cid_clear2', 'test_cid_clear3'));
- $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.');
- }
-
-
- * Test backdrop_flush_all_caches().
- */
- function testFlushAllCaches() {
-
- $bins = array('cache', 'filter', 'page', 'bootstrap', 'path');
- $bins = array_merge(module_invoke_all('flush_caches'), $bins);
- foreach ($bins as $id => $bin) {
- $cid = 'test_cid_clear' . $id;
- cache($bin)->set($cid, $this->default_value);
- }
-
-
- backdrop_flush_all_caches();
-
- foreach ($bins as $id => $bin) {
- $cid = 'test_cid_clear' . $id;
- $this->assertFalse($this->checkCacheExists($cid, $this->default_value, $bin), format_string('All cache entries removed from @bin.', array('@bin' => $bin)));
- }
- }
- }
-
- * Test isEmpty() method.
- */
- class CacheIsEmptyCase extends CacheTestCase {
- function setUp() {
- $this->default_bin = 'page';
- $this->default_value = $this->randomName(10);
-
- parent::setUp();
- }
-
-
- * Test clearing using a cid.
- */
- function testIsEmpty() {
-
- $cache = cache($this->default_bin);
- $cache->flush();
- $this->assertTrue($cache->isEmpty(), 'The cache bin is empty');
-
- $cache->set($this->default_cid, $this->default_value);
- $this->assertCacheExists(t('Cache was set.'), $this->default_value, $this->default_cid);
- $this->assertFalse($cache->isEmpty(), 'The cache bin is not empty');
-
- $cache->delete($this->default_cid);
- $this->assertCacheRemoved(t('Cache was removed.'), $this->default_cid);
- $this->assertTrue($cache->isEmpty(), 'The cache bin is empty');
- }
- }