| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152 |
- <?php
- /**
- * ViewTest file
- *
- * PHP 5
- *
- * CakePHP(tm) Tests <http://book.cakephp.org/view/1196/Testing>
- * Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * Redistributions of files must retain the above copyright notice
- *
- * @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://book.cakephp.org/view/1196/Testing CakePHP(tm) Tests
- * @package Cake.Test.Case.View
- * @since CakePHP(tm) v 1.2.0.4206
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- App::uses('View', 'View');
- App::uses('Helper', 'View');
- App::uses('Controller', 'Controller');
- App::uses('CacheHelper', 'View/Helper');
- App::uses('ErrorHandler', 'Error');
- /**
- * ViewPostsController class
- *
- * @package Cake.Test.Case.View
- */
- class ViewPostsController extends Controller {
- /**
- * name property
- *
- * @var string 'Posts'
- */
- public $name = 'Posts';
- /**
- * uses property
- *
- * @var mixed null
- */
- public $uses = null;
- /**
- * index method
- *
- * @return void
- */
- public function index() {
- $this->set('testData', 'Some test data');
- $test2 = 'more data';
- $test3 = 'even more data';
- $this->set(compact('test2', 'test3'));
- }
- /**
- * nocache_tags_with_element method
- *
- * @return void
- */
- public function nocache_multiple_element() {
- $this->set('foo', 'this is foo var');
- $this->set('bar', 'this is bar var');
- }
- }
- /**
- * TestView class
- *
- * @package Cake.Test.Case.View
- */
- class TestView extends View {
- /**
- * getViewFileName method
- *
- * @param mixed $name
- * @return void
- */
- public function getViewFileName($name = null) {
- return $this->_getViewFileName($name);
- }
- /**
- * getLayoutFileName method
- *
- * @param mixed $name
- * @return void
- */
- public function getLayoutFileName($name = null) {
- return $this->_getLayoutFileName($name);
- }
- /**
- * paths method
- *
- * @param string $plugin
- * @param boolean $cached
- * @return void
- */
- public function paths($plugin = null, $cached = true) {
- return $this->_paths($plugin, $cached);
- }
- /**
- * _render wrapper for testing (temporary).
- *
- * @param string $___viewFn
- * @param string $___dataForView
- * @param string $loadHelpers
- * @param string $cached
- * @return void
- */
- public function render_($___viewFn, $___dataForView, $loadHelpers = true, $cached = false) {
- return $this->_render($___viewFn, $___dataForView, $loadHelpers, $cached);
- }
- /**
- * Test only function to return instance scripts.
- *
- * @return array Scripts
- */
- public function scripts() {
- return $this->_scripts;
- }
- }
- /**
- * TestAfterHelper class
- *
- * @package Cake.Test.Case.View
- */
- class TestAfterHelper extends Helper {
- /**
- * property property
- *
- * @var string ''
- */
- public $property = '';
- /**
- * beforeLayout method
- *
- * @return void
- */
- public function beforeLayout($viewFile) {
- $this->property = 'Valuation';
- }
- /**
- * afterLayout method
- *
- * @return void
- */
- public function afterLayout($layoutFile) {
- $this->_View->output .= 'modified in the afterlife';
- }
- }
- /**
- * ViewTest class
- *
- * @package Cake.Test.Case.View
- */
- class ViewTest extends CakeTestCase {
- /**
- * Fixtures used in this test.
- *
- * @var array
- */
- public $fixtures = array('core.user', 'core.post');
- /**
- * setUp method
- *
- * @return void
- */
- public function setUp() {
- parent::setUp();
- $request = $this->getMock('CakeRequest');
- $this->Controller = new Controller($request);
- $this->PostsController = new ViewPostsController($request);
- $this->PostsController->viewPath = 'Posts';
- $this->PostsController->index();
- $this->View = new View($this->PostsController);
- App::build(array(
- 'plugins' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'Plugin' . DS),
- 'View' => array(
- CAKE . 'Test' . DS . 'test_app' . DS . 'View'. DS
- )
- ), true);
- CakePlugin::load(array('TestPlugin', 'TestPlugin', 'PluginJs'));
- Configure::write('debug', 2);
- }
- /**
- * tearDown method
- *
- * @return void
- */
- public function tearDown() {
- parent::tearDown();
- CakePlugin::unload();
- unset($this->View);
- unset($this->PostsController);
- unset($this->Controller);
- }
- /**
- * testPluginGetTemplate method
- *
- * @return void
- */
- public function testPluginGetTemplate() {
- $this->Controller->plugin = 'TestPlugin';
- $this->Controller->name = 'TestPlugin';
- $this->Controller->viewPath = 'Tests';
- $this->Controller->action = 'index';
- $View = new TestView($this->Controller);
- $expected = CakePlugin::path('TestPlugin') . 'View' . DS .'Tests' . DS .'index.ctp';
- $result = $View->getViewFileName('index');
- $this->assertEquals($expected, $result);
- $expected = CakePlugin::path('TestPlugin') . 'View' . DS . 'Layouts' . DS .'default.ctp';
- $result = $View->getLayoutFileName();
- $this->assertEquals($expected, $result);
- }
- /**
- * test that plugin/$plugin_name is only appended to the paths it should be.
- *
- * @return void
- */
- public function testPluginPathGeneration() {
- $this->Controller->plugin = 'TestPlugin';
- $this->Controller->name = 'TestPlugin';
- $this->Controller->viewPath = 'Tests';
- $this->Controller->action = 'index';
- $View = new TestView($this->Controller);
- $paths = $View->paths();
- $expected = array_merge(App::path('View'), App::core('View'));
- $this->assertEquals($paths, $expected);
- $paths = $View->paths('TestPlugin');
- $pluginPath = CakePlugin::path('TestPlugin');
- $expected = array(
- CAKE . 'Test' . DS . 'test_app' . DS . 'View' . DS . 'Plugin' . DS . 'TestPlugin' . DS,
- $pluginPath . 'View' . DS,
- $pluginPath . 'views' . DS,
- $pluginPath . 'Lib' . DS . 'View' . DS,
- CAKE . 'Test' . DS . 'test_app' . DS . 'View' . DS,
- CAKE . 'View' . DS
- );
- $this->assertEquals($paths, $expected);
- }
- /**
- * test that CamelCase plugins still find their view files.
- *
- * @return void
- */
- public function testCamelCasePluginGetTemplate() {
- $this->Controller->plugin = 'TestPlugin';
- $this->Controller->name = 'TestPlugin';
- $this->Controller->viewPath = 'Tests';
- $this->Controller->action = 'index';
- $View = new TestView($this->Controller);
- App::build(array(
- 'plugins' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'Plugin' . DS),
- 'View' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'View'. DS)
- ));
- $pluginPath = CakePlugin::path('TestPlugin');
- $expected = CAKE . 'Test' . DS . 'test_app' . DS . 'Plugin' . DS .'TestPlugin' . DS . 'View' . DS .'Tests' . DS .'index.ctp';
- $result = $View->getViewFileName('index');
- $this->assertEquals($expected, $result);
- $expected = $pluginPath. 'View' . DS . 'Layouts' . DS .'default.ctp';
- $result = $View->getLayoutFileName();
- $this->assertEquals($expected, $result);
- }
- /**
- * testGetTemplate method
- *
- * @return void
- */
- public function testGetTemplate() {
- $this->Controller->plugin = null;
- $this->Controller->name = 'Pages';
- $this->Controller->viewPath = 'Pages';
- $this->Controller->action = 'display';
- $this->Controller->params['pass'] = array('home');
- $View = new TestView($this->Controller);
- $expected = CAKE . 'Test' . DS . 'test_app' . DS . 'View' . DS .'Pages' . DS .'home.ctp';
- $result = $View->getViewFileName('home');
- $this->assertEquals($expected, $result);
- $expected = CAKE . 'Test' . DS . 'test_app' . DS . 'View' . DS .'Posts' . DS .'index.ctp';
- $result = $View->getViewFileName('/Posts/index');
- $this->assertEquals($expected, $result);
- $expected = CAKE . 'Test' . DS . 'test_app' . DS . 'View' . DS .'Posts' . DS .'index.ctp';
- $result = $View->getViewFileName('../Posts/index');
- $this->assertEquals($expected, $result);
- $expected = CAKE . 'Test' . DS . 'test_app' . DS . 'View' . DS . 'Layouts' . DS .'default.ctp';
- $result = $View->getLayoutFileName();
- $this->assertEquals($expected, $result);
- $View->layoutPath = 'rss';
- $expected = CAKE . 'Test' . DS . 'test_app' . DS . 'View' . DS . 'Layouts' . DS . 'rss' . DS . 'default.ctp';
- $result = $View->getLayoutFileName();
- $this->assertEquals($expected, $result);
- $View->layoutPath = 'Emails' . DS . 'html';
- $expected = CAKE . 'Test' . DS . 'test_app' . DS . 'View' . DS . 'Layouts' . DS . 'Emails' . DS . 'html' . DS . 'default.ctp';
- $result = $View->getLayoutFileName();
- $this->assertEquals($expected, $result);
- }
- /**
- * testMissingView method
- *
- * @expectedException MissingViewException
- * @return void
- */
- public function testMissingView() {
- $this->Controller->plugin = null;
- $this->Controller->name = 'Pages';
- $this->Controller->viewPath = 'Pages';
- $this->Controller->action = 'display';
- $this->Controller->params['pass'] = array('home');
- $View = new TestView($this->Controller);
- ob_start();
- $result = $View->getViewFileName('does_not_exist');
- }
- /**
- * testMissingLayout method
- *
- * @expectedException MissingLayoutException
- * @return void
- */
- public function testMissingLayout() {
- $this->Controller->plugin = null;
- $this->Controller->name = 'Posts';
- $this->Controller->viewPath = 'Posts';
- $this->Controller->layout = 'whatever';
- $View = new TestView($this->Controller);
- ob_start();
- $result = $View->getLayoutFileName();
- $expected = str_replace(array("\t", "\r\n", "\n"), "", ob_get_clean());
- }
- /**
- * testViewVars method
- *
- * @return void
- */
- public function testViewVars() {
- $this->assertEquals($this->View->viewVars, array('testData' => 'Some test data', 'test2' => 'more data', 'test3' => 'even more data'));
- }
- /**
- * testUUIDGeneration method
- *
- * @return void
- */
- public function testUUIDGeneration() {
- $result = $this->View->uuid('form', array('controller' => 'posts', 'action' => 'index'));
- $this->assertEquals($result, 'form5988016017');
- $result = $this->View->uuid('form', array('controller' => 'posts', 'action' => 'index'));
- $this->assertEquals($result, 'formc3dc6be854');
- $result = $this->View->uuid('form', array('controller' => 'posts', 'action' => 'index'));
- $this->assertEquals($result, 'form28f92cc87f');
- }
- /**
- * testAddInlineScripts method
- *
- * @return void
- */
- public function testAddInlineScripts() {
- $View = new TestView($this->Controller);
- $View->addScript('prototype.js');
- $View->addScript('prototype.js');
- $this->assertEquals($View->scripts(), array('prototype.js'));
- $View->addScript('mainEvent', 'Event.observe(window, "load", function() { doSomething(); }, true);');
- $this->assertEquals($View->scripts(), array('prototype.js', 'mainEvent' => 'Event.observe(window, "load", function() { doSomething(); }, true);'));
- }
- /**
- * testElement method
- *
- * @return void
- */
- public function testElement() {
- $result = $this->View->element('test_element');
- $this->assertEquals($result, 'this is the test element');
- $result = $this->View->element('plugin_element', array(), array('plugin' => 'TestPlugin'));
- $this->assertEquals($result, 'this is the plugin element using params[plugin]');
- $result = $this->View->element('plugin_element', array(), array('plugin' => 'test_plugin'));
- $this->assertEquals($result, 'this is the plugin element using params[plugin]');
- $this->View->plugin = 'TestPlugin';
- $result = $this->View->element('test_plugin_element');
- $this->assertEquals($result, 'this is the test set using View::$plugin plugin element');
- $result = $this->View->element('non_existant_element');
- $this->assertRegExp('/Not Found:/', $result);
- $this->assertRegExp('/non_existant_element/', $result);
- }
- /**
- * test that elements can have callbacks
- *
- */
- public function testElementCallbacks() {
- $this->getMock('HtmlHelper', array(), array($this->View), 'ElementCallbackMockHtmlHelper');
- $this->View->helpers = array('ElementCallbackMockHtml');
- $this->View->loadHelpers();
- $this->View->ElementCallbackMockHtml->expects($this->at(0))->method('beforeRender');
- $this->View->ElementCallbackMockHtml->expects($this->at(1))->method('afterRender');
- $this->View->element('test_element', array(), array('callbacks' => true));
- $this->mockObjects[] = $this->View->ElementCallbackMockHtml;
- }
- /**
- * test that additional element viewVars don't get overwritten with helpers.
- *
- * @return void
- */
- public function testElementParamsDontOverwriteHelpers() {
- $Controller = new ViewPostsController();
- $Controller->helpers = array('Form');
- $View = new View($Controller);
- $result = $View->element('type_check', array('form' => 'string'), array('callbacks' => true));
- $this->assertEquals('string', $result);
- $View->set('form', 'string');
- $result = $View->element('type_check', array(), array('callbacks' => true));
- $this->assertEquals('string', $result);
- }
- /**
- * testElementCacheHelperNoCache method
- *
- * @return void
- */
- public function testElementCacheHelperNoCache() {
- $Controller = new ViewPostsController();
- $View = new TestView($Controller);
- $helpers = $View->loadHelpers();
- $result = $View->element('test_element', array('ram' => 'val', 'test' => array('foo', 'bar')));
- $this->assertEquals($result, 'this is the test element');
- }
- /**
- * testElementCache method
- *
- * @return void
- */
- public function testElementCache() {
- Cache::drop('test_view');
- Cache::config('test_view', array(
- 'engine' => 'File',
- 'duration' => '+1 day',
- 'path' => CACHE . 'views' . DS,
- 'prefix' => ''
- ));
- Cache::clear('test_view');
- $View = new TestView($this->PostsController);
- $View->elementCache = 'test_view';
- $result = $View->element('test_element', array(), array('cache' => true));
- $expected = 'this is the test element';
- $this->assertEquals($expected, $result);
- $result = Cache::read('element__test_element_cache', 'test_view');
- $this->assertEquals($expected, $result);
- $result = $View->element('test_element', array('param' => 'one', 'foo' => 'two'), array('cache' => true));
- $this->assertEquals($expected, $result);
- $result = Cache::read('element__test_element_cache_param_foo', 'test_view');
- $this->assertEquals($expected, $result);
- $result = $View->element('test_element', array(
- 'param' => 'one',
- 'foo' => 'two'
- ), array(
- 'cache' => array('key' => 'custom_key')
- ));
- $result = Cache::read('element_custom_key', 'test_view');
- $this->assertEquals($expected, $result);
- $View->elementCache = 'default';
- $result = $View->element('test_element', array(
- 'param' => 'one',
- 'foo' => 'two'
- ), array(
- 'cache' => array('config' => 'test_view'),
- ));
- $result = Cache::read('element__test_element_cache_param_foo', 'test_view');
- $this->assertEquals($expected, $result);
- Cache::drop('test_view');
- }
- /**
- * test __get allowing access to helpers.
- *
- * @return void
- */
- public function test__get() {
- $View = new View($this->PostsController);
- $View->loadHelper('Html');
- $this->assertInstanceOf('HtmlHelper', $View->Html);
- }
- /**
- * test that ctp is used as a fallback file extension for elements
- *
- * @return void
- */
- public function testElementCtpFallback() {
- $View = new TestView($this->PostsController);
- $View->ext = '.missing';
- $element = 'test_element';
- $expected = 'this is the test element';
- $result = $View->element($element);
- $this->assertEquals($expected, $result);
- }
- /**
- * testLoadHelpers method
- *
- * @return void
- */
- public function testLoadHelpers() {
- $View = new View($this->PostsController);
- $View->helpers = array('Html', 'Form');
- $View->loadHelpers();
- $this->assertInstanceOf('HtmlHelper', $View->Html, 'Object type is wrong.');
- $this->assertInstanceOf('FormHelper', $View->Form, 'Object type is wrong.');
- }
- /**
- * test the correct triggering of helper callbacks
- *
- * @return void
- */
- public function testHelperCallbackTriggering() {
- $View = new View($this->PostsController);
- $View->helpers = array();
- $View->Helpers = $this->getMock('HelperCollection', array('trigger'), array($View));
- $View->Helpers->expects($this->at(0))->method('trigger')
- ->with(
- $this->logicalAnd(
- $this->isInstanceOf('CakeEvent'),
- $this->attributeEqualTo('_name', 'View.beforeRender'),
- $this->attributeEqualTo('_subject', $View)
- )
- );
- $View->Helpers->expects($this->at(1))->method('trigger')
- ->with(
- $this->logicalAnd(
- $this->isInstanceOf('CakeEvent'),
- $this->attributeEqualTo('_name', 'View.beforeRenderFile'),
- $this->attributeEqualTo('_subject', $View)
- )
- );
- $View->Helpers->expects($this->at(2))->method('trigger')
- ->with(
- $this->logicalAnd(
- $this->isInstanceOf('CakeEvent'),
- $this->attributeEqualTo('_name', 'View.afterRenderFile'),
- $this->attributeEqualTo('_subject', $View)
- )
- );
- $View->Helpers->expects($this->at(3))->method('trigger')
- ->with(
- $this->logicalAnd(
- $this->isInstanceOf('CakeEvent'),
- $this->attributeEqualTo('_name', 'View.afterRender'),
- $this->attributeEqualTo('_subject', $View)
- )
- );
-
- $View->Helpers->expects($this->at(4))->method('trigger')
- ->with(
- $this->logicalAnd(
- $this->isInstanceOf('CakeEvent'),
- $this->attributeEqualTo('_name', 'View.beforeLayout'),
- $this->attributeEqualTo('_subject', $View)
- )
- );
- $View->Helpers->expects($this->at(5))->method('trigger')
- ->with(
- $this->logicalAnd(
- $this->isInstanceOf('CakeEvent'),
- $this->attributeEqualTo('_name', 'View.beforeRenderFile'),
- $this->attributeEqualTo('_subject', $View)
- )
- );
- $View->Helpers->expects($this->at(6))->method('trigger')
- ->with(
- $this->logicalAnd(
- $this->isInstanceOf('CakeEvent'),
- $this->attributeEqualTo('_name', 'View.afterRenderFile'),
- $this->attributeEqualTo('_subject', $View)
- )
- );
- $View->Helpers->expects($this->at(7))->method('trigger')
- ->with(
- $this->logicalAnd(
- $this->isInstanceOf('CakeEvent'),
- $this->attributeEqualTo('_name', 'View.afterLayout'),
- $this->attributeEqualTo('_subject', $View)
- )
- );
- $View->render('index');
- }
- /**
- * testBeforeLayout method
- *
- * @return void
- */
- public function testBeforeLayout() {
- $this->PostsController->helpers = array('Session', 'TestAfter', 'Html');
- $View = new View($this->PostsController);
- $View->render('index');
- $this->assertEquals($View->Helpers->TestAfter->property, 'Valuation');
- }
- /**
- * testAfterLayout method
- *
- * @return void
- */
- public function testAfterLayout() {
- $this->PostsController->helpers = array('Session', 'TestAfter', 'Html');
- $this->PostsController->set('variable', 'values');
- $View = new View($this->PostsController);
- ClassRegistry::addObject('afterView', $View);
- $content = 'This is my view output';
- $result = $View->renderLayout($content, 'default');
- $this->assertRegExp('/modified in the afterlife/', $result);
- $this->assertRegExp('/This is my view output/', $result);
- }
- /**
- * testRenderLoadHelper method
- *
- * @return void
- */
- public function testRenderLoadHelper() {
- $this->PostsController->helpers = array('Session', 'Html', 'Form', 'Number');
- $View = new TestView($this->PostsController);
- $result = $View->render('index', false);
- $this->assertEquals($result, 'posts index');
- $attached = $View->Helpers->attached();
- $this->assertEquals($attached, array('Session', 'Html', 'Form', 'Number'));
- $this->PostsController->helpers = array('Html', 'Form', 'Number', 'TestPlugin.PluggedHelper');
- $View = new TestView($this->PostsController);
- $result = $View->render('index', false);
- $this->assertEquals($result, 'posts index');
- $attached = $View->Helpers->attached();
- $expected = array('Html', 'Form', 'Number', 'PluggedHelper');
- $this->assertEquals($expected, $attached, 'Attached helpers are wrong.');
- }
- /**
- * testRender method
- *
- * @return void
- */
- public function testRender() {
- $View = new TestView($this->PostsController);
- $result = str_replace(array("\t", "\r\n", "\n"), "", $View->render('index'));
- $this->assertRegExp("/<meta http-equiv=\"Content-Type\" content=\"text\/html; charset=utf-8\" \/><title>/", $result);
- $this->assertRegExp("/<div id=\"content\">posts index<\/div>/", $result);
- $this->assertRegExp("/<div id=\"content\">posts index<\/div>/", $result);
- $this->assertTrue(isset($View->viewVars['content_for_layout']), 'content_for_layout should be a view var');
- $this->assertTrue(isset($View->viewVars['scripts_for_layout']), 'scripts_for_layout should be a view var');
- $this->PostsController->set('url', 'flash');
- $this->PostsController->set('message', 'yo what up');
- $this->PostsController->set('pause', 3);
- $this->PostsController->set('page_title', 'yo what up');
- $View = new TestView($this->PostsController);
- $result = str_replace(array("\t", "\r\n", "\n"), "", $View->render(false, 'flash'));
- $this->assertRegExp("/<title>yo what up<\/title>/", $result);
- $this->assertRegExp("/<p><a href=\"flash\">yo what up<\/a><\/p>/", $result);
- $this->assertTrue($View->render(false, 'flash'));
- $this->PostsController->helpers = array('Session', 'Cache', 'Html');
- $this->PostsController->constructClasses();
- $this->PostsController->cacheAction = array('index' => 3600);
- $this->PostsController->request->params['action'] = 'index';
- Configure::write('Cache.check', true);
- $View = new TestView($this->PostsController);
- $result = str_replace(array("\t", "\r\n", "\n"), "", $View->render('index'));
- $this->assertRegExp("/<meta http-equiv=\"Content-Type\" content=\"text\/html; charset=utf-8\" \/><title>/", $result);
- $this->assertRegExp("/<div id=\"content\">posts index<\/div>/", $result);
- $this->assertRegExp("/<div id=\"content\">posts index<\/div>/", $result);
- }
- /**
- * test that View::$view works
- *
- * @return void
- */
- public function testRenderUsingViewProperty() {
- $this->PostsController->view = 'cache_form';
- $View = new TestView($this->PostsController);
- $this->assertEquals('cache_form', $View->view);
- $result = $View->render();
- $this->assertRegExp('/Add User/', $result);
- }
- /**
- * test that view vars can replace the local helper variables
- * and not overwrite the $this->Helper references
- *
- * @return void
- */
- public function testViewVarOverwritingLocalHelperVar() {
- $Controller = new ViewPostsController();
- $Controller->helpers = array('Session', 'Html');
- $Controller->set('html', 'I am some test html');
- $View = new View($Controller);
- $result = $View->render('helper_overwrite', false);
- $this->assertRegExp('/I am some test html/', $result);
- $this->assertRegExp('/Test link/', $result);
- }
- /**
- * testGetViewFileName method
- *
- * @return void
- */
- public function testViewFileName() {
- $View = new TestView($this->PostsController);
- $result = $View->getViewFileName('index');
- $this->assertRegExp('/Posts(\/|\\\)index.ctp/', $result);
- $result = $View->getViewFileName('/Pages/home');
- $this->assertRegExp('/Pages(\/|\\\)home.ctp/', $result);
- $result = $View->getViewFileName('../Elements/test_element');
- $this->assertRegExp('/Elements(\/|\\\)test_element.ctp/', $result);
- $result = $View->getViewFileName('../Themed/TestTheme/Posts/index');
- $this->assertRegExp('/Themed(\/|\\\)TestTheme(\/|\\\)Posts(\/|\\\)index.ctp/', $result);
- $expected = CAKE . 'Test' . DS . 'test_app' . DS . 'View' . DS .'Posts' . DS .'index.ctp';
- $result = $View->getViewFileName('../Posts/index');
- $this->assertEquals($expected, $result);
- }
- /**
- * testRenderCache method
- *
- * @return void
- */
- public function testRenderCache() {
- $this->skipIf(!is_writable(CACHE . 'views' . DS), 'CACHE/views dir is not writable, cannot test renderCache.');
- $view = 'test_view';
- $View = new View($this->PostsController);
- $path = CACHE . 'views' . DS . 'view_cache_' . $view;
- $cacheText = '<!--cachetime:' . time() . '-->some cacheText';
- $f = fopen($path, 'w+');
- fwrite($f, $cacheText);
- fclose($f);
- $result = $View->renderCache($path, '+1 second');
- $this->assertFalse($result);
- if (file_exists($path)) {
- unlink($path);
- }
- $cacheText = '<!--cachetime:' . (time() + 10) . '-->some cacheText';
- $f = fopen($path, 'w+');
- fwrite($f, $cacheText);
- fclose($f);
- ob_start();
- $View->renderCache($path, '+1 second');
- $result = ob_get_clean();
- $expected = 'some cacheText';
- $this->assertRegExp('/^some cacheText/', $result);
- @unlink($path);
- }
- /**
- * Test that render() will remove the cake:nocache tags when only the cachehelper is present.
- *
- * @return void
- */
- public function testRenderStrippingNoCacheTagsOnlyCacheHelper() {
- Configure::write('Cache.check', false);
- $View = new View($this->PostsController);
- $View->set(array('superman' => 'clark', 'variable' => 'var'));
- $View->helpers = array('Html', 'Form', 'Cache');
- $View->layout = 'cache_layout';
- $result = $View->render('index');
- $this->assertNotRegExp('/cake:nocache/', $result);
- }
- /**
- * Test that render() will remove the cake:nocache tags when only the Cache.check is true.
- *
- * @return void
- */
- public function testRenderStrippingNoCacheTagsOnlyCacheCheck() {
- Configure::write('Cache.check', true);
- $View = new View($this->PostsController);
- $View->set(array('superman' => 'clark', 'variable' => 'var'));
- $View->helpers = array('Html', 'Form');
- $View->layout = 'cache_layout';
- $result = $View->render('index');
- $this->assertNotRegExp('/cake:nocache/', $result);
- }
- /**
- * testRenderNocache method
- *
- * @return void
- */
- /* This is a new test case for a pending enhancement
- public function testRenderNocache() {
- $this->PostsController->helpers = array('Cache', 'Html');
- $this->PostsController->constructClasses();
- $this->PostsController->cacheAction = 21600;
- $this->PostsController->here = '/posts/nocache_multiple_element';
- $this->PostsController->action = 'nocache_multiple_element';
- $this->PostsController->nocache_multiple_element();
- Configure::write('Cache.check', true);
- Configure::write('Cache.disable', false);
- $filename = CACHE . 'views' . DS . 'posts_nocache_multiple_element.php';
- $View = new TestView($this->PostsController);
- $View->render();
- ob_start();
- $View->renderCache($filename, getMicroTime());
- $result = ob_get_clean();
- @unlink($filename);
- $this->assertRegExp('/php echo \$foo;/', $result);
- $this->assertRegExp('/php echo \$bar;/', $result);
- $this->assertRegExp('/php \$barfoo = \'in sub2\';/', $result);
- $this->assertRegExp('/php echo \$barfoo;/', $result);
- $this->assertRegExp('/printing: "in sub2"/', $result);
- $this->assertRegExp('/php \$foobar = \'in sub1\';/', $result);
- $this->assertRegExp('/php echo \$foobar;/', $result);
- $this->assertRegExp('/printing: "in sub1"/', $result);
- }
- */
- /**
- * testSet method
- *
- * @return void
- */
- public function testSet() {
- $View = new TestView($this->PostsController);
- $View->viewVars = array();
- $View->set('somekey', 'someValue');
- $this->assertSame($View->viewVars, array('somekey' => 'someValue'));
- $this->assertSame($View->getVars(), array('somekey'));
- $View->viewVars = array();
- $keys = array('key1', 'key2');
- $values = array('value1', 'value2');
- $View->set($keys, $values);
- $this->assertSame($View->viewVars, array('key1' => 'value1', 'key2' => 'value2'));
- $this->assertSame($View->getVars(), array('key1', 'key2'));
- $this->assertSame($View->getVar('key1'), 'value1');
- $this->assertNull($View->getVar('key3'));
- $View->set(array('key3' => 'value3'));
- $this->assertSame($View->getVar('key3'), 'value3');
- $View->viewVars = array();
- $View->set(array(3 => 'three', 4 => 'four'));
- $View->set(array(1 => 'one', 2 => 'two'));
- $expected = array(3 => 'three', 4 => 'four', 1 => 'one', 2 => 'two');
- $this->assertEquals($View->viewVars, $expected);
- }
- /**
- * testBadExt method
- *
- * @expectedException MissingViewException
- * @return void
- */
- public function testBadExt() {
- $this->PostsController->action = 'something';
- $this->PostsController->ext = '.whatever';
- $View = new TestView($this->PostsController);
- $View->render('this_is_missing');
- $result = str_replace(array("\t", "\r\n", "\n"), "", ob_get_clean());
- }
- /**
- * testAltExt method
- *
- * @return void
- */
- public function testAltExt() {
- $this->PostsController->ext = '.alt';
- $View = new TestView($this->PostsController);
- $result = $View->render('alt_ext', false);
- $this->assertEquals($result, 'alt ext');
- }
- /**
- * testAltBadExt method
- *
- * @expectedException MissingViewException
- * @return void
- */
- public function testAltBadExt() {
- $View = new TestView($this->PostsController);
- $View->render('alt_ext');
- $result = str_replace(array("\t", "\r\n", "\n"), "", ob_get_clean());
- }
- /**
- * Test creating a block with capturing output.
- *
- * @return void
- */
- public function testBlockCapture() {
- $this->View->start('test');
- echo 'Block content';
- $this->View->end();
- $result = $this->View->fetch('test');
- $this->assertEquals('Block content', $result);
- }
- /**
- * Test appending to a block with capturing output.
- *
- * @return void
- */
- public function testBlockCaptureAppend() {
- $this->View->start('test');
- echo 'Block';
- $this->View->end();
- $this->View->append('test');
- echo ' content';
- $this->View->end();
- $result = $this->View->fetch('test');
- $this->assertEquals('Block content', $result);
- }
- /**
- * Test setting a block's content.
- *
- * @return void
- */
- public function testBlockSet() {
- $this->View->assign('test', 'Block content');
- $result = $this->View->fetch('test');
- $this->assertEquals('Block content', $result);
- }
- /**
- * Test appending to a block with append.
- *
- * @return void
- */
- public function testBlockAppend() {
- $this->View->assign('test', 'Block');
- $this->View->append('test', ' content');
- $result = $this->View->fetch('test');
- $this->assertEquals('Block content', $result);
- }
- /**
- * You should be able to append to undefined blocks.
- *
- * @return void
- */
- public function testBlockAppendUndefined() {
- $this->View->append('test', 'Unknown');
- $result = $this->View->fetch('test');
- $this->assertEquals('Unknown', $result);
- }
- /**
- * setting an array should cause an exception.
- *
- * @expectedException CakeException
- * @return void
- */
- public function testBlockSetArrayException() {
- $this->View->assign('test', array(1, 2, 3));
- }
- /**
- * Appending an array should cause an exception.
- *
- * @expectedException CakeException
- * @return void
- */
- public function testBlockAppendArrayException() {
- $this->View->append('test', array(1, 2, 3));
- }
- /**
- * Test getting block names
- *
- * @return void
- */
- public function testBlocks() {
- $this->View->append('test', 'one');
- $this->View->assign('test1', 'one');
- $this->assertEquals(array('test', 'test1'), $this->View->blocks());
- }
- /**
- * Test that blocks can be nested.
- *
- * @return void
- */
- public function testNestedBlocks() {
- $this->View->start('first');
- echo 'In first ';
- $this->View->start('second');
- echo 'In second';
- $this->View->end();
- echo 'In first';
- $this->View->end();
- $this->assertEquals('In first In first', $this->View->fetch('first'));
- $this->assertEquals('In second', $this->View->fetch('second'));
- }
- /**
- * Test that an exception gets thrown when you leave a block open at the end
- * of a view.
- *
- * @expectedException CakeException
- * @return void
- */
- public function testExceptionOnOpenBlock() {
- $this->View->render('open_block');
- }
- /**
- * Test nested extended views.
- *
- * @return void
- */
- public function testExtendNested() {
- $this->View->layout = false;
- $content = $this->View->render('nested_extends');
- $expected = <<<TEXT
- This is the second parent.
- This is the first parent.
- This is the first template.
- Sidebar Content.
- TEXT;
- $this->assertEquals($expected, $content);
- }
- /**
- * Test extend() in an element and a view.
- *
- * @return void
- */
- public function testExtendElement() {
- $this->View->layout = false;
- $content = $this->View->render('extend_element');
- $expected = <<<TEXT
- Parent View.
- View content.
- Parent Element.
- Element content.
- TEXT;
- $this->assertEquals($expected, $content);
- }
- }
|