| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301 |
- <?php
- /**
- * Zend Framework
- *
- * LICENSE
- *
- * This source file is subject to the new BSD license that is bundled
- * with this package in the file LICENSE.txt.
- * It is also available through the world-wide-web at this URL:
- * http://framework.zend.com/license/new-bsd
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to license@zend.com so we can send you a copy immediately.
- *
- * @category Zend
- * @package Zend_Cache
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- /**
- * Zend_Cache
- */
- require_once 'Zend/Cache.php';
- require_once 'Zend/Cache/Frontend/Class.php';
- require_once 'Zend/Cache/Backend/Test.php';
- /**
- * @todo: Should this class be named Zend_Cache_Something?
- *
- * @category Zend
- * @package Zend_Cache
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @group Zend_Cache
- */
- 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)";
- }
- public function foobar3($param1, $param2)
- {
- echo $this->dummyMethod($param1, $param2);
- }
- private function dummyMethod($param1, $param2) {
- return "foobar_output($param1,$param2)";
- }
- public function throwException()
- {
- echo 'throw exception';
- throw new Exception('test exception');
- }
- }
- /**
- * @category Zend
- * @package Zend_Cache
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @group Zend_Cache
- */
- 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_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_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_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_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_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_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_clean();
- ob_implicit_flush(true);
- $this->assertEquals('foobar_return(param1, param2)', $return);
- $this->assertEquals('foobar_output(param1, param2)', $data);
- }
- /**
- * @group GH-125
- */
- public function testCallCorrectCall8()
- {
- $this->_instance2->setOption('cache_by_default', true);
- $this->_instance2->setOption('cached_methods', array('foobar3'));
- ob_start();
- ob_implicit_flush(false);
- $return = $this->_instance2->foobar3('param1', 'param2');
- $data = ob_get_clean();
- ob_implicit_flush(true);
- $this->assertNull($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);
- }
- /**
- * @ZF-10521
- */
- public function testOutputBufferingOnException()
- {
- ob_start();
- ob_implicit_flush(false);
- echo 'start';
- try {
- $this->_instance2->throwException();
- $this->fail("An exception should be thrown");
- } catch (Exception $e) {}
- echo 'end';
- $output = ob_get_clean();
- $this->assertEquals('startend', $output);
- }
- /**
- * @group ZF-11337
- */
- public function testThrowExceptionOnInvalidCallback()
- {
- $this->setExpectedException('Zend_Cache_Exception');
- $this->_instance2->unknownMethod();
- }
- }
|