| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297 |
- <?php
- if (!defined("PHPUnit_MAIN_METHOD")) {
- define("PHPUnit_MAIN_METHOD", "Zend_Controller_Action_Helper_CacheTest::main");
- }
- require_once 'Zend/Controller/Action/Helper/Cache.php';
- require_once 'Zend/Controller/Action/HelperBroker.php';
- require_once 'Zend/Controller/Front.php';
- require_once 'Zend/Controller/Request/Http.php';
- require_once 'Zend/Controller/Response/Http.php';
- require_once 'Zend/Cache.php';
- require_once 'Zend/Cache/Core.php';
- require_once 'Zend/Cache/Backend.php';
- /**
- * Test class for Zend_Controller_Action_Helper_Cache
- */
- class Zend_Controller_Action_Helper_CacheTest extends PHPUnit_Framework_TestCase
- {
- protected $_requestUriOld;
- /**
- * Runs the test methods of this class.
- *
- * @return void
- */
- public static function main()
- {
- $suite = new PHPUnit_Framework_TestSuite("Zend_Controller_Action_Helper_CacheTest");
- $result = PHPUnit_TextUI_TestRunner::run($suite);
- }
- public function setUp()
- {
- $this->_requestUriOld =
- isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : null;
- $_SERVER['REQUEST_URI'] = '/foo';
- $this->front = Zend_Controller_Front::getInstance();
- $this->front->resetInstance();
- $this->request = new Zend_Controller_Request_Http();
- $this->request->setModuleName('foo')
- ->setControllerName('bar')
- ->setActionName('baz');
- $this->front->setRequest($this->request);
- }
- public function tearDown()
- {
- $_SERVER['REQUEST_URI'] = $this->_requestUriOld;
- }
- public function testGetterInstantiatesManager()
- {
- $helper = new Zend_Controller_Action_Helper_Cache;
- $this->assertTrue($helper->getManager() instanceof Zend_Cache_Manager);
- }
- public function testMethodsProxyToManager()
- {
- $helper = new Zend_Controller_Action_Helper_Cache;
- $this->assertTrue($helper->hasCache('page'));
- }
- public function testCacheableActionsStoredAtInit()
- {
- $helper = new Zend_Controller_Action_Helper_Cache;
- $helper->direct(array('action1'));
- $cacheable = $helper->getCacheableActions();
- $this->assertEquals('action1', $cacheable['bar'][0]);
- }
- public function testCacheableActionTagsStoredAtInit()
- {
- $helper = new Zend_Controller_Action_Helper_Cache;
- $helper->direct(array('action1'), array('tag1','tag2'));
- $cacheable = $helper->getCacheableTags();
- $this->assertSame(array('tag1','tag2'), $cacheable['bar']['action1']);
- }
- public function testCacheableActionsNeverDuplicated()
- {
- $helper = new Zend_Controller_Action_Helper_Cache;
- $helper->direct(array('action1','action1'));
- $cacheable = $helper->getCacheableActions();
- $this->assertEquals('action1', $cacheable['bar'][0]);
- }
- public function testCacheableActionTagsNeverDuplicated()
- {
- $helper = new Zend_Controller_Action_Helper_Cache;
- $helper->direct(array('action1'), array('tag1','tag1','tag2','tag2'));
- $cacheable = $helper->getCacheableTags();
- $this->assertSame(array('tag1','tag2'), $cacheable['bar']['action1']);
- }
- public function testRemovePageCallsPageCacheRemoveMethodCorrectly()
- {
- $helper = new Zend_Controller_Action_Helper_Cache;
- $cache = new Mock_Zend_Cache_Page_1;
- $helper->setCache('page', $cache);
- $this->assertEquals('verified', $helper->removePage('/foo'));
- }
- public function testRemovePageCallsPageCacheRemoveRecursiveMethodCorrectly()
- {
- $helper = new Zend_Controller_Action_Helper_Cache;
- $cache = new Mock_Zend_Cache_Page_1;
- $backend = new Mock_Zend_Cache_Page_2;
- $cache->setBackend($backend);
- $helper->setCache('page', $cache);
- $this->assertEquals('verified', $helper->removePage('/foo', true));
- }
- public function testRemovePagesTaggedCallsPageCacheCleanMethodCorrectly()
- {
- $helper = new Zend_Controller_Action_Helper_Cache;
- $cache = new Mock_Zend_Cache_Page_3;
- $helper->setCache('page', $cache);
- $this->assertEquals('verified', $helper->removePagesTagged(array('tag1')));
- }
- public function testPreDispatchCallsCachesStartMethod()
- {
- $helper = new Zend_Controller_Action_Helper_Cache;
- $cache = new Mock_Zend_Cache_Page_4;
- $helper->setCache('page', $cache);
- $helper->direct(array('baz'));
- $helper->preDispatch();
- $this->assertEquals('verified', $cache->ranStart);
- }
- public function testPreDispatchCallsCachesStartMethodWithTags()
- {
- $helper = new Zend_Controller_Action_Helper_Cache;
- $cache = new Mock_Zend_Cache_Page_6;
- $helper->setCache('page', $cache);
- $helper->direct(array('baz'), array('tag1','tag2'));
- $helper->preDispatch();
- $this->assertEquals('verified', $cache->ranStart);
- }
- public function testPreDispatchDoesNotCallCachesStartMethodWithBadAction()
- {
- $helper = new Zend_Controller_Action_Helper_Cache;
- $cache = new Mock_Zend_Cache_Page_4;
- $helper->setCache('page', $cache);
- $helper->preDispatch();
- $this->assertNotEquals('verified', $cache->res);
- }
- /**
- * @group ZF-11885
- * @dataProvider dataprovider_testEncodedCacheIdsAreUsedConsistently
- */
- public function testEncodedCacheIdsAreUsedConsistently($recursive)
- {
- $helper = new Zend_Controller_Action_Helper_Cache();
- $cache = new Mock_Zend_Cache_Page_TestingEncodedCacheId();
- $helper->setCache('page', $cache);
- $helper->direct(array('baz'));
- $helper->preDispatch();
- $uriKey = bin2hex($this->request->getRequestUri());
- // Ensure that start method encodes key properly
- $this->assertTrue(isset($cache->items[$uriKey]));
- // Ensure that remove method encodes key properly
- $helper->removePage($this->request->getRequestUri(), $recursive);
- $this->assertFalse(isset($cache->items[$uriKey]));
- }
- /**
- * @group ZF-11885
- * @dataProvider dataprovider_testEncodedCacheIdsAreUsedConsistently
- */
- public function testRemovePageAcceptsPreEncodedCacheIds($recursive)
- {
- $helper = new Zend_Controller_Action_Helper_Cache();
- $cache = new Mock_Zend_Cache_Page_TestingEncodedCacheId();
- $helper->setCache('page', $cache);
- $helper->direct(array('baz'));
- $helper->preDispatch();
- $uriKey = bin2hex($this->request->getRequestUri());
- // Ensure that remove method will accept pre-encoded key
- $helper->removePage($uriKey, $recursive);
- $this->assertFalse(isset($cache->items[$uriKey]));
- }
- /**
- * Data provider for testEncodedCacheIdsAreUsedConsistently
- * @see ZF-11885
- */
- public function dataprovider_testEncodedCacheIdsAreUsedConsistently()
- {
- return array(array(true),array(false));
- }
- /**public function testPostDispatchEndsOutputBufferPageCaching()
- {
- $helper = new Zend_Controller_Action_Helper_Cache;
- $cache = new Mock_Zend_Cache_Page_5;
- $helper->setCache('page', $cache);
- $helper->direct(array('baz'));
- $helper->preDispatch();
- $helper->postDispatch();
- $this->assertEquals('verified', $cache->res);
- }
- public function testPostDispatchNotEndsOutputBufferPageCachingWithBadAction()
- {
- $helper = new Zend_Controller_Action_Helper_Cache;
- $cache = new Mock_Zend_Cache_Page_5;
- $helper->setCache('page', $cache);
- $helper->direct(array('action1'));
- $helper->preDispatch();
- $helper->postDispatch();
- $this->assertNotEquals('verified', $cache->res);
- }**/
- }
- class Mock_Zend_Cache_Page_1 extends Zend_Cache_Core
- {
- public function remove($id)
- {
- if ($id == bin2hex('/foo')) {return 'verified';}
- }
- }
- class Mock_Zend_Cache_Page_2 extends Zend_Cache_Backend
- {
- public function removeRecursively($id)
- {
- if ($id == bin2hex('/foo')) {return 'verified';}
- }
- }
- class Mock_Zend_Cache_Page_3 extends Zend_Cache_Core
- {
- public function clean($mode = 'all', $tags = array())
- {
- if ($mode == 'matchingAnyTag' && $tags == array('tag1'))
- {return 'verified';}
- }
- }
- class Mock_Zend_Cache_Page_4 extends Zend_Cache_Core
- {
- public $res;
- public $ranStart;
- public function start($id, array $tags = array())
- {
- $this->ranStart = 'verified';
- if ($id == '/foo') {
- $this->res = 'verified';
- }
- }
- }
- class Mock_Zend_Cache_Page_6 extends Zend_Cache_Core
- {
- public $res;
- public $ranStart;
- public function start($id, array $tags = array())
- {
- $this->ranStart = 'verified';
- if ($id == '/foo' && $tags == array('tag1','tag2')) {
- $this->res = 'verified';
- }
- }
- }
- class Mock_Zend_Cache_Page_TestingEncodedCacheId extends Zend_Cache_Core
- {
- public $items;
- public function start($id, array $tags = array())
- {
- $this->items[$id] = $tags;
- }
- public function remove($id)
- {
- unset($this->items[$id]);
- }
- }
- /**class Mock_Zend_Cache_Page_5 extends Zend_Cache_Core
- {
- public $res;
- public function start() {}
- public function end() {$this->res = 'verified';}
- }**/
- if (PHPUnit_MAIN_METHOD == "Zend_Controller_Action_Helper_CacheTest::main") {
- Zend_Controller_Action_Helper_CacheTest::main();
- }
|