| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222 |
- <?php
- /**
- * @package Zend_Cache
- * @subpackage UnitTests
- */
-
- /**
- * Zend_Cache
- */
- require_once 'Zend/Cache.php';
- require_once 'Zend/Cache/Frontend/Class.php';
- require_once 'Zend/Cache/Backend/Test.php';
- /**
- * PHPUnit test case
- */
- require_once 'PHPUnit/Framework/TestCase.php';
- class test {
- private $_string = 'hello !';
-
- public static function foobar($param1, $param2) {
- echo "foobar_output($param1, $param2)";
- return "foobar_return($param1, $param2)";
- }
-
- public function foobar2($param1, $param2) {
- echo($this->_string);
- echo "foobar2_output($param1, $param2)";
- return "foobar2_return($param1, $param2)";
- }
- }
- /**
- * @package Zend_Cache
- * @subpackage UnitTests
- */
- class Zend_Cache_ClassFrontendTest extends PHPUnit_Framework_TestCase {
-
- private $_instance1;
- private $_instance2;
-
- public function setUp()
- {
- if (!$this->_instance1) {
- $options1 = array(
- 'cached_entity' => 'test'
- );
- $this->_instance1 = new Zend_Cache_Frontend_Class($options1);
- $this->_backend1 = new Zend_Cache_Backend_Test();
- $this->_instance1->setBackend($this->_backend1);
- }
- if (!$this->_instance2) {
- $options2 = array(
- 'cached_entity' => new test()
- );
- $this->_instance2 = new Zend_Cache_Frontend_Class($options2);
- $this->_backend2 = new Zend_Cache_Backend_Test();
- $this->_instance2->setBackend($this->_backend2);
- }
- }
-
- public function tearDown()
- {
- unset($this->_instance1);
- unset($this->_instance2);
- }
-
- public function testConstructorCorrectCall1()
- {
- $options = array(
- 'cache_by_default' => false,
- 'cached_entity' => 'test'
- );
- $test = new Zend_Cache_Frontend_Class($options);
- }
-
- public function testConstructorCorrectCall2()
- {
- $options = array(
- 'cache_by_default' => false,
- 'cached_entity' => new test()
- );
- $test = new Zend_Cache_Frontend_Class($options);
- }
-
- public function testConstructorBadCall()
- {
- $options = array(
- 'cached_entity' => new test(),
- 0 => true,
- );
- try {
- $test = new Zend_Cache_Frontend_Class($options);
- } catch (Zend_Cache_Exception $e) {
- return;
- }
- $this->fail('Zend_Cache_Exception was expected but not thrown');
- }
-
- public function testCallCorrectCall1()
- {
- ob_start();
- ob_implicit_flush(false);
- $return = $this->_instance1->foobar('param1', 'param2');
- $data = ob_get_contents();
- ob_end_clean();
- ob_implicit_flush(true);
- $this->assertEquals('bar', $return);
- $this->assertEquals('foo', $data);
- }
-
- public function testCallCorrectCall2()
- {
- ob_start();
- ob_implicit_flush(false);
- $return = $this->_instance1->foobar('param3', 'param4');
- $data = ob_get_contents();
- ob_end_clean();
- ob_implicit_flush(true);
- $this->assertEquals('foobar_return(param3, param4)', $return);
- $this->assertEquals('foobar_output(param3, param4)', $data);
- }
-
- public function testCallCorrectCall3()
- {
- ob_start();
- ob_implicit_flush(false);
- $return = $this->_instance2->foobar2('param1', 'param2');
- $data = ob_get_contents();
- ob_end_clean();
- ob_implicit_flush(true);
- $this->assertEquals('bar', $return);
- $this->assertEquals('foo', $data);
- }
-
- public function testCallCorrectCall4()
- {
- ob_start();
- ob_implicit_flush(false);
- $return = $this->_instance2->foobar2('param3', 'param4');
- $data = ob_get_contents();
- ob_end_clean();
- ob_implicit_flush(true);
- $this->assertEquals('foobar2_return(param3, param4)', $return);
- $this->assertEquals('hello !foobar2_output(param3, param4)', $data);
- }
-
- public function testCallCorrectCall5()
- {
- // cacheByDefault = false
- $this->_instance1->setOption('cache_by_default', false);
- ob_start();
- ob_implicit_flush(false);
- $return = $this->_instance1->foobar('param1', 'param2');
- $data = ob_get_contents();
- ob_end_clean();
- ob_implicit_flush(true);
- $this->assertEquals('foobar_return(param1, param2)', $return);
- $this->assertEquals('foobar_output(param1, param2)', $data);
- }
-
- public function testCallCorrectCall6()
- {
- // cacheByDefault = false
- // cachedMethods = array('foobar')
- $this->_instance1->setOption('cache_by_default', false);
- $this->_instance1->setOption('cached_methods', array('foobar'));
- ob_start();
- ob_implicit_flush(false);
- $return = $this->_instance1->foobar('param1', 'param2');
- $data = ob_get_contents();
- ob_end_clean();
- ob_implicit_flush(true);
- $this->assertEquals('bar', $return);
- $this->assertEquals('foo', $data);
- }
-
- public function testCallCorrectCall7()
- {
- // cacheByDefault = true
- // nonCachedMethods = array('foobar')
- $this->_instance1->setOption('cache_by_default', true);
- $this->_instance1->setOption('non_cached_methods', array('foobar'));
- ob_start();
- ob_implicit_flush(false);
- $return = $this->_instance1->foobar('param1', 'param2');
- $data = ob_get_contents();
- ob_end_clean();
- ob_implicit_flush(true);
- $this->assertEquals('foobar_return(param1, param2)', $return);
- $this->assertEquals('foobar_output(param1, param2)', $data);
- }
-
- public function testConstructorWithABadCachedEntity()
- {
- try {
- $options = array(
- 'cached_entity' => array()
- );
- $instance = new Zend_Cache_Frontend_Class($options);
- } catch (Zend_Cache_Exception $e) {
- return;
- }
- $this->fail('Zend_Cache_Exception was expected but not thrown');
- }
- /**
- * @group ZF-5034
- */
- public function testCallingConstructorWithInvalidOptionShouldNotRaiseException()
- {
- $options = array(
- 'cached_entity' => new test(),
- 'this_key_does_not_exist' => true
- );
- $test = new Zend_Cache_Frontend_Class($options);
- }
- }
|