Ejemplo n.º 1
0
 /**
  * Test is a cache has a key.
  *
  * The use of the has methods is strongly discouraged. In a high load environment the cache may well change between the
  * test and any subsequent action (get, set, delete etc).
  * Instead it is recommended to write your code in such a way they it performs the following steps:
  * <ol>
  * <li>Attempt to retrieve the information.</li>
  * <li>Generate the information.</li>
  * <li>Attempt to set the information</li>
  * </ol>
  *
  * Its also worth mentioning that not all stores support key tests.
  * For stores that don't support key tests this functionality is mimicked by using the equivalent get method.
  * Just one more reason you should not use these methods unless you have a very good reason to do so.
  *
  * @param string|int $key
  * @param bool $tryloadifpossible If set to true, the cache doesn't contain the key, and there is another cache loader or
  *      data source then the code will try load the key value from the next item in the chain.
  * @return bool True if the cache has the requested key, false otherwise.
  */
 public function has($key, $tryloadifpossible = false)
 {
     $parsedkey = $this->parse_key($key);
     if ($this->is_in_persist_cache($parsedkey)) {
         return true;
     }
     if ($this->has_a_ttl() && !$this->store_supports_native_ttl() || !$this->store_supports_key_awareness()) {
         if ($this->store_supports_key_awareness() && !$this->store->has($parsedkey)) {
             return false;
         }
         $data = $this->store->get($parsedkey);
         if (!$this->store_supports_native_ttl()) {
             $has = $data instanceof cache_ttl_wrapper && !$data->has_expired();
         } else {
             $has = $data !== false;
         }
     } else {
         $has = $this->store->has($parsedkey);
     }
     if (!$has && $tryloadifpossible) {
         if ($this->loader !== false) {
             $result = $this->loader->get($parsedkey);
         } else {
             if ($this->datasource !== null) {
                 $result = $this->datasource->load_for_cache($key);
             }
         }
         $has = $result !== null;
         if ($has) {
             $this->set($key, $result);
         }
     }
     return $has;
 }
Ejemplo n.º 2
0
 /**
  * Test is a cache has a key.
  *
  * The use of the has methods is strongly discouraged. In a high load environment the cache may well change between the
  * test and any subsequent action (get, set, delete etc).
  * Instead it is recommended to write your code in such a way they it performs the following steps:
  * <ol>
  * <li>Attempt to retrieve the information.</li>
  * <li>Generate the information.</li>
  * <li>Attempt to set the information</li>
  * </ol>
  *
  * Its also worth mentioning that not all stores support key tests.
  * For stores that don't support key tests this functionality is mimicked by using the equivalent get method.
  * Just one more reason you should not use these methods unless you have a very good reason to do so.
  *
  * @param string|int $key
  * @param bool $tryloadifpossible If set to true, the cache doesn't contain the key, and there is another cache loader or
  *      data source then the code will try load the key value from the next item in the chain.
  * @return bool True if the cache has the requested key, false otherwise.
  */
 public function has($key, $tryloadifpossible = false)
 {
     $parsedkey = $this->parse_key($key);
     if ($this->is_in_persist_cache($parsedkey)) {
         // Hoorah, that was easy. It exists in the static acceleration array so we definitely have it.
         return true;
     }
     if ($this->has_a_ttl() && !$this->store_supports_native_ttl()) {
         // The data has a TTL and the store doesn't support it natively.
         // We must fetch the data and expect a ttl wrapper.
         $data = $this->store->get($parsedkey);
         $has = $data instanceof cache_ttl_wrapper && !$data->has_expired();
     } else {
         if (!$this->store_supports_key_awareness()) {
             // The store doesn't support key awareness, get the data and check it manually... puke.
             // Either no TTL is set of the store supports its handling natively.
             $data = $this->store->get($parsedkey);
             $has = $data !== false;
         } else {
             // The store supports key awareness, this is easy!
             // Either no TTL is set of the store supports its handling natively.
             $has = $this->store->has($parsedkey);
         }
     }
     if (!$has && $tryloadifpossible) {
         if ($this->loader !== false) {
             $result = $this->loader->get($parsedkey);
         } else {
             if ($this->datasource !== null) {
                 $result = $this->datasource->load_for_cache($key);
             }
         }
         $has = $result !== null;
         if ($has) {
             $this->set($key, $result);
         }
     }
     return $has;
 }
Ejemplo n.º 3
0
 /**
  * Runs a standard series of access and use tests on a cache instance.
  *
  * This function is great because we can use it to ensure all of the loaders perform exactly the same way.
  *
  * @param cache_loader $cache
  */
 protected function run_on_cache(cache_loader $cache)
 {
     $key = 'testkey';
     $datascalar = 'test data';
     $dataarray = array('test' => 'data', 'part' => 'two');
     $dataobject = (object) $dataarray;
     $this->assertTrue($cache->purge());
     // Check all read methods.
     $this->assertFalse($cache->get($key));
     $this->assertFalse($cache->has($key));
     $result = $cache->get_many(array($key));
     $this->assertCount(1, $result);
     $this->assertFalse(reset($result));
     $this->assertFalse($cache->has_any(array($key)));
     $this->assertFalse($cache->has_all(array($key)));
     // Set the data.
     $this->assertTrue($cache->set($key, $datascalar));
     // Setting it more than once should be permitted.
     $this->assertTrue($cache->set($key, $datascalar));
     // Recheck the read methods.
     $this->assertEquals($datascalar, $cache->get($key));
     $this->assertTrue($cache->has($key));
     $result = $cache->get_many(array($key));
     $this->assertCount(1, $result);
     $this->assertEquals($datascalar, reset($result));
     $this->assertTrue($cache->has_any(array($key)));
     $this->assertTrue($cache->has_all(array($key)));
     // Delete it.
     $this->assertTrue($cache->delete($key));
     // Check its gone.
     $this->assertFalse($cache->get($key));
     $this->assertFalse($cache->has($key));
     // Test arrays.
     $this->assertTrue($cache->set($key, $dataarray));
     $this->assertEquals($dataarray, $cache->get($key));
     // Test objects.
     $this->assertTrue($cache->set($key, $dataobject));
     $this->assertEquals($dataobject, $cache->get($key));
     $specobject = new cache_phpunit_dummy_object('red', 'blue');
     $this->assertTrue($cache->set($key, $specobject));
     $result = $cache->get($key);
     $this->assertInstanceOf('cache_phpunit_dummy_object', $result);
     $this->assertEquals('red_ptc_wfc', $result->property1);
     $this->assertEquals('blue_ptc_wfc', $result->property2);
     // Test set many.
     $cache->set_many(array('key1' => 'data1', 'key2' => 'data2'));
     $this->assertEquals('data1', $cache->get('key1'));
     $this->assertEquals('data2', $cache->get('key2'));
     $this->assertTrue($cache->delete('key1'));
     $this->assertTrue($cache->delete('key2'));
     // Test delete many.
     $this->assertTrue($cache->set('key1', 'data1'));
     $this->assertTrue($cache->set('key2', 'data2'));
     $this->assertEquals('data1', $cache->get('key1'));
     $this->assertEquals('data2', $cache->get('key2'));
     $this->assertEquals(2, $cache->delete_many(array('key1', 'key2')));
     $this->assertFalse($cache->get('key1'));
     $this->assertFalse($cache->get('key2'));
     // Quick reference test.
     $obj = new stdClass();
     $obj->key = 'value';
     $ref =& $obj;
     $this->assertTrue($cache->set('obj', $obj));
     $obj->key = 'eulav';
     $var = $cache->get('obj');
     $this->assertInstanceOf('stdClass', $var);
     $this->assertEquals('value', $var->key);
     $ref->key = 'eulav';
     $var = $cache->get('obj');
     $this->assertInstanceOf('stdClass', $var);
     $this->assertEquals('value', $var->key);
     $this->assertTrue($cache->delete('obj'));
     // Deep reference test.
     $obj1 = new stdClass();
     $obj1->key = 'value';
     $obj2 = new stdClass();
     $obj2->key = 'test';
     $obj3 = new stdClass();
     $obj3->key = 'pork';
     $obj1->subobj =& $obj2;
     $obj2->subobj =& $obj3;
     $this->assertTrue($cache->set('obj', $obj1));
     $obj1->key = 'eulav';
     $obj2->key = 'tset';
     $obj3->key = 'krop';
     $var = $cache->get('obj');
     $this->assertInstanceOf('stdClass', $var);
     $this->assertEquals('value', $var->key);
     $this->assertInstanceOf('stdClass', $var->subobj);
     $this->assertEquals('test', $var->subobj->key);
     $this->assertInstanceOf('stdClass', $var->subobj->subobj);
     $this->assertEquals('pork', $var->subobj->subobj->key);
     $this->assertTrue($cache->delete('obj'));
     // Death reference test... basicaly we don't want this to die.
     $obj = new stdClass();
     $obj->key = 'value';
     $obj->self =& $obj;
     $this->assertTrue($cache->set('obj', $obj));
     $var = $cache->get('obj');
     $this->assertInstanceOf('stdClass', $var);
     $this->assertEquals('value', $var->key);
     // Reference test after retrieve.
     $obj = new stdClass();
     $obj->key = 'value';
     $this->assertTrue($cache->set('obj', $obj));
     $var1 = $cache->get('obj');
     $this->assertInstanceOf('stdClass', $var1);
     $this->assertEquals('value', $var1->key);
     $var1->key = 'eulav';
     $this->assertEquals('eulav', $var1->key);
     $var2 = $cache->get('obj');
     $this->assertInstanceOf('stdClass', $var2);
     $this->assertEquals('value', $var2->key);
     $this->assertTrue($cache->delete('obj'));
 }
Ejemplo n.º 4
0
 /**
  * Runs a standard series of access and use tests on a cache instance.
  *
  * This function is great because we can use it to ensure all of the loaders perform exactly the same way.
  *
  * @param cache_loader $cache
  */
 protected function run_on_cache(cache_loader $cache)
 {
     $key = 'contestkey';
     $datascalars = array('test data', null);
     $dataarray = array('contest' => 'data', 'part' => 'two');
     $dataobject = (object) $dataarray;
     foreach ($datascalars as $datascalar) {
         $this->assertTrue($cache->purge());
         // Check all read methods.
         $this->assertFalse($cache->get($key));
         $this->assertFalse($cache->has($key));
         $result = $cache->get_many(array($key));
         $this->assertCount(1, $result);
         $this->assertFalse(reset($result));
         $this->assertFalse($cache->has_any(array($key)));
         $this->assertFalse($cache->has_all(array($key)));
         // Set the data.
         $this->assertTrue($cache->set($key, $datascalar));
         // Setting it more than once should be permitted.
         $this->assertTrue($cache->set($key, $datascalar));
         // Recheck the read methods.
         $this->assertEquals($datascalar, $cache->get($key));
         $this->assertTrue($cache->has($key));
         $result = $cache->get_many(array($key));
         $this->assertCount(1, $result);
         $this->assertEquals($datascalar, reset($result));
         $this->assertTrue($cache->has_any(array($key)));
         $this->assertTrue($cache->has_all(array($key)));
         // Delete it.
         $this->assertTrue($cache->delete($key));
         // Check its gone.
         $this->assertFalse($cache->get($key));
         $this->assertFalse($cache->has($key));
     }
     // Test arrays.
     $this->assertTrue($cache->set($key, $dataarray));
     $this->assertEquals($dataarray, $cache->get($key));
     // Test objects.
     $this->assertTrue($cache->set($key, $dataobject));
     $this->assertEquals($dataobject, $cache->get($key));
     $specobject = new cache_phpunit_dummy_object('red', 'blue');
     $this->assertTrue($cache->set($key, $specobject));
     $result = $cache->get($key);
     $this->assertInstanceOf('cache_phpunit_dummy_object', $result);
     $this->assertEquals('red_ptc_wfc', $result->property1);
     $this->assertEquals('blue_ptc_wfc', $result->property2);
     // Test array of objects.
     $specobject = new cache_phpunit_dummy_object('red', 'blue');
     $data = new cacheable_object_array(array(clone $specobject, clone $specobject, clone $specobject));
     $this->assertTrue($cache->set($key, $data));
     $result = $cache->get($key);
     $this->assertInstanceOf('cacheable_object_array', $result);
     $this->assertCount(3, $data);
     foreach ($result as $item) {
         $this->assertInstanceOf('cache_phpunit_dummy_object', $item);
         $this->assertEquals('red_ptc_wfc', $item->property1);
         $this->assertEquals('blue_ptc_wfc', $item->property2);
     }
     // Test set many.
     $cache->set_many(array('key1' => 'data1', 'key2' => 'data2', 'key3' => null));
     $this->assertEquals('data1', $cache->get('key1'));
     $this->assertEquals('data2', $cache->get('key2'));
     $this->assertEquals(null, $cache->get('key3'));
     $this->assertTrue($cache->delete('key1'));
     $this->assertTrue($cache->delete('key2'));
     $this->assertTrue($cache->delete('key3'));
     $cache->set_many(array('key1' => array(1, 2, 3), 'key2' => array(3, 2, 1)));
     $this->assertInternalType('array', $cache->get('key1'));
     $this->assertInternalType('array', $cache->get('key2'));
     $this->assertCount(3, $cache->get('key1'));
     $this->assertCount(3, $cache->get('key2'));
     $this->assertInternalType('array', $cache->get_many(array('key1', 'key2')));
     $this->assertCount(2, $cache->get_many(array('key1', 'key2')));
     $this->assertEquals(2, $cache->delete_many(array('key1', 'key2')));
     // Test delete many.
     $this->assertTrue($cache->set('key1', 'data1'));
     $this->assertTrue($cache->set('key2', 'data2'));
     $this->assertTrue($cache->set('key3', null));
     $this->assertEquals('data1', $cache->get('key1'));
     $this->assertEquals('data2', $cache->get('key2'));
     $this->assertEquals(null, $cache->get('key3'));
     $this->assertEquals(3, $cache->delete_many(array('key1', 'key2', 'key3')));
     $this->assertFalse($cache->get('key1'));
     $this->assertFalse($cache->get('key2'));
     $this->assertFalse($cache->get('key3'));
     // Quick reference test.
     $obj = new stdClass();
     $obj->key = 'value';
     $ref =& $obj;
     $this->assertTrue($cache->set('obj', $obj));
     $obj->key = 'eulav';
     $var = $cache->get('obj');
     $this->assertInstanceOf('stdClass', $var);
     $this->assertEquals('value', $var->key);
     $ref->key = 'eulav';
     $var = $cache->get('obj');
     $this->assertInstanceOf('stdClass', $var);
     $this->assertEquals('value', $var->key);
     $this->assertTrue($cache->delete('obj'));
     // Deep reference test.
     $obj1 = new stdClass();
     $obj1->key = 'value';
     $obj2 = new stdClass();
     $obj2->key = 'test';
     $obj3 = new stdClass();
     $obj3->key = 'pork';
     $obj1->subobj =& $obj2;
     $obj2->subobj =& $obj3;
     $this->assertTrue($cache->set('obj', $obj1));
     $obj1->key = 'eulav';
     $obj2->key = 'tset';
     $obj3->key = 'krop';
     $var = $cache->get('obj');
     $this->assertInstanceOf('stdClass', $var);
     $this->assertEquals('value', $var->key);
     $this->assertInstanceOf('stdClass', $var->subobj);
     $this->assertEquals('test', $var->subobj->key);
     $this->assertInstanceOf('stdClass', $var->subobj->subobj);
     $this->assertEquals('pork', $var->subobj->subobj->key);
     $this->assertTrue($cache->delete('obj'));
     // Death reference test... basicaly we don't want this to die.
     $obj = new stdClass();
     $obj->key = 'value';
     $obj->self =& $obj;
     $this->assertTrue($cache->set('obj', $obj));
     $var = $cache->get('obj');
     $this->assertInstanceOf('stdClass', $var);
     $this->assertEquals('value', $var->key);
     // Reference test after retrieve.
     $obj = new stdClass();
     $obj->key = 'value';
     $this->assertTrue($cache->set('obj', $obj));
     $var1 = $cache->get('obj');
     $this->assertInstanceOf('stdClass', $var1);
     $this->assertEquals('value', $var1->key);
     $var1->key = 'eulav';
     $this->assertEquals('eulav', $var1->key);
     $var2 = $cache->get('obj');
     $this->assertInstanceOf('stdClass', $var2);
     $this->assertEquals('value', $var2->key);
     $this->assertTrue($cache->delete('obj'));
     // Test strictness exceptions.
     try {
         $cache->get('exception', MUST_EXIST);
         $this->fail('Exception expected from cache::get using MUST_EXIST');
     } catch (Exception $e) {
         $this->assertTrue(true);
     }
     try {
         $cache->get_many(array('exception1', 'exception2'), MUST_EXIST);
         $this->fail('Exception expected from cache::get_many using MUST_EXIST');
     } catch (Exception $e) {
         $this->assertTrue(true);
     }
     $cache->set('test', 'test');
     try {
         $cache->get_many(array('test', 'exception'), MUST_EXIST);
         $this->fail('Exception expected from cache::get_many using MUST_EXIST');
     } catch (Exception $e) {
         $this->assertTrue(true);
     }
 }