| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <?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/Backend/ZendPlatform.php';
- /**
- * Common tests for backends
- */
- require_once 'CommonBackendTest.php';
- /**
- * @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_ZendPlatformBackendTest extends Zend_Cache_CommonBackendTest {
- protected $_instance;
- public function __construct($name = null, array $data = array(), $dataName = '')
- {
- parent::__construct('Zend_Cache_Backend_ZendPlatform', $data, $dataName);
- }
- public function setUp($notag = false)
- {
- if(!function_exists('output_cache_get')) {
- $this->markTestSkipped('Zend Platform is not installed, skipping test');
- return;
- }
- $this->_instance = new Zend_Cache_Backend_ZendPlatform(array());
- parent::setUp($notag);
- }
- public function tearDown()
- {
- parent::tearDown();
- unset($this->_instance);
- }
- public function testConstructorCorrectCall()
- {
- $test = new Zend_Cache_Backend_ZendPlatform();
- }
- public function testRemoveCorrectCall()
- {
- $this->assertTrue($this->_instance->remove('bar'));
- $this->assertFalse($this->_instance->test('bar'));
- $this->assertTrue($this->_instance->remove('barbar'));
- $this->assertFalse($this->_instance->test('barbar'));
- }
- public function testGetWithAnExpiredCacheId()
- {
- sleep(2);
- $this->_instance->setDirectives(array('lifetime' => 1));
- $this->assertEquals('bar : data to cache', $this->_instance->load('bar', true));
- $this->assertFalse($this->_instance->load('bar'));
- $this->_instance->setDirectives(array('lifetime' => 3600));
- }
- // Because of limitations of this backend...
- public function testCleanModeNotMatchingTags2() {}
- public function testCleanModeNotMatchingTags3() {}
- public function testCleanModeOld() {}
- public function testCleanModeNotMatchingTags() {}
- }
|