You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cacert-testmgr/external/ZendFramework-1.9.5/tests/Zend/Cache/ClassFrontendTest.php

253 lines
7.7 KiB
PHP

<?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-2009 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: ClassFrontendTest.php 17363 2009-08-03 07:40:18Z bkarwin $
*/
/**
* 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';
/**
* @todo: Should this class be named Zend_Cache_Something?
*
* @category Zend
* @package Zend_Cache
* @subpackage UnitTests
* @copyright Copyright (c) 2005-2009 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)";
}
}
/**
* @category Zend
* @package Zend_Cache
* @subpackage UnitTests
* @copyright Copyright (c) 2005-2009 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_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);
}
}