| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 1.2.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\View;
- use Cake\Cache\Cache;
- use Cake\Controller\Controller;
- use Cake\Core\App;
- use Cake\Core\Configure;
- use Cake\Core\Plugin;
- use Cake\Event\Event;
- use Cake\Event\EventListenerInterface;
- use Cake\Http\ServerRequest;
- use Cake\Routing\Router;
- use Cake\TestSuite\TestCase;
- use Cake\View\Helper;
- use Cake\View\View;
- use TestApp\View\AppView;
- /**
- * ViewPostsController class
- */
- class ViewPostsController extends Controller
- {
- /**
- * name property
- *
- * @var string
- */
- public $name = 'Posts';
- /**
- * index method
- *
- * @return void
- */
- public function index()
- {
- $this->set([
- 'testData' => 'Some test data',
- 'test2' => 'more data',
- 'test3' => 'even more data',
- ]);
- }
- /**
- * 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');
- }
- }
- /**
- * ThemePostsController class
- */
- class ThemePostsController extends Controller
- {
- /**
- * 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'));
- }
- }
- /**
- * TestView class
- */
- class TestView extends AppView
- {
- public function initialize()
- {
- $this->loadHelper('Html', ['mykey' => 'myval']);
- }
- /**
- * getViewFileName method
- *
- * @param string $name Controller action to find template filename for
- * @return string Template filename
- */
- public function getViewFileName($name = null)
- {
- return $this->_getViewFileName($name);
- }
- /**
- * getLayoutFileName method
- *
- * @param string $name The name of the layout to find.
- * @return string Filename for layout file (.ctp).
- */
- public function getLayoutFileName($name = null)
- {
- return $this->_getLayoutFileName($name);
- }
- /**
- * paths method
- *
- * @param string $plugin Optional plugin name to scan for view files.
- * @param bool $cached Set to true to force a refresh of view paths.
- * @return array paths
- */
- public function paths($plugin = null, $cached = true)
- {
- return $this->_paths($plugin, $cached);
- }
- /**
- * Setter for extension.
- *
- * @param string $ext The extension
- * @return void
- */
- public function ext($ext)
- {
- $this->_ext = $ext;
- }
- }
- /**
- * TestBeforeAfterHelper class
- */
- class TestBeforeAfterHelper extends Helper
- {
- /**
- * property property
- *
- * @var string
- */
- public $property = '';
- /**
- * beforeLayout method
- *
- * @param string $viewFile View file name.
- * @return void
- */
- public function beforeLayout($viewFile)
- {
- $this->property = 'Valuation';
- }
- /**
- * afterLayout method
- *
- * @param string $layoutFile Layout file name.
- * @return void
- */
- public function afterLayout($layoutFile)
- {
- $this->_View->append('content', 'modified in the afterlife');
- }
- }
- /**
- * TestObjectWithToString
- *
- * An object with the magic method __toString() for testing with view blocks.
- */
- class TestObjectWithToString
- {
- /**
- * Return string value.
- *
- * @return string
- */
- public function __toString()
- {
- return "I'm ObjectWithToString";
- }
- }
- /**
- * TestObjectWithoutToString
- *
- * An object without the magic method __toString() for testing with view blocks.
- */
- class TestObjectWithoutToString
- {
- }
- /**
- * TestViewEventListenerInterface
- *
- * An event listener to test cakePHP events
- */
- class TestViewEventListenerInterface implements EventListenerInterface
- {
- /**
- * type of view before rendering has occurred
- *
- * @var string
- */
- public $beforeRenderViewType;
- /**
- * type of view after rendering has occurred
- *
- * @var string
- */
- public $afterRenderViewType;
- /**
- * implementedEvents method
- *
- * @return array
- */
- public function implementedEvents()
- {
- return [
- 'View.beforeRender' => 'beforeRender',
- 'View.afterRender' => 'afterRender'
- ];
- }
- /**
- * beforeRender method
- *
- * @param \Cake\Event\Event $event the event being sent
- * @return void
- */
- public function beforeRender(Event $event)
- {
- $this->beforeRenderViewType = $event->subject()->getCurrentType();
- }
- /**
- * afterRender method
- *
- * @param \Cake\Event\Event $event the event being sent
- * @return void
- */
- public function afterRender(Event $event)
- {
- $this->afterRenderViewType = $event->subject()->getCurrentType();
- }
- }
- /**
- * ViewTest class
- */
- class ViewTest extends TestCase
- {
- /**
- * Fixtures used in this test.
- *
- * @var array
- */
- public $fixtures = ['core.posts', 'core.users'];
- /**
- * @var \Cake\View\View
- */
- public $View;
- /**
- * @var ViewPostsController
- */
- public $PostsController;
- /**
- * setUp method
- *
- * @return void
- */
- public function setUp()
- {
- parent::setUp();
- $request = new ServerRequest();
- $this->Controller = new Controller($request);
- $this->PostsController = new ViewPostsController($request);
- $this->PostsController->index();
- $this->View = $this->PostsController->createView();
- $this->View->viewPath = 'Posts';
- $themeRequest = new ServerRequest('posts/index');
- $this->ThemeController = new Controller($themeRequest);
- $this->ThemePostsController = new ThemePostsController($themeRequest);
- $this->ThemePostsController->index();
- $this->ThemeView = $this->ThemePostsController->createView();
- $this->ThemeView->viewPath = 'Posts';
- Plugin::load(['TestPlugin', 'PluginJs', 'TestTheme', 'Company/TestPluginThree']);
- Configure::write('debug', true);
- }
- /**
- * tearDown method
- *
- * @return void
- */
- public function tearDown()
- {
- parent::tearDown();
- Plugin::unload();
- unset($this->View);
- unset($this->PostsController);
- unset($this->Controller);
- unset($this->ThemeView);
- unset($this->ThemePostsController);
- unset($this->ThemeController);
- }
- /**
- * Test getViewFileName method
- *
- * @return void
- */
- public function testGetTemplate()
- {
- $request = $this->getMockBuilder('Cake\Http\ServerRequest')->getMock();
- $response = $this->getMockBuilder('Cake\Http\Response')->getMock();
- $viewOptions = [
- 'plugin' => null,
- 'name' => 'Pages',
- 'viewPath' => 'Pages'
- ];
- $request->action = 'display';
- $request->params['pass'] = ['home'];
- $ThemeView = new TestView(null, null, null, $viewOptions);
- $ThemeView->theme = 'TestTheme';
- $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Pages' . DS . 'home.ctp';
- $result = $ThemeView->getViewFileName('home');
- $this->assertPathEquals($expected, $result);
- $expected = Plugin::path('TestTheme') . 'src' . DS . 'Template' . DS . 'Posts' . DS . 'index.ctp';
- $result = $ThemeView->getViewFileName('/Posts/index');
- $this->assertPathEquals($expected, $result);
- $expected = Plugin::path('TestTheme') . 'src' . DS . 'Template' . DS . 'Layout' . DS . 'default.ctp';
- $result = $ThemeView->getLayoutFileName();
- $this->assertPathEquals($expected, $result);
- $ThemeView->layoutPath = 'rss';
- $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Layout' . DS . 'rss' . DS . 'default.ctp';
- $result = $ThemeView->getLayoutFileName();
- $this->assertPathEquals($expected, $result);
- $ThemeView->layoutPath = 'Email' . DS . 'html';
- $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Layout' . DS . 'Email' . DS . 'html' . DS . 'default.ctp';
- $result = $ThemeView->getLayoutFileName();
- $this->assertPathEquals($expected, $result);
- $ThemeView = new TestView(null, null, null, $viewOptions);
- $ThemeView->theme = 'Company/TestPluginThree';
- $expected = Plugin::path('Company/TestPluginThree') . 'src' . DS . 'Template' . DS . 'Layout' . DS . 'default.ctp';
- $result = $ThemeView->getLayoutFileName();
- $this->assertPathEquals($expected, $result);
- }
- /**
- * Test getLayoutFileName method on plugin
- *
- * @return void
- */
- public function testPluginGetTemplate()
- {
- $viewOptions = ['plugin' => 'TestPlugin',
- 'name' => 'TestPlugin',
- 'viewPath' => 'Tests',
- 'view' => 'index'
- ];
- $View = new TestView(null, null, null, $viewOptions);
- $expected = Plugin::path('TestPlugin') . 'src' . DS . 'Template' . DS . 'Tests' . DS . 'index.ctp';
- $result = $View->getViewFileName('index');
- $this->assertEquals($expected, $result);
- $expected = Plugin::path('TestPlugin') . 'src' . DS . 'Template' . DS . 'Layout' . DS . 'default.ctp';
- $result = $View->getLayoutFileName();
- $this->assertEquals($expected, $result);
- }
- /**
- * Test that plugin files with absolute file paths are scoped
- * to the plugin and do now allow any file path.
- *
- * @return void
- */
- public function testPluginGetTemplateAbsoluteFail()
- {
- $this->expectException(\Cake\View\Exception\MissingTemplateException::class);
- $request = $this->getMockBuilder('Cake\Http\ServerRequest')->getMock();
- $response = $this->getMockBuilder('Cake\Http\Response')->getMock();
- $viewOptions = [
- 'plugin' => null,
- 'name' => 'Pages',
- 'viewPath' => 'Pages'
- ];
- $request->action = 'display';
- $request->params['pass'] = ['home'];
- $view = new TestView(null, null, null, $viewOptions);
- $expected = TEST_APP . 'Plugin' . DS . 'Company' . DS . 'TestPluginThree' . DS . 'src' . DS . 'Template' . DS . 'Pages' . DS . 'index.ctp';
- $result = $view->getViewFileName('Company/TestPluginThree./Pages/index');
- $this->assertPathEquals($expected, $result);
- $view->getViewFileName('Company/TestPluginThree./etc/passwd');
- }
- /**
- * Test getViewFileName method on plugin
- *
- * @return void
- */
- public function testPluginThemedGetTemplate()
- {
- $viewOptions = ['plugin' => 'TestPlugin',
- 'name' => 'TestPlugin',
- 'viewPath' => 'Tests',
- 'view' => 'index',
- 'theme' => 'TestTheme'
- ];
- $ThemeView = new TestView(null, null, null, $viewOptions);
- $themePath = Plugin::path('TestTheme') . 'src' . DS . 'Template' . DS;
- $expected = $themePath . 'Plugin' . DS . 'TestPlugin' . DS . 'Tests' . DS . 'index.ctp';
- $result = $ThemeView->getViewFileName('index');
- $this->assertPathEquals($expected, $result);
- $expected = $themePath . 'Plugin' . DS . 'TestPlugin' . DS . 'Layout' . DS . 'plugin_default.ctp';
- $result = $ThemeView->getLayoutFileName('plugin_default');
- $this->assertPathEquals($expected, $result);
- $expected = $themePath . 'Layout' . DS . 'default.ctp';
- $result = $ThemeView->getLayoutFileName('default');
- $this->assertPathEquals($expected, $result);
- }
- /**
- * Test that plugin/$plugin_name is only appended to the paths it should be.
- *
- * @return void
- */
- public function testPathPluginGeneration()
- {
- $viewOptions = ['plugin' => 'TestPlugin',
- 'name' => 'TestPlugin',
- 'viewPath' => 'Tests',
- 'view' => 'index'
- ];
- $View = new TestView(null, null, null, $viewOptions);
- $paths = $View->paths();
- $expected = array_merge(App::path('Template'), App::core('Template'));
- $this->assertEquals($expected, $paths);
- $paths = $View->paths('TestPlugin');
- $pluginPath = Plugin::path('TestPlugin');
- $expected = [
- TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Plugin' . DS . 'TestPlugin' . DS,
- $pluginPath . 'src' . DS . 'Template' . DS,
- TEST_APP . 'TestApp' . DS . 'Template' . DS,
- CAKE . 'Template' . DS,
- ];
- $this->assertPathEquals($expected, $paths);
- }
- /**
- * Test that themed plugin paths are generated correctly.
- *
- * @return void
- */
- public function testPathThemedPluginGeneration()
- {
- $viewOptions = ['plugin' => 'TestPlugin',
- 'name' => 'TestPlugin',
- 'viewPath' => 'Tests',
- 'view' => 'index',
- 'theme' => 'TestTheme'
- ];
- $View = new TestView(null, null, null, $viewOptions);
- $paths = $View->paths('TestPlugin');
- $pluginPath = Plugin::path('TestPlugin');
- $themePath = Plugin::path('TestTheme');
- $expected = [
- $themePath . 'src' . DS . 'Template' . DS . 'Plugin' . DS . 'TestPlugin' . DS,
- $themePath . 'src' . DS . 'Template' . DS,
- TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Plugin' . DS . 'TestPlugin' . DS,
- $pluginPath . 'src' . DS . 'Template' . DS,
- TEST_APP . 'TestApp' . DS . 'Template' . DS,
- CAKE . 'Template' . DS,
- ];
- $this->assertPathEquals($expected, $paths);
- }
- /**
- * Test that multiple paths can be used in App.paths.templates.
- *
- * @return void
- */
- public function testMultipleAppPaths()
- {
- $viewOptions = ['plugin' => 'TestPlugin',
- 'name' => 'TestPlugin',
- 'viewPath' => 'Tests',
- 'view' => 'index',
- 'theme' => 'TestTheme'
- ];
- $paths = Configure::read('App.paths.templates');
- $paths[] = Plugin::classPath('TestPlugin') . 'Template' . DS;
- Configure::write('App.paths.templates', $paths);
- $View = new TestView(null, null, null, $viewOptions);
- $paths = $View->paths('TestPlugin');
- $pluginPath = Plugin::path('TestPlugin');
- $themePath = Plugin::path('TestTheme');
- $expected = [
- $themePath . 'src' . DS . 'Template' . DS . 'Plugin' . DS . 'TestPlugin' . DS,
- $themePath . 'src' . DS . 'Template' . DS,
- TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Plugin' . DS . 'TestPlugin' . DS,
- $pluginPath . 'src' . DS . 'Template' . DS . 'Plugin' . DS . 'TestPlugin' . DS,
- $pluginPath . 'src' . DS . 'Template' . DS,
- TEST_APP . 'TestApp' . DS . 'Template' . DS,
- TEST_APP . 'Plugin' . DS . 'TestPlugin' . DS . 'src' . DS . 'Template' . DS,
- CAKE . 'Template' . DS,
- ];
- $this->assertPathEquals($expected, $paths);
- }
- /**
- * Test that CamelCase'd plugins still find their view files.
- *
- * @return void
- */
- public function testCamelCasePluginGetTemplate()
- {
- $viewOptions = ['plugin' => 'TestPlugin',
- 'name' => 'TestPlugin',
- 'viewPath' => 'Tests',
- 'view' => 'index'
- ];
- $View = new TestView(null, null, null, $viewOptions);
- $pluginPath = Plugin::path('TestPlugin');
- $expected = TEST_APP . 'Plugin' . DS . 'TestPlugin' . DS . 'src' . DS .
- 'Template' . DS . 'Tests' . DS . 'index.ctp';
- $result = $View->getViewFileName('index');
- $this->assertPathEquals($expected, $result);
- $expected = $pluginPath . 'src' . DS . 'Template' . DS . 'Layout' . DS . 'default.ctp';
- $result = $View->getLayoutFileName();
- $this->assertPathEquals($expected, $result);
- }
- /**
- * Test getViewFileName method
- *
- * @return void
- */
- public function testGetViewFileNames()
- {
- $viewOptions = [
- 'plugin' => null,
- 'name' => 'Pages',
- 'viewPath' => 'Pages'
- ];
- $request = $this->getMockBuilder('Cake\Http\ServerRequest')->getMock();
- $response = $this->getMockBuilder('Cake\Http\Response')->getMock();
- $View = new TestView(null, null, null, $viewOptions);
- $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Pages' . DS . 'home.ctp';
- $result = $View->getViewFileName('home');
- $this->assertPathEquals($expected, $result);
- $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Posts' . DS . 'index.ctp';
- $result = $View->getViewFileName('/Posts/index');
- $this->assertPathEquals($expected, $result);
- $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Posts' . DS . 'index.ctp';
- $result = $View->getViewFileName('../Posts/index');
- $this->assertPathEquals($expected, $result);
- $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Pages' . DS . 'page.home.ctp';
- $result = $View->getViewFileName('page.home');
- $this->assertPathEquals($expected, $result, 'Should not ruin files with dots.');
- Plugin::load('TestPlugin');
- $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Pages' . DS . 'home.ctp';
- $result = $View->getViewFileName('TestPlugin.home');
- $this->assertPathEquals($expected, $result, 'Plugin is missing the view, cascade to app.');
- $View->templatePath('Tests');
- $expected = TEST_APP . 'Plugin' . DS . 'TestPlugin' . DS . 'src' . DS .
- 'Template' . DS . 'Tests' . DS . 'index.ctp';
- $result = $View->getViewFileName('TestPlugin.index');
- $this->assertPathEquals($expected, $result);
- }
- /**
- * Test that getViewFileName() protects against malicious directory traversal.
- *
- * @return void
- */
- public function testGetViewFileNameDirectoryTraversal()
- {
- $this->expectException(\InvalidArgumentException::class);
- $viewOptions = [
- 'plugin' => null,
- 'name' => 'Pages',
- 'viewPath' => 'Pages',
- ];
- $request = $this->getMockBuilder('Cake\Http\ServerRequest')->getMock();
- $response = $this->getMockBuilder('Cake\Http\Response')->getMock();
- $view = new TestView(null, null, null, $viewOptions);
- $view->ext('.php');
- $view->getViewFileName('../../../../bootstrap');
- }
- /**
- * Test getViewFileName doesn't re-apply existing subdirectories
- *
- * @return void
- */
- public function testGetViewFileNameSubDir()
- {
- $viewOptions = [
- 'plugin' => null,
- 'name' => 'Posts',
- 'viewPath' => 'Posts/json',
- 'layoutPath' => 'json',
- ];
- $view = new TestView(null, null, null, $viewOptions);
- $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Posts' . DS . 'json' . DS . 'index.ctp';
- $result = $view->getViewFileName('index');
- $this->assertPathEquals($expected, $result);
- $view->subDir = 'json';
- $result = $view->getViewFileName('index');
- $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Posts' . DS . 'json' . DS . 'index.ctp';
- $this->assertPathEquals($expected, $result);
- }
- /**
- * Test getting layout filenames
- *
- * @return void
- */
- public function testGetLayoutFileName()
- {
- $viewOptions = ['plugin' => null,
- 'name' => 'Pages',
- 'viewPath' => 'Pages',
- 'action' => 'display'
- ];
- $View = new TestView(null, null, null, $viewOptions);
- $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Layout' . DS . 'default.ctp';
- $result = $View->getLayoutFileName();
- $this->assertPathEquals($expected, $result);
- $View->layoutPath = 'rss';
- $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Layout' . DS . 'rss' . DS . 'default.ctp';
- $result = $View->getLayoutFileName();
- $this->assertPathEquals($expected, $result);
- $View->layoutPath = 'Email' . DS . 'html';
- $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Layout' . DS . 'Email' . DS . 'html' . DS . 'default.ctp';
- $result = $View->getLayoutFileName();
- $this->assertPathEquals($expected, $result);
- }
- /**
- * Test getting layout filenames for plugins.
- *
- * @return void
- */
- public function testGetLayoutFileNamePlugin()
- {
- $viewOptions = ['plugin' => null,
- 'name' => 'Pages',
- 'viewPath' => 'Pages',
- 'action' => 'display'
- ];
- $View = new TestView(null, null, null, $viewOptions);
- Plugin::load('TestPlugin');
- $expected = TEST_APP . 'Plugin' . DS . 'TestPlugin' . DS . 'src' . DS .
- 'Template' . DS . 'Layout' . DS . 'default.ctp';
- $result = $View->getLayoutFileName('TestPlugin.default');
- $this->assertPathEquals($expected, $result);
- $View->plugin = 'TestPlugin';
- $expected = TEST_APP . 'Plugin' . DS . 'TestPlugin' . DS . 'src' . DS .
- 'Template' . DS . 'Layout' . DS . 'default.ctp';
- $result = $View->getLayoutFileName('default');
- $this->assertPathEquals($expected, $result);
- }
- /**
- * Test getting layout filenames for prefix
- *
- * @return void
- */
- public function testGetLayoutFileNamePrefix()
- {
- $View = new TestView();
- // Prefix specific layout
- $View->request->params['prefix'] = 'foo_prefix';
- $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS .
- 'FooPrefix' . DS . 'Layout' . DS . 'default.ctp';
- $result = $View->getLayoutFileName();
- $this->assertPathEquals($expected, $result);
- $View->request->params['prefix'] = 'FooPrefix';
- $result = $View->getLayoutFileName();
- $this->assertPathEquals($expected, $result);
- // Nested prefix layout
- $View->request->params['prefix'] = 'foo_prefix/bar_prefix';
- $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS .
- 'FooPrefix' . DS . 'BarPrefix' . DS . 'Layout' . DS . 'default.ctp';
- $result = $View->getLayoutFileName();
- $this->assertPathEquals($expected, $result);
- $View->request->params['prefix'] = 'foo_prefix/bar_prefix';
- $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS .
- 'FooPrefix' . DS . 'Layout' . DS . 'nested_prefix_cascade.ctp';
- $result = $View->getLayoutFileName('nested_prefix_cascade');
- $this->assertPathEquals($expected, $result);
- // Fallback to app's layout
- $View->request->params['prefix'] = 'Admin';
- $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS .
- 'Layout' . DS . 'default.ctp';
- $result = $View->getLayoutFileName();
- $this->assertPathEquals($expected, $result);
- }
- /**
- * Test that getLayoutFileName() protects against malicious directory traversal.
- *
- * @return void
- */
- public function testGetLayoutFileNameDirectoryTraversal()
- {
- $this->expectException(\InvalidArgumentException::class);
- $viewOptions = [
- 'plugin' => null,
- 'name' => 'Pages',
- 'viewPath' => 'Pages',
- ];
- $request = $this->getMockBuilder('Cake\Http\ServerRequest')->getMock();
- $response = $this->getMockBuilder('Cake\Http\Response')->getMock();
- $view = new TestView(null, null, null, $viewOptions);
- $view->ext('.php');
- $view->getLayoutFileName('../../../../bootstrap');
- }
- /**
- * Test for missing views
- *
- * @return void
- */
- public function testMissingTemplate()
- {
- $this->expectException(\Cake\View\Exception\MissingTemplateException::class);
- $viewOptions = ['plugin' => null,
- 'name' => 'Pages',
- 'viewPath' => 'Pages'
- ];
- $request = $this->getMockBuilder('Cake\Http\ServerRequest')->getMock();
- $response = $this->getMockBuilder('Cake\Http\Response')->getMock();
- $View = new TestView($request, $response, null, $viewOptions);
- $View->getViewFileName('does_not_exist');
- }
- /**
- * Test for missing layouts
- *
- * @return void
- */
- public function testMissingLayout()
- {
- $this->expectException(\Cake\View\Exception\MissingLayoutException::class);
- $viewOptions = ['plugin' => null,
- 'name' => 'Pages',
- 'viewPath' => 'Pages',
- 'layout' => 'whatever'
- ];
- $View = new TestView(null, null, null, $viewOptions);
- $View->getLayoutFileName();
- }
- /**
- * Test viewVars method
- *
- * @return void
- */
- public function testViewVars()
- {
- $this->assertEquals(['testData' => 'Some test data', 'test2' => 'more data', 'test3' => 'even more data'], $this->View->viewVars);
- }
- /**
- * Test generation of UUIDs method
- *
- * @return void
- */
- public function testUUIDGeneration()
- {
- Router::connect('/:controller', ['action' => 'index']);
- $result = $this->View->uuid('form', ['controller' => 'posts', 'action' => 'index']);
- $this->assertEquals('form5988016017', $result);
- $result = $this->View->uuid('form', ['controller' => 'posts', 'action' => 'index']);
- $this->assertEquals('formc3dc6be854', $result);
- $result = $this->View->uuid('form', ['controller' => 'posts', 'action' => 'index']);
- $this->assertEquals('form28f92cc87f', $result);
- }
- /**
- * Test elementExists method
- *
- * @return void
- */
- public function testElementExists()
- {
- $result = $this->View->elementExists('test_element');
- $this->assertTrue($result);
- $result = $this->View->elementExists('TestPlugin.plugin_element');
- $this->assertTrue($result);
- $result = $this->View->elementExists('non_existent_element');
- $this->assertFalse($result);
- $result = $this->View->elementExists('TestPlugin.element');
- $this->assertFalse($result);
- $this->View->plugin = 'TestPlugin';
- $result = $this->View->elementExists('plugin_element');
- $this->assertTrue($result);
- }
- /**
- * Test element method
- *
- * @return void
- */
- public function testElement()
- {
- $result = $this->View->element('test_element');
- $this->assertEquals('this is the test element', $result);
- $result = $this->View->element('TestPlugin.plugin_element');
- $this->assertEquals("Element in the TestPlugin\n", $result);
- $this->View->plugin = 'TestPlugin';
- $result = $this->View->element('plugin_element');
- $this->assertEquals("Element in the TestPlugin\n", $result);
- $result = $this->View->element('plugin_element', [], ['plugin' => false]);
- $this->assertEquals("Plugin element overridden in app\n", $result);
- }
- /**
- * Test element method with a prefix
- *
- * @return void
- */
- public function testPrefixElement()
- {
- $this->View->request->params['prefix'] = 'Admin';
- $result = $this->View->element('prefix_element');
- $this->assertEquals('this is a prefixed test element', $result);
- $result = $this->View->element('TestPlugin.plugin_element');
- $this->assertEquals('this is the plugin prefixed element using params[plugin]', $result);
- $this->View->plugin = 'TestPlugin';
- $result = $this->View->element('test_plugin_element');
- $this->assertEquals('this is the test set using View::$plugin plugin prefixed element', $result);
- $this->View->request->params['prefix'] = 'FooPrefix/BarPrefix';
- $result = $this->View->element('prefix_element');
- $this->assertEquals('this is a nested prefixed test element', $result);
- $this->View->request->params['prefix'] = 'FooPrefix/BarPrefix';
- $result = $this->View->element('prefix_element_in_parent');
- $this->assertEquals('this is a nested prefixed test element in first level element', $result);
- }
- /**
- * Test loading non-existent view element
- *
- * @return void
- */
- public function testElementNonExistent()
- {
- $this->expectException(\Cake\View\Exception\MissingElementException::class);
- $this->expectExceptionMessageRegExp('#^Element file "Element[\\\\/]non_existent_element\.ctp" is missing\.$#');
- $this->View->element('non_existent_element');
- }
- /**
- * Test loading non-existent plugin view element
- *
- * @return void
- */
- public function testElementInexistentPluginElement()
- {
- $this->expectException(\Cake\View\Exception\MissingElementException::class);
- $this->expectExceptionMessageRegExp('#^Element file "test_plugin\.Element[\\\\/]plugin_element\.ctp" is missing\.$#');
- $this->View->element('test_plugin.plugin_element');
- }
- /**
- * Test that elements can have callbacks
- *
- * @return void
- */
- public function testElementCallbacks()
- {
- $count = 0;
- $callback = function (Event $event, $file) use (&$count) {
- $count++;
- };
- $events = $this->View->getEventManager();
- $events->attach($callback, 'View.beforeRender');
- $events->attach($callback, 'View.afterRender');
- $this->View->element('test_element', [], ['callbacks' => true]);
- $this->assertEquals(2, $count);
- }
- /**
- * Test that additional element viewVars don't get overwritten with helpers.
- *
- * @return void
- */
- public function testElementParamsDontOverwriteHelpers()
- {
- $Controller = new ViewPostsController();
- $Controller->helpers = ['Form'];
- $View = $Controller->createView();
- $result = $View->element('type_check', ['form' => 'string'], ['callbacks' => true]);
- $this->assertEquals('string', $result);
- $View->set('form', 'string');
- $result = $View->element('type_check', [], ['callbacks' => true]);
- $this->assertEquals('string', $result);
- }
- /**
- * Test elementCacheHelperNoCache method
- *
- * @return void
- */
- public function testElementCacheHelperNoCache()
- {
- $Controller = new ViewPostsController();
- $View = $Controller->createView();
- $result = $View->element('test_element', ['ram' => 'val', 'test' => ['foo', 'bar']]);
- $this->assertEquals('this is the test element', $result);
- }
- /**
- * Test elementCache method
- *
- * @return void
- */
- public function testElementCache()
- {
- Cache::drop('test_view');
- Cache::config('test_view', [
- 'engine' => 'File',
- 'duration' => '+1 day',
- 'path' => CACHE . 'views/',
- 'prefix' => ''
- ]);
- Cache::clear(false, 'test_view');
- $View = $this->PostsController->createView();
- $View->elementCache = 'test_view';
- $result = $View->element('test_element', [], ['cache' => true]);
- $expected = 'this is the test element';
- $this->assertEquals($expected, $result);
- $result = Cache::read('element__test_element', 'test_view');
- $this->assertEquals($expected, $result);
- $result = $View->element('test_element', ['param' => 'one', 'foo' => 'two'], ['cache' => true]);
- $this->assertEquals($expected, $result);
- $result = Cache::read('element__test_element_param_foo', 'test_view');
- $this->assertEquals($expected, $result);
- $View->element('test_element', [
- 'param' => 'one',
- 'foo' => 'two'
- ], [
- 'cache' => ['key' => 'custom_key']
- ]);
- $result = Cache::read('element_custom_key', 'test_view');
- $this->assertEquals($expected, $result);
- $View->elementCache = 'default';
- $View->element('test_element', [
- 'param' => 'one',
- 'foo' => 'two'
- ], [
- 'cache' => ['config' => 'test_view'],
- ]);
- $result = Cache::read('element__test_element_param_foo', 'test_view');
- $this->assertEquals($expected, $result);
- Cache::clear(true, 'test_view');
- Cache::drop('test_view');
- }
- /**
- * Test element events
- *
- * @return void
- */
- public function testViewEvent()
- {
- $View = $this->PostsController->createView();
- $View->templatePath($this->PostsController->name);
- $View->autoLayout = false;
- $listener = new TestViewEventListenerInterface();
- $View->getEventManager()->attach($listener);
- $View->render('index');
- $this->assertEquals(View::TYPE_VIEW, $listener->beforeRenderViewType);
- $this->assertEquals(View::TYPE_VIEW, $listener->afterRenderViewType);
- $this->assertEquals($View->getCurrentType(), View::TYPE_VIEW);
- $View->element('test_element', [], ['callbacks' => true]);
- $this->assertEquals($View->getCurrentType(), View::TYPE_VIEW);
- $this->assertEquals(View::TYPE_ELEMENT, $listener->beforeRenderViewType);
- $this->assertEquals(View::TYPE_ELEMENT, $listener->afterRenderViewType);
- }
- /**
- * Test loading helper using loadHelper().
- *
- * @return void
- */
- public function testLoadHelper()
- {
- $View = new View();
- $View->loadHelper('Html', ['foo' => 'bar']);
- $this->assertInstanceOf('Cake\View\Helper\HtmlHelper', $View->Html);
- $config = $View->Html->config();
- $this->assertEquals('bar', $config['foo']);
- }
- /**
- * Test loading helper when duplicate.
- *
- * @return void
- */
- public function testLoadHelperDuplicate()
- {
- $View = new View();
- $this->assertNotEmpty($View->loadHelper('Html', ['foo' => 'bar']));
- try {
- $View->loadHelper('Html', ['test' => 'value']);
- $this->fail('No exception');
- } catch (\RuntimeException $e) {
- $this->assertContains('The "Html" alias has already been loaded', $e->getMessage());
- }
- }
- /**
- * Test loadHelpers method
- *
- * @return void
- */
- public function testLoadHelpers()
- {
- $View = new View();
- $View->helpers = ['Html' => ['foo' => 'bar'], 'Form' => ['foo' => 'baz']];
- $result = $View->loadHelpers();
- $this->assertSame($View, $result);
- $this->assertInstanceOf('Cake\View\Helper\HtmlHelper', $View->Html, 'Object type is wrong.');
- $this->assertInstanceOf('Cake\View\Helper\FormHelper', $View->Form, 'Object type is wrong.');
- $config = $View->Html->config();
- $this->assertEquals('bar', $config['foo']);
- $config = $View->Form->config();
- $this->assertEquals('baz', $config['foo']);
- }
- /**
- * Test lazy loading helpers
- *
- * @return void
- */
- public function testLazyLoadHelpers()
- {
- $View = new View();
- $View->helpers = [];
- $this->assertInstanceOf('Cake\View\Helper\HtmlHelper', $View->Html, 'Object type is wrong.');
- $this->assertInstanceOf('Cake\View\Helper\FormHelper', $View->Form, 'Object type is wrong.');
- }
- /**
- * Test manipulating class properties in initialize()
- *
- * @return void
- */
- public function testInitialize()
- {
- $View = new TestView();
- $config = $View->Html->config();
- $this->assertEquals('myval', $config['mykey']);
- }
- /**
- * Test the correct triggering of helper callbacks
- *
- * @return void
- */
- public function testHelperCallbackTriggering()
- {
- $View = $this->PostsController->createView();
- $View->templatePath($this->PostsController->name);
- $manager = $this->getMockBuilder('Cake\Event\EventManager')->getMock();
- $View->setEventManager($manager);
- $manager->expects($this->at(0))->method('dispatch')
- ->with(
- $this->logicalAnd(
- $this->isInstanceOf('Cake\Event\Event'),
- $this->attributeEqualTo('_name', 'View.beforeRender'),
- $this->attributeEqualTo('_subject', $View)
- )
- );
- $manager->expects($this->at(1))->method('dispatch')
- ->with(
- $this->logicalAnd(
- $this->isInstanceOf('Cake\Event\Event'),
- $this->attributeEqualTo('_name', 'View.beforeRenderFile'),
- $this->attributeEqualTo('_subject', $View)
- )
- );
- $manager->expects($this->at(2))->method('dispatch')
- ->with(
- $this->logicalAnd(
- $this->isInstanceOf('Cake\Event\Event'),
- $this->attributeEqualTo('_name', 'View.afterRenderFile'),
- $this->attributeEqualTo('_subject', $View)
- )
- );
- $manager->expects($this->at(3))->method('dispatch')
- ->with(
- $this->logicalAnd(
- $this->isInstanceOf('Cake\Event\Event'),
- $this->attributeEqualTo('_name', 'View.afterRender'),
- $this->attributeEqualTo('_subject', $View)
- )
- );
- $manager->expects($this->at(4))->method('dispatch')
- ->with(
- $this->logicalAnd(
- $this->isInstanceOf('Cake\Event\Event'),
- $this->attributeEqualTo('_name', 'View.beforeLayout'),
- $this->attributeEqualTo('_subject', $View)
- )
- );
- $manager->expects($this->at(5))->method('dispatch')
- ->with(
- $this->logicalAnd(
- $this->isInstanceOf('Cake\Event\Event'),
- $this->attributeEqualTo('_name', 'View.beforeRenderFile'),
- $this->attributeEqualTo('_subject', $View)
- )
- );
- $manager->expects($this->at(6))->method('dispatch')
- ->with(
- $this->logicalAnd(
- $this->isInstanceOf('Cake\Event\Event'),
- $this->attributeEqualTo('_name', 'View.afterRenderFile'),
- $this->attributeEqualTo('_subject', $View)
- )
- );
- $manager->expects($this->at(7))->method('dispatch')
- ->with(
- $this->logicalAnd(
- $this->isInstanceOf('Cake\Event\Event'),
- $this->attributeEqualTo('_name', 'View.afterLayout'),
- $this->attributeEqualTo('_subject', $View)
- )
- );
- $View->render('index');
- }
- /**
- * Test beforeLayout method
- *
- * @return void
- */
- public function testBeforeLayout()
- {
- $this->PostsController->helpers = [
- 'TestBeforeAfter' => ['className' => __NAMESPACE__ . '\TestBeforeAfterHelper'],
- 'Html'
- ];
- $View = $this->PostsController->createView();
- $View->templatePath($this->PostsController->name);
- $View->render('index');
- $this->assertEquals('Valuation', $View->helpers()->TestBeforeAfter->property);
- }
- /**
- * Test afterLayout method
- *
- * @return void
- */
- public function testAfterLayout()
- {
- $this->PostsController->helpers = [
- 'TestBeforeAfter' => ['className' => __NAMESPACE__ . '\TestBeforeAfterHelper'],
- 'Html'
- ];
- $this->PostsController->set('variable', 'values');
- $View = $this->PostsController->createView();
- $View->templatePath($this->PostsController->name);
- $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);
- }
- /**
- * Test renderLoadHelper method
- *
- * @return void
- */
- public function testRenderLoadHelper()
- {
- $this->PostsController->helpers = ['Form', 'Number'];
- $View = $this->PostsController->createView('Cake\Test\TestCase\View\TestView');
- $View->templatePath($this->PostsController->name);
- $result = $View->render('index', false);
- $this->assertEquals('posts index', $result);
- $attached = $View->helpers()->loaded();
- // HtmlHelper is loaded in TestView::initialize()
- $this->assertEquals(['Html', 'Form', 'Number'], $attached);
- $this->PostsController->helpers = ['Html', 'Form', 'Number', 'TestPlugin.PluggedHelper'];
- $View = $this->PostsController->createView('Cake\Test\TestCase\View\TestView');
- $View->templatePath($this->PostsController->name);
- $result = $View->render('index', false);
- $this->assertEquals('posts index', $result);
- $attached = $View->helpers()->loaded();
- $expected = ['Html', 'Form', 'Number', 'PluggedHelper'];
- $this->assertEquals($expected, $attached, 'Attached helpers are wrong.');
- }
- /**
- * Test render method
- *
- * @return void
- */
- public function testRender()
- {
- $View = $this->PostsController->createView('Cake\Test\TestCase\View\TestView');
- $View->templatePath($this->PostsController->name);
- $result = $View->render('index');
- $this->assertRegExp("/<meta charset=\"utf-8\"\/>\s*<title>/", $result);
- $this->assertRegExp("/<div id=\"content\">\s*posts index\s*<\/div>/", $result);
- $this->assertRegExp("/<div id=\"content\">\s*posts index\s*<\/div>/", $result);
- $View = $this->PostsController->createView('Cake\Test\TestCase\View\TestView');
- $result = $View->render(false, 'ajax2');
- $this->assertRegExp('/Ajax\!/', $result);
- $this->assertNull($View->render(false, 'ajax2'));
- $this->PostsController->helpers = ['Html'];
- $this->PostsController->request->params['action'] = 'index';
- Configure::write('Cache.check', true);
- $View = $this->PostsController->createView('Cake\Test\TestCase\View\TestView');
- $View->templatePath($this->PostsController->name);
- $result = $View->render('index');
- $this->assertRegExp("/<meta charset=\"utf-8\"\/>\s*<title>/", $result);
- $this->assertRegExp("/<div id=\"content\">\s*posts index\s*<\/div>/", $result);
- }
- /**
- * Test that View::$view works
- *
- * @return void
- */
- public function testRenderUsingViewProperty()
- {
- $View = $this->PostsController->createView('Cake\Test\TestCase\View\TestView');
- $View->templatePath($this->PostsController->name);
- $View->template('cache_form');
- $this->assertEquals('cache_form', $View->view);
- $result = $View->render();
- $this->assertRegExp('/Add User/', $result);
- }
- /**
- * Test that layout set from view file takes precedence over layout set
- * as argument to render().
- *
- * @return void
- */
- public function testRenderUsingLayoutArgument()
- {
- $error = new \PDOException();
- $error->queryString = 'this is sql string';
- $message = 'it works';
- $View = $this->PostsController->createView('Cake\Test\TestCase\View\TestView');
- $View->set(compact('error', 'message'));
- $View->viewPath = 'Error';
- $result = $View->render('pdo_error', 'error');
- $this->assertRegExp('/this is sql string/', $result);
- $this->assertRegExp('/it works/', $result);
- }
- /**
- * Test render()ing a file in a subdir from a custom viewPath
- * in a plugin.
- *
- * @return void
- */
- public function testGetViewFileNameSubdirWithPluginAndViewPath()
- {
- $this->PostsController->plugin = 'TestPlugin';
- $this->PostsController->name = 'Posts';
- $View = $this->PostsController->createView('Cake\Test\TestCase\View\TestView');
- $View->templatePath('Element');
- $pluginPath = TEST_APP . 'Plugin' . DS . 'TestPlugin' . DS;
- $result = $View->getViewFileName('sub_dir/sub_element');
- $expected = $pluginPath . 'src' . DS . 'Template' . DS . 'Element' . DS . 'sub_dir' . DS . 'sub_element.ctp';
- $this->assertPathEquals($expected, $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 = ['Html'];
- $Controller->set('html', 'I am some test html');
- $View = $Controller->createView();
- $View->templatePath($Controller->name);
- $result = $View->render('helper_overwrite', false);
- $this->assertRegExp('/I am some test html/', $result);
- $this->assertRegExp('/Test link/', $result);
- }
- /**
- * Test getViewFileName method
- *
- * @return void
- */
- public function testViewFileName()
- {
- $View = $this->PostsController->createView('Cake\Test\TestCase\View\TestView');
- $View->templatePath('Posts');
- $result = $View->getViewFileName('index');
- $this->assertRegExp('/Posts(\/|\\\)index.ctp/', $result);
- $result = $View->getViewFileName('TestPlugin.index');
- $this->assertRegExp('/Posts(\/|\\\)index.ctp/', $result);
- $result = $View->getViewFileName('/Pages/home');
- $this->assertRegExp('/Pages(\/|\\\)home.ctp/', $result);
- $result = $View->getViewFileName('../Element/test_element');
- $this->assertRegExp('/Element(\/|\\\)test_element.ctp/', $result);
- $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Posts' . DS . 'index.ctp';
- $result = $View->getViewFileName('../Posts/index');
- $this->assertPathEquals($expected, $result);
- }
- /**
- * Test creating a block with capturing output.
- *
- * @return void
- */
- public function testBlockCaptureOverwrite()
- {
- $result = $this->View->start('test');
- $this->assertSame($this->View, $result);
- echo 'Block content';
- $result = $this->View->end();
- $this->assertSame($this->View, $result);
- $this->View->start('test');
- echo 'New content';
- $this->View->end();
- $result = $this->View->fetch('test');
- $this->assertEquals('New content', $result);
- }
- /**
- * Test that blocks can be fetched inside a block with the same name
- *
- * @return void
- */
- public function testBlockExtend()
- {
- $this->View->start('test');
- echo 'Block content';
- $this->View->end();
- $this->View->start('test');
- echo $this->View->fetch('test');
- echo 'New content';
- $this->View->end();
- $result = $this->View->fetch('test');
- $this->assertEquals('Block contentNew content', $result);
- }
- /**
- * 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 testBlockAppendCapture()
- {
- $this->View->start('test');
- echo 'Content ';
- $this->View->end();
- $result = $this->View->append('test');
- $this->assertSame($this->View, $result);
- echo 'appended';
- $this->View->end();
- $result = $this->View->fetch('test');
- $this->assertEquals('Content appended', $result);
- }
- /**
- * Test setting a block's content.
- *
- * @return void
- */
- public function testBlockSet()
- {
- $result = $this->View->assign('test', 'Block content');
- $this->assertSame($this->View, $result);
- $result = $this->View->fetch('test');
- $this->assertEquals('Block content', $result);
- }
- /**
- * Test resetting a block's content.
- *
- * @return void
- */
- public function testBlockReset()
- {
- $this->View->assign('test', '');
- $result = $this->View->fetch('test', 'This should not be returned');
- $this->assertSame('', $result);
- }
- /**
- * Test resetting a block's content with reset.
- *
- * @return void
- */
- public function testBlockResetFunc()
- {
- $this->View->assign('test', 'Block content');
- $result = $this->View->fetch('test', 'This should not be returned');
- $this->assertSame('Block content', $result);
- $result = $this->View->reset('test');
- $this->assertSame($this->View, $result);
- $result = $this->View->fetch('test', 'This should not be returned');
- $this->assertSame('', $result);
- }
- /**
- * Test checking a block's existence.
- *
- * @return void
- */
- public function testBlockExist()
- {
- $this->assertFalse($this->View->exists('test'));
- $this->View->assign('test', 'Block content');
- $this->assertTrue($this->View->exists('test'));
- }
- /**
- * Test setting a block's content to null
- *
- * @return void
- */
- public function testBlockSetNull()
- {
- $this->View->assign('testWithNull', null);
- $result = $this->View->fetch('testWithNull');
- $this->assertSame('', $result);
- }
- /**
- * Test setting a block's content to an object with __toString magic method
- *
- * @return void
- */
- public function testBlockSetObjectWithToString()
- {
- $objectWithToString = new TestObjectWithToString();
- $this->View->assign('testWithObjectWithToString', $objectWithToString);
- $result = $this->View->fetch('testWithObjectWithToString');
- $this->assertSame("I'm ObjectWithToString", $result);
- }
- /**
- * Test setting a block's content to an object without __toString magic method
- *
- * This should produce a "Object of class TestObjectWithoutToString could not be converted to string" error
- * which gets thrown as a \PHPUnit\Framework\Error\Error Exception by PHPUnit.
- *
- * @return void
- */
- public function testBlockSetObjectWithoutToString()
- {
- $this->expectException(\PHPUnit\Framework\Error\Error::class);
- $objectWithToString = new TestObjectWithoutToString();
- $this->View->assign('testWithObjectWithoutToString', $objectWithToString);
- }
- /**
- * Test setting a block's content to a decimal
- *
- * @return void
- */
- public function testBlockSetDecimal()
- {
- $this->View->assign('testWithDecimal', 1.23456789);
- $result = $this->View->fetch('testWithDecimal');
- $this->assertEquals('1.23456789', $result);
- }
- /**
- * Data provider for block related tests.
- *
- * @return array
- */
- public static function blockValueProvider()
- {
- return [
- 'string' => ['A string value'],
- 'decimal' => [1.23456],
- 'object with __toString' => [new TestObjectWithToString()],
- ];
- }
- /**
- * Test appending to a block with append.
- *
- * @param mixed $value Value
- * @return void
- * @dataProvider blockValueProvider
- */
- public function testBlockAppend($value)
- {
- $this->View->assign('testBlock', 'Block');
- $this->View->append('testBlock', $value);
- $result = $this->View->fetch('testBlock');
- $this->assertSame('Block' . $value, $result);
- }
- /**
- * Test appending an object without __toString magic method to a block with append.
- *
- * This should produce a "Object of class TestObjectWithoutToString could not be converted to string" error
- * which gets thrown as a \PHPUnit\Framework\Error\Error Exception by PHPUnit.
- *
- * @return void
- */
- public function testBlockAppendObjectWithoutToString()
- {
- $this->expectException(\PHPUnit\Framework\Error\Error::class);
- $object = new TestObjectWithoutToString();
- $this->View->assign('testBlock', 'Block ');
- $this->View->append('testBlock', $object);
- }
- /**
- * Test prepending to a block with prepend.
- *
- * @param mixed $value Value
- * @return void
- * @dataProvider blockValueProvider
- */
- public function testBlockPrepend($value)
- {
- $this->View->assign('test', 'Block');
- $result = $this->View->prepend('test', $value);
- $this->assertSame($this->View, $result);
- $result = $this->View->fetch('test');
- $this->assertEquals($value . 'Block', $result);
- }
- /**
- * Test prepending an object without __toString magic method to a block with prepend.
- *
- * This should produce a "Object of class TestObjectWithoutToString could not be converted to string" error
- * which gets thrown as a \PHPUnit\Framework\Error\Error Exception by PHPUnit.
- *
- * @return void
- */
- public function testBlockPrependObjectWithoutToString()
- {
- $this->expectException(\PHPUnit\Framework\Error\Error::class);
- $object = new TestObjectWithoutToString();
- $this->View->assign('test', 'Block ');
- $this->View->prepend('test', $object);
- }
- /**
- * You should be able to append to undefined blocks.
- *
- * @return void
- */
- public function testBlockAppendUndefined()
- {
- $result = $this->View->append('test', 'Unknown');
- $this->assertSame($this->View, $result);
- $result = $this->View->fetch('test');
- $this->assertEquals('Unknown', $result);
- }
- /**
- * You should be able to prepend to undefined blocks.
- *
- * @return void
- */
- public function testBlockPrependUndefined()
- {
- $this->View->prepend('test', 'Unknown');
- $result = $this->View->fetch('test');
- $this->assertEquals('Unknown', $result);
- }
- /**
- * Test getting block names
- *
- * @return void
- */
- public function testBlocks()
- {
- $this->View->append('test', 'one');
- $this->View->assign('test1', 'one');
- $this->assertEquals(['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 starting the same block twice throws an exception
- *
- * @return void
- */
- public function testStartBlocksTwice()
- {
- try {
- $this->View->start('first');
- $this->View->start('first');
- $this->fail('No exception');
- } catch (\Cake\Core\Exception\Exception $e) {
- ob_end_clean();
- $this->assertTrue(true);
- }
- }
- /**
- * Test that an exception gets thrown when you leave a block open at the end
- * of a view.
- *
- * @return void
- */
- public function testExceptionOnOpenBlock()
- {
- try {
- $this->View->render('open_block');
- $this->fail('No exception');
- } catch (\LogicException $e) {
- ob_end_clean();
- $this->assertContains('The "no_close" block was left open', $e->getMessage());
- }
- }
- /**
- * 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);
- }
- /**
- * Make sure that extending the current view with itself causes an exception
- *
- * @return void
- */
- public function testExtendSelf()
- {
- try {
- $this->View->layout = false;
- $this->View->render('extend_self');
- $this->fail('No exception');
- } catch (\LogicException $e) {
- ob_end_clean();
- $this->assertContains('cannot have views extend themselves', $e->getMessage());
- }
- }
- /**
- * Make sure that extending in a loop causes an exception
- *
- * @return void
- */
- public function testExtendLoop()
- {
- try {
- $this->View->layout = false;
- $this->View->render('extend_loop');
- $this->fail('No exception');
- } catch (\LogicException $e) {
- ob_end_clean();
- $this->assertContains('cannot have views extend in a loop', $e->getMessage());
- }
- }
- /**
- * 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);
- }
- /**
- * Test extend() in an element and a view.
- *
- * @return void
- */
- public function testExtendPrefixElement()
- {
- $this->View->request->params['prefix'] = 'Admin';
- $this->View->layout = false;
- $content = $this->View->render('extend_element');
- $expected = <<<TEXT
- Parent View.
- View content.
- Parent Element.
- Prefix Element content.
- TEXT;
- $this->assertEquals($expected, $content);
- }
- /**
- * Extending an element which doesn't exist should throw a missing view exception
- *
- * @return void
- */
- public function testExtendMissingElement()
- {
- try {
- $this->View->layout = false;
- $this->View->render('extend_missing_element');
- $this->fail('No exception');
- } catch (\LogicException $e) {
- ob_end_clean();
- ob_end_clean();
- $this->assertContains('element', $e->getMessage());
- }
- }
- /**
- * Test extend() preceeded by an element()
- *
- * @return void
- */
- public function testExtendWithElementBeforeExtend()
- {
- $this->View->layout = false;
- $result = $this->View->render('extend_with_element');
- $expected = <<<TEXT
- Parent View.
- this is the test elementThe view
- TEXT;
- $this->assertEquals($expected, $result);
- }
- /**
- * Test extend() preceeded by an element()
- *
- * @return void
- */
- public function testExtendWithPrefixElementBeforeExtend()
- {
- $this->View->request->params['prefix'] = 'Admin';
- $this->View->layout = false;
- $result = $this->View->render('extend_with_element');
- $expected = <<<TEXT
- Parent View.
- this is the test prefix elementThe view
- TEXT;
- $this->assertEquals($expected, $result);
- }
- /**
- * Test memory leaks that existed in _paths at one point.
- *
- * @return void
- */
- public function testMemoryLeakInPaths()
- {
- $this->skipIf(env('CODECOVERAGE') == 1, 'Running coverage this causes this tests to fail sometimes.');
- $this->ThemeController->plugin = null;
- $this->ThemeController->name = 'Posts';
- $View = $this->ThemeController->createView();
- $View->templatePath('Posts');
- $View->layout = 'whatever';
- $View->theme = 'TestTheme';
- $View->element('test_element');
- $start = memory_get_usage();
- for ($i = 0; $i < 10; $i++) {
- $View->element('test_element');
- }
- $end = memory_get_usage();
- $this->assertLessThanOrEqual($start + 15000, $end);
- }
- /**
- * Tests that a view block uses default value when not assigned and uses assigned value when it is
- *
- * @return void
- */
- public function testBlockDefaultValue()
- {
- $default = 'Default';
- $result = $this->View->fetch('title', $default);
- $this->assertEquals($default, $result);
- $expected = 'My Title';
- $this->View->assign('title', $expected);
- $result = $this->View->fetch('title', $default);
- $this->assertEquals($expected, $result);
- }
- /**
- * Tests that a view variable uses default value when not assigned and uses assigned value when it is
- *
- * @return void
- */
- public function testViewVarDefaultValue()
- {
- $default = 'Default';
- $result = $this->View->get('title', $default);
- $this->assertEquals($default, $result);
- $expected = 'Back to the Future';
- $this->View->set('title', $expected);
- $result = $this->View->get('title', $default);
- $this->assertEquals($expected, $result);
- }
- /**
- * Test the helpers() method.
- *
- * @return void
- */
- public function testHelpers()
- {
- $this->assertInstanceOf('Cake\View\HelperRegistry', $this->View->helpers());
- $result = $this->View->helpers();
- $this->assertSame($result, $this->View->helpers());
- }
- /**
- * Test getTemplatePath() and setTemplatePath().
- *
- * @return void
- */
- public function testGetSetTemplatePath()
- {
- $result = $this->View->setTemplatePath('foo');
- $this->assertSame($this->View, $result);
- $templatePath = $this->View->getTemplatePath();
- $this->assertSame($templatePath, 'foo');
- }
- /**
- * Test getLayoutPath() and setLayoutPath().
- *
- * @return void
- */
- public function testGetSetLayoutPath()
- {
- $result = $this->View->setLayoutPath('foo');
- $this->assertSame($this->View, $result);
- $layoutPath = $this->View->getLayoutPath();
- $this->assertSame($layoutPath, 'foo');
- }
- /**
- * Test isAutoLayoutEnabled() and enableAutoLayout().
- *
- * @return void
- */
- public function testAutoLayout()
- {
- $result = $this->View->enableAutoLayout(false);
- $this->assertSame($this->View, $result);
- $autoLayout = $this->View->isAutoLayoutEnabled();
- $this->assertSame($autoLayout, false);
- $this->View->enableAutoLayout();
- $autoLayout = $this->View->isAutoLayoutEnabled();
- $this->assertSame($autoLayout, true);
- }
- /**
- * Test getTheme() and setTheme().
- *
- * @return void
- */
- public function testGetSetTheme()
- {
- $result = $this->View->setTheme('foo');
- $this->assertSame($this->View, $result);
- $theme = $this->View->getTheme();
- $this->assertSame($theme, 'foo');
- }
- /**
- * Test getTemplate() and setTemplate().
- *
- * @return void
- */
- public function testGetSetTemplate()
- {
- $result = $this->View->setTemplate('foo');
- $this->assertSame($this->View, $result);
- $template = $this->View->getTemplate();
- $this->assertSame($template, 'foo');
- }
- /**
- * Test setLayout() and getLayout().
- *
- * @return void
- */
- public function testGetSetLayout()
- {
- $result = $this->View->setLayout('foo');
- $this->assertSame($this->View, $result);
- $layout = $this->View->getLayout();
- $this->assertSame($layout, 'foo');
- }
- /**
- * Test magic getter and setter for removed properties.
- *
- * @return void
- */
- public function testMagicGetterSetter()
- {
- $View = $this->View;
- $View->view = 'myview';
- $this->assertEquals('myview', $View->template());
- $this->assertEquals('myview', $View->view);
- $View->viewPath = 'mypath';
- $this->assertEquals('mypath', $View->templatePath());
- $this->assertEquals('mypath', $View->templatePath);
- }
- }
|