ViewTest.php 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118
  1. <?php
  2. /**
  3. * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
  4. * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
  5. *
  6. * Licensed under The MIT License
  7. * For full copyright and license information, please see the LICENSE.txt
  8. * Redistributions of files must retain the above copyright notice
  9. *
  10. * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
  11. * @link https://cakephp.org CakePHP(tm) Project
  12. * @since 1.2.0
  13. * @license https://opensource.org/licenses/mit-license.php MIT License
  14. */
  15. namespace Cake\Test\TestCase\View;
  16. use Cake\Cache\Cache;
  17. use Cake\Controller\Controller;
  18. use Cake\Core\App;
  19. use Cake\Core\Configure;
  20. use Cake\Core\Plugin;
  21. use Cake\Event\Event;
  22. use Cake\Event\EventListenerInterface;
  23. use Cake\Http\ServerRequest;
  24. use Cake\Routing\Router;
  25. use Cake\TestSuite\TestCase;
  26. use Cake\View\Helper;
  27. use Cake\View\View;
  28. use TestApp\View\AppView;
  29. /**
  30. * ViewPostsController class
  31. */
  32. class ViewPostsController extends Controller
  33. {
  34. /**
  35. * name property
  36. *
  37. * @var string
  38. */
  39. public $name = 'Posts';
  40. /**
  41. * index method
  42. *
  43. * @return void
  44. */
  45. public function index()
  46. {
  47. $this->set([
  48. 'testData' => 'Some test data',
  49. 'test2' => 'more data',
  50. 'test3' => 'even more data',
  51. ]);
  52. }
  53. /**
  54. * nocache_tags_with_element method
  55. *
  56. * @return void
  57. */
  58. public function nocache_multiple_element()
  59. {
  60. $this->set('foo', 'this is foo var');
  61. $this->set('bar', 'this is bar var');
  62. }
  63. }
  64. /**
  65. * ThemePostsController class
  66. */
  67. class ThemePostsController extends Controller
  68. {
  69. /**
  70. * index method
  71. *
  72. * @return void
  73. */
  74. public function index()
  75. {
  76. $this->set('testData', 'Some test data');
  77. $test2 = 'more data';
  78. $test3 = 'even more data';
  79. $this->set(compact('test2', 'test3'));
  80. }
  81. }
  82. /**
  83. * TestView class
  84. */
  85. class TestView extends AppView
  86. {
  87. public function initialize()
  88. {
  89. $this->loadHelper('Html', ['mykey' => 'myval']);
  90. }
  91. /**
  92. * getViewFileName method
  93. *
  94. * @param string $name Controller action to find template filename for
  95. * @return string Template filename
  96. */
  97. public function getViewFileName($name = null)
  98. {
  99. return $this->_getViewFileName($name);
  100. }
  101. /**
  102. * getLayoutFileName method
  103. *
  104. * @param string $name The name of the layout to find.
  105. * @return string Filename for layout file (.ctp).
  106. */
  107. public function getLayoutFileName($name = null)
  108. {
  109. return $this->_getLayoutFileName($name);
  110. }
  111. /**
  112. * paths method
  113. *
  114. * @param string $plugin Optional plugin name to scan for view files.
  115. * @param bool $cached Set to true to force a refresh of view paths.
  116. * @return array paths
  117. */
  118. public function paths($plugin = null, $cached = true)
  119. {
  120. return $this->_paths($plugin, $cached);
  121. }
  122. /**
  123. * Setter for extension.
  124. *
  125. * @param string $ext The extension
  126. * @return void
  127. */
  128. public function ext($ext)
  129. {
  130. $this->_ext = $ext;
  131. }
  132. }
  133. /**
  134. * TestBeforeAfterHelper class
  135. */
  136. class TestBeforeAfterHelper extends Helper
  137. {
  138. /**
  139. * property property
  140. *
  141. * @var string
  142. */
  143. public $property = '';
  144. /**
  145. * beforeLayout method
  146. *
  147. * @param string $viewFile View file name.
  148. * @return void
  149. */
  150. public function beforeLayout($viewFile)
  151. {
  152. $this->property = 'Valuation';
  153. }
  154. /**
  155. * afterLayout method
  156. *
  157. * @param string $layoutFile Layout file name.
  158. * @return void
  159. */
  160. public function afterLayout($layoutFile)
  161. {
  162. $this->_View->append('content', 'modified in the afterlife');
  163. }
  164. }
  165. /**
  166. * TestObjectWithToString
  167. *
  168. * An object with the magic method __toString() for testing with view blocks.
  169. */
  170. class TestObjectWithToString
  171. {
  172. /**
  173. * Return string value.
  174. *
  175. * @return string
  176. */
  177. public function __toString()
  178. {
  179. return "I'm ObjectWithToString";
  180. }
  181. }
  182. /**
  183. * TestObjectWithoutToString
  184. *
  185. * An object without the magic method __toString() for testing with view blocks.
  186. */
  187. class TestObjectWithoutToString
  188. {
  189. }
  190. /**
  191. * TestViewEventListenerInterface
  192. *
  193. * An event listener to test cakePHP events
  194. */
  195. class TestViewEventListenerInterface implements EventListenerInterface
  196. {
  197. /**
  198. * type of view before rendering has occurred
  199. *
  200. * @var string
  201. */
  202. public $beforeRenderViewType;
  203. /**
  204. * type of view after rendering has occurred
  205. *
  206. * @var string
  207. */
  208. public $afterRenderViewType;
  209. /**
  210. * implementedEvents method
  211. *
  212. * @return array
  213. */
  214. public function implementedEvents()
  215. {
  216. return [
  217. 'View.beforeRender' => 'beforeRender',
  218. 'View.afterRender' => 'afterRender'
  219. ];
  220. }
  221. /**
  222. * beforeRender method
  223. *
  224. * @param \Cake\Event\Event $event the event being sent
  225. * @return void
  226. */
  227. public function beforeRender(Event $event)
  228. {
  229. $this->beforeRenderViewType = $event->subject()->getCurrentType();
  230. }
  231. /**
  232. * afterRender method
  233. *
  234. * @param \Cake\Event\Event $event the event being sent
  235. * @return void
  236. */
  237. public function afterRender(Event $event)
  238. {
  239. $this->afterRenderViewType = $event->subject()->getCurrentType();
  240. }
  241. }
  242. /**
  243. * ViewTest class
  244. */
  245. class ViewTest extends TestCase
  246. {
  247. /**
  248. * Fixtures used in this test.
  249. *
  250. * @var array
  251. */
  252. public $fixtures = ['core.posts', 'core.users'];
  253. /**
  254. * @var \Cake\View\View
  255. */
  256. public $View;
  257. /**
  258. * @var ViewPostsController
  259. */
  260. public $PostsController;
  261. /**
  262. * setUp method
  263. *
  264. * @return void
  265. */
  266. public function setUp()
  267. {
  268. parent::setUp();
  269. $request = new ServerRequest();
  270. $this->Controller = new Controller($request);
  271. $this->PostsController = new ViewPostsController($request);
  272. $this->PostsController->index();
  273. $this->View = $this->PostsController->createView();
  274. $this->View->viewPath = 'Posts';
  275. $themeRequest = new ServerRequest('posts/index');
  276. $this->ThemeController = new Controller($themeRequest);
  277. $this->ThemePostsController = new ThemePostsController($themeRequest);
  278. $this->ThemePostsController->index();
  279. $this->ThemeView = $this->ThemePostsController->createView();
  280. $this->ThemeView->viewPath = 'Posts';
  281. Plugin::load(['TestPlugin', 'PluginJs', 'TestTheme', 'Company/TestPluginThree']);
  282. Configure::write('debug', true);
  283. }
  284. /**
  285. * tearDown method
  286. *
  287. * @return void
  288. */
  289. public function tearDown()
  290. {
  291. parent::tearDown();
  292. Plugin::unload();
  293. unset($this->View);
  294. unset($this->PostsController);
  295. unset($this->Controller);
  296. unset($this->ThemeView);
  297. unset($this->ThemePostsController);
  298. unset($this->ThemeController);
  299. }
  300. /**
  301. * Test getViewFileName method
  302. *
  303. * @return void
  304. */
  305. public function testGetTemplate()
  306. {
  307. $request = $this->getMockBuilder('Cake\Http\ServerRequest')->getMock();
  308. $response = $this->getMockBuilder('Cake\Http\Response')->getMock();
  309. $viewOptions = [
  310. 'plugin' => null,
  311. 'name' => 'Pages',
  312. 'viewPath' => 'Pages'
  313. ];
  314. $request->action = 'display';
  315. $request->params['pass'] = ['home'];
  316. $ThemeView = new TestView(null, null, null, $viewOptions);
  317. $ThemeView->theme = 'TestTheme';
  318. $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Pages' . DS . 'home.ctp';
  319. $result = $ThemeView->getViewFileName('home');
  320. $this->assertPathEquals($expected, $result);
  321. $expected = Plugin::path('TestTheme') . 'src' . DS . 'Template' . DS . 'Posts' . DS . 'index.ctp';
  322. $result = $ThemeView->getViewFileName('/Posts/index');
  323. $this->assertPathEquals($expected, $result);
  324. $expected = Plugin::path('TestTheme') . 'src' . DS . 'Template' . DS . 'Layout' . DS . 'default.ctp';
  325. $result = $ThemeView->getLayoutFileName();
  326. $this->assertPathEquals($expected, $result);
  327. $ThemeView->layoutPath = 'rss';
  328. $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Layout' . DS . 'rss' . DS . 'default.ctp';
  329. $result = $ThemeView->getLayoutFileName();
  330. $this->assertPathEquals($expected, $result);
  331. $ThemeView->layoutPath = 'Email' . DS . 'html';
  332. $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Layout' . DS . 'Email' . DS . 'html' . DS . 'default.ctp';
  333. $result = $ThemeView->getLayoutFileName();
  334. $this->assertPathEquals($expected, $result);
  335. $ThemeView = new TestView(null, null, null, $viewOptions);
  336. $ThemeView->theme = 'Company/TestPluginThree';
  337. $expected = Plugin::path('Company/TestPluginThree') . 'src' . DS . 'Template' . DS . 'Layout' . DS . 'default.ctp';
  338. $result = $ThemeView->getLayoutFileName();
  339. $this->assertPathEquals($expected, $result);
  340. }
  341. /**
  342. * Test getLayoutFileName method on plugin
  343. *
  344. * @return void
  345. */
  346. public function testPluginGetTemplate()
  347. {
  348. $viewOptions = ['plugin' => 'TestPlugin',
  349. 'name' => 'TestPlugin',
  350. 'viewPath' => 'Tests',
  351. 'view' => 'index'
  352. ];
  353. $View = new TestView(null, null, null, $viewOptions);
  354. $expected = Plugin::path('TestPlugin') . 'src' . DS . 'Template' . DS . 'Tests' . DS . 'index.ctp';
  355. $result = $View->getViewFileName('index');
  356. $this->assertEquals($expected, $result);
  357. $expected = Plugin::path('TestPlugin') . 'src' . DS . 'Template' . DS . 'Layout' . DS . 'default.ctp';
  358. $result = $View->getLayoutFileName();
  359. $this->assertEquals($expected, $result);
  360. }
  361. /**
  362. * Test that plugin files with absolute file paths are scoped
  363. * to the plugin and do now allow any file path.
  364. *
  365. * @expectedException \Cake\View\Exception\MissingTemplateException
  366. * @return void
  367. */
  368. public function testPluginGetTemplateAbsoluteFail()
  369. {
  370. $request = $this->getMockBuilder('Cake\Http\ServerRequest')->getMock();
  371. $response = $this->getMockBuilder('Cake\Http\Response')->getMock();
  372. $viewOptions = [
  373. 'plugin' => null,
  374. 'name' => 'Pages',
  375. 'viewPath' => 'Pages'
  376. ];
  377. $request->action = 'display';
  378. $request->params['pass'] = ['home'];
  379. $view = new TestView(null, null, null, $viewOptions);
  380. $expected = TEST_APP . 'Plugin' . DS . 'Company' . DS . 'TestPluginThree' . DS . 'src' . DS . 'Template' . DS . 'Pages' . DS . 'index.ctp';
  381. $result = $view->getViewFileName('Company/TestPluginThree./Pages/index');
  382. $this->assertPathEquals($expected, $result);
  383. $view->getViewFileName('Company/TestPluginThree./etc/passwd');
  384. }
  385. /**
  386. * Test getViewFileName method on plugin
  387. *
  388. * @return void
  389. */
  390. public function testPluginThemedGetTemplate()
  391. {
  392. $viewOptions = ['plugin' => 'TestPlugin',
  393. 'name' => 'TestPlugin',
  394. 'viewPath' => 'Tests',
  395. 'view' => 'index',
  396. 'theme' => 'TestTheme'
  397. ];
  398. $ThemeView = new TestView(null, null, null, $viewOptions);
  399. $themePath = Plugin::path('TestTheme') . 'src' . DS . 'Template' . DS;
  400. $expected = $themePath . 'Plugin' . DS . 'TestPlugin' . DS . 'Tests' . DS . 'index.ctp';
  401. $result = $ThemeView->getViewFileName('index');
  402. $this->assertPathEquals($expected, $result);
  403. $expected = $themePath . 'Plugin' . DS . 'TestPlugin' . DS . 'Layout' . DS . 'plugin_default.ctp';
  404. $result = $ThemeView->getLayoutFileName('plugin_default');
  405. $this->assertPathEquals($expected, $result);
  406. $expected = $themePath . 'Layout' . DS . 'default.ctp';
  407. $result = $ThemeView->getLayoutFileName('default');
  408. $this->assertPathEquals($expected, $result);
  409. }
  410. /**
  411. * Test that plugin/$plugin_name is only appended to the paths it should be.
  412. *
  413. * @return void
  414. */
  415. public function testPathPluginGeneration()
  416. {
  417. $viewOptions = ['plugin' => 'TestPlugin',
  418. 'name' => 'TestPlugin',
  419. 'viewPath' => 'Tests',
  420. 'view' => 'index'
  421. ];
  422. $View = new TestView(null, null, null, $viewOptions);
  423. $paths = $View->paths();
  424. $expected = array_merge(App::path('Template'), App::core('Template'));
  425. $this->assertEquals($expected, $paths);
  426. $paths = $View->paths('TestPlugin');
  427. $pluginPath = Plugin::path('TestPlugin');
  428. $expected = [
  429. TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Plugin' . DS . 'TestPlugin' . DS,
  430. $pluginPath . 'src' . DS . 'Template' . DS,
  431. TEST_APP . 'TestApp' . DS . 'Template' . DS,
  432. CAKE . 'Template' . DS,
  433. ];
  434. $this->assertPathEquals($expected, $paths);
  435. }
  436. /**
  437. * Test that themed plugin paths are generated correctly.
  438. *
  439. * @return void
  440. */
  441. public function testPathThemedPluginGeneration()
  442. {
  443. $viewOptions = ['plugin' => 'TestPlugin',
  444. 'name' => 'TestPlugin',
  445. 'viewPath' => 'Tests',
  446. 'view' => 'index',
  447. 'theme' => 'TestTheme'
  448. ];
  449. $View = new TestView(null, null, null, $viewOptions);
  450. $paths = $View->paths('TestPlugin');
  451. $pluginPath = Plugin::path('TestPlugin');
  452. $themePath = Plugin::path('TestTheme');
  453. $expected = [
  454. $themePath . 'src' . DS . 'Template' . DS . 'Plugin' . DS . 'TestPlugin' . DS,
  455. $themePath . 'src' . DS . 'Template' . DS,
  456. TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Plugin' . DS . 'TestPlugin' . DS,
  457. $pluginPath . 'src' . DS . 'Template' . DS,
  458. TEST_APP . 'TestApp' . DS . 'Template' . DS,
  459. CAKE . 'Template' . DS,
  460. ];
  461. $this->assertPathEquals($expected, $paths);
  462. }
  463. /**
  464. * Test that multiple paths can be used in App.paths.templates.
  465. *
  466. * @return void
  467. */
  468. public function testMultipleAppPaths()
  469. {
  470. $viewOptions = ['plugin' => 'TestPlugin',
  471. 'name' => 'TestPlugin',
  472. 'viewPath' => 'Tests',
  473. 'view' => 'index',
  474. 'theme' => 'TestTheme'
  475. ];
  476. $paths = Configure::read('App.paths.templates');
  477. $paths[] = Plugin::classPath('TestPlugin') . 'Template' . DS;
  478. Configure::write('App.paths.templates', $paths);
  479. $View = new TestView(null, null, null, $viewOptions);
  480. $paths = $View->paths('TestPlugin');
  481. $pluginPath = Plugin::path('TestPlugin');
  482. $themePath = Plugin::path('TestTheme');
  483. $expected = [
  484. $themePath . 'src' . DS . 'Template' . DS . 'Plugin' . DS . 'TestPlugin' . DS,
  485. $themePath . 'src' . DS . 'Template' . DS,
  486. TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Plugin' . DS . 'TestPlugin' . DS,
  487. $pluginPath . 'src' . DS . 'Template' . DS . 'Plugin' . DS . 'TestPlugin' . DS,
  488. $pluginPath . 'src' . DS . 'Template' . DS,
  489. TEST_APP . 'TestApp' . DS . 'Template' . DS,
  490. TEST_APP . 'Plugin' . DS . 'TestPlugin' . DS . 'src' . DS . 'Template' . DS,
  491. CAKE . 'Template' . DS,
  492. ];
  493. $this->assertPathEquals($expected, $paths);
  494. }
  495. /**
  496. * Test that CamelCase'd plugins still find their view files.
  497. *
  498. * @return void
  499. */
  500. public function testCamelCasePluginGetTemplate()
  501. {
  502. $viewOptions = ['plugin' => 'TestPlugin',
  503. 'name' => 'TestPlugin',
  504. 'viewPath' => 'Tests',
  505. 'view' => 'index'
  506. ];
  507. $View = new TestView(null, null, null, $viewOptions);
  508. $pluginPath = Plugin::path('TestPlugin');
  509. $expected = TEST_APP . 'Plugin' . DS . 'TestPlugin' . DS . 'src' . DS .
  510. 'Template' . DS . 'Tests' . DS . 'index.ctp';
  511. $result = $View->getViewFileName('index');
  512. $this->assertPathEquals($expected, $result);
  513. $expected = $pluginPath . 'src' . DS . 'Template' . DS . 'Layout' . DS . 'default.ctp';
  514. $result = $View->getLayoutFileName();
  515. $this->assertPathEquals($expected, $result);
  516. }
  517. /**
  518. * Test getViewFileName method
  519. *
  520. * @return void
  521. */
  522. public function testGetViewFileNames()
  523. {
  524. $viewOptions = [
  525. 'plugin' => null,
  526. 'name' => 'Pages',
  527. 'viewPath' => 'Pages'
  528. ];
  529. $request = $this->getMockBuilder('Cake\Http\ServerRequest')->getMock();
  530. $response = $this->getMockBuilder('Cake\Http\Response')->getMock();
  531. $View = new TestView(null, null, null, $viewOptions);
  532. $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Pages' . DS . 'home.ctp';
  533. $result = $View->getViewFileName('home');
  534. $this->assertPathEquals($expected, $result);
  535. $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Posts' . DS . 'index.ctp';
  536. $result = $View->getViewFileName('/Posts/index');
  537. $this->assertPathEquals($expected, $result);
  538. $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Posts' . DS . 'index.ctp';
  539. $result = $View->getViewFileName('../Posts/index');
  540. $this->assertPathEquals($expected, $result);
  541. $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Pages' . DS . 'page.home.ctp';
  542. $result = $View->getViewFileName('page.home');
  543. $this->assertPathEquals($expected, $result, 'Should not ruin files with dots.');
  544. Plugin::load('TestPlugin');
  545. $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Pages' . DS . 'home.ctp';
  546. $result = $View->getViewFileName('TestPlugin.home');
  547. $this->assertPathEquals($expected, $result, 'Plugin is missing the view, cascade to app.');
  548. $View->templatePath('Tests');
  549. $expected = TEST_APP . 'Plugin' . DS . 'TestPlugin' . DS . 'src' . DS .
  550. 'Template' . DS . 'Tests' . DS . 'index.ctp';
  551. $result = $View->getViewFileName('TestPlugin.index');
  552. $this->assertPathEquals($expected, $result);
  553. }
  554. /**
  555. * Test that getViewFileName() protects against malicious directory traversal.
  556. *
  557. * @expectedException \InvalidArgumentException
  558. * @return void
  559. */
  560. public function testGetViewFileNameDirectoryTraversal()
  561. {
  562. $viewOptions = [
  563. 'plugin' => null,
  564. 'name' => 'Pages',
  565. 'viewPath' => 'Pages',
  566. ];
  567. $request = $this->getMockBuilder('Cake\Http\ServerRequest')->getMock();
  568. $response = $this->getMockBuilder('Cake\Http\Response')->getMock();
  569. $view = new TestView(null, null, null, $viewOptions);
  570. $view->ext('.php');
  571. $view->getViewFileName('../../../../bootstrap');
  572. }
  573. /**
  574. * Test getting layout filenames
  575. *
  576. * @return void
  577. */
  578. public function testGetLayoutFileName()
  579. {
  580. $viewOptions = ['plugin' => null,
  581. 'name' => 'Pages',
  582. 'viewPath' => 'Pages',
  583. 'action' => 'display'
  584. ];
  585. $View = new TestView(null, null, null, $viewOptions);
  586. $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Layout' . DS . 'default.ctp';
  587. $result = $View->getLayoutFileName();
  588. $this->assertPathEquals($expected, $result);
  589. $View->layoutPath = 'rss';
  590. $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Layout' . DS . 'rss' . DS . 'default.ctp';
  591. $result = $View->getLayoutFileName();
  592. $this->assertPathEquals($expected, $result);
  593. $View->layoutPath = 'Email' . DS . 'html';
  594. $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Layout' . DS . 'Email' . DS . 'html' . DS . 'default.ctp';
  595. $result = $View->getLayoutFileName();
  596. $this->assertPathEquals($expected, $result);
  597. }
  598. /**
  599. * Test getting layout filenames for plugins.
  600. *
  601. * @return void
  602. */
  603. public function testGetLayoutFileNamePlugin()
  604. {
  605. $viewOptions = ['plugin' => null,
  606. 'name' => 'Pages',
  607. 'viewPath' => 'Pages',
  608. 'action' => 'display'
  609. ];
  610. $View = new TestView(null, null, null, $viewOptions);
  611. Plugin::load('TestPlugin');
  612. $expected = TEST_APP . 'Plugin' . DS . 'TestPlugin' . DS . 'src' . DS .
  613. 'Template' . DS . 'Layout' . DS . 'default.ctp';
  614. $result = $View->getLayoutFileName('TestPlugin.default');
  615. $this->assertPathEquals($expected, $result);
  616. $View->plugin = 'TestPlugin';
  617. $expected = TEST_APP . 'Plugin' . DS . 'TestPlugin' . DS . 'src' . DS .
  618. 'Template' . DS . 'Layout' . DS . 'default.ctp';
  619. $result = $View->getLayoutFileName('default');
  620. $this->assertPathEquals($expected, $result);
  621. }
  622. /**
  623. * Test getting layout filenames for prefix
  624. *
  625. * @return void
  626. */
  627. public function testGetLayoutFileNamePrefix()
  628. {
  629. $View = new TestView();
  630. // Prefix specific layout
  631. $View->request->params['prefix'] = 'foo_prefix';
  632. $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS .
  633. 'FooPrefix' . DS . 'Layout' . DS . 'default.ctp';
  634. $result = $View->getLayoutFileName();
  635. $this->assertPathEquals($expected, $result);
  636. $View->request->params['prefix'] = 'FooPrefix';
  637. $result = $View->getLayoutFileName();
  638. $this->assertPathEquals($expected, $result);
  639. // Nested prefix layout
  640. $View->request->params['prefix'] = 'foo_prefix/bar_prefix';
  641. $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS .
  642. 'FooPrefix' . DS . 'BarPrefix' . DS . 'Layout' . DS . 'default.ctp';
  643. $result = $View->getLayoutFileName();
  644. $this->assertPathEquals($expected, $result);
  645. $View->request->params['prefix'] = 'foo_prefix/bar_prefix';
  646. $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS .
  647. 'FooPrefix' . DS . 'Layout' . DS . 'nested_prefix_cascade.ctp';
  648. $result = $View->getLayoutFileName('nested_prefix_cascade');
  649. $this->assertPathEquals($expected, $result);
  650. // Fallback to app's layout
  651. $View->request->params['prefix'] = 'Admin';
  652. $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS .
  653. 'Layout' . DS . 'default.ctp';
  654. $result = $View->getLayoutFileName();
  655. $this->assertPathEquals($expected, $result);
  656. }
  657. /**
  658. * Test that getLayoutFileName() protects against malicious directory traversal.
  659. *
  660. * @expectedException \InvalidArgumentException
  661. * @return void
  662. */
  663. public function testGetLayoutFileNameDirectoryTraversal()
  664. {
  665. $viewOptions = [
  666. 'plugin' => null,
  667. 'name' => 'Pages',
  668. 'viewPath' => 'Pages',
  669. ];
  670. $request = $this->getMockBuilder('Cake\Http\ServerRequest')->getMock();
  671. $response = $this->getMockBuilder('Cake\Http\Response')->getMock();
  672. $view = new TestView(null, null, null, $viewOptions);
  673. $view->ext('.php');
  674. $view->getLayoutFileName('../../../../bootstrap');
  675. }
  676. /**
  677. * Test for missing views
  678. *
  679. * @expectedException \Cake\View\Exception\MissingTemplateException
  680. * @return void
  681. */
  682. public function testMissingTemplate()
  683. {
  684. $viewOptions = ['plugin' => null,
  685. 'name' => 'Pages',
  686. 'viewPath' => 'Pages'
  687. ];
  688. $request = $this->getMockBuilder('Cake\Http\ServerRequest')->getMock();
  689. $response = $this->getMockBuilder('Cake\Http\Response')->getMock();
  690. $View = new TestView($request, $response, null, $viewOptions);
  691. $View->getViewFileName('does_not_exist');
  692. }
  693. /**
  694. * Test for missing layouts
  695. *
  696. * @expectedException \Cake\View\Exception\MissingLayoutException
  697. * @return void
  698. */
  699. public function testMissingLayout()
  700. {
  701. $viewOptions = ['plugin' => null,
  702. 'name' => 'Pages',
  703. 'viewPath' => 'Pages',
  704. 'layout' => 'whatever'
  705. ];
  706. $View = new TestView(null, null, null, $viewOptions);
  707. $View->getLayoutFileName();
  708. }
  709. /**
  710. * Test viewVars method
  711. *
  712. * @return void
  713. */
  714. public function testViewVars()
  715. {
  716. $this->assertEquals(['testData' => 'Some test data', 'test2' => 'more data', 'test3' => 'even more data'], $this->View->viewVars);
  717. }
  718. /**
  719. * Test generation of UUIDs method
  720. *
  721. * @return void
  722. */
  723. public function testUUIDGeneration()
  724. {
  725. Router::connect('/:controller', ['action' => 'index']);
  726. $result = $this->View->uuid('form', ['controller' => 'posts', 'action' => 'index']);
  727. $this->assertEquals('form5988016017', $result);
  728. $result = $this->View->uuid('form', ['controller' => 'posts', 'action' => 'index']);
  729. $this->assertEquals('formc3dc6be854', $result);
  730. $result = $this->View->uuid('form', ['controller' => 'posts', 'action' => 'index']);
  731. $this->assertEquals('form28f92cc87f', $result);
  732. }
  733. /**
  734. * Test elementExists method
  735. *
  736. * @return void
  737. */
  738. public function testElementExists()
  739. {
  740. $result = $this->View->elementExists('test_element');
  741. $this->assertTrue($result);
  742. $result = $this->View->elementExists('TestPlugin.plugin_element');
  743. $this->assertTrue($result);
  744. $result = $this->View->elementExists('non_existent_element');
  745. $this->assertFalse($result);
  746. $result = $this->View->elementExists('TestPlugin.element');
  747. $this->assertFalse($result);
  748. $this->View->plugin = 'TestPlugin';
  749. $result = $this->View->elementExists('plugin_element');
  750. $this->assertTrue($result);
  751. }
  752. /**
  753. * Test element method
  754. *
  755. * @return void
  756. */
  757. public function testElement()
  758. {
  759. $result = $this->View->element('test_element');
  760. $this->assertEquals('this is the test element', $result);
  761. $result = $this->View->element('TestPlugin.plugin_element');
  762. $this->assertEquals("Element in the TestPlugin\n", $result);
  763. $this->View->plugin = 'TestPlugin';
  764. $result = $this->View->element('plugin_element');
  765. $this->assertEquals("Element in the TestPlugin\n", $result);
  766. $result = $this->View->element('plugin_element', [], ['plugin' => false]);
  767. $this->assertEquals("Plugin element overridden in app\n", $result);
  768. }
  769. /**
  770. * Test element method with a prefix
  771. *
  772. * @return void
  773. */
  774. public function testPrefixElement()
  775. {
  776. $this->View->request->params['prefix'] = 'Admin';
  777. $result = $this->View->element('prefix_element');
  778. $this->assertEquals('this is a prefixed test element', $result);
  779. $result = $this->View->element('TestPlugin.plugin_element');
  780. $this->assertEquals('this is the plugin prefixed element using params[plugin]', $result);
  781. $this->View->plugin = 'TestPlugin';
  782. $result = $this->View->element('test_plugin_element');
  783. $this->assertEquals('this is the test set using View::$plugin plugin prefixed element', $result);
  784. $this->View->request->params['prefix'] = 'FooPrefix/BarPrefix';
  785. $result = $this->View->element('prefix_element');
  786. $this->assertEquals('this is a nested prefixed test element', $result);
  787. $this->View->request->params['prefix'] = 'FooPrefix/BarPrefix';
  788. $result = $this->View->element('prefix_element_in_parent');
  789. $this->assertEquals('this is a nested prefixed test element in first level element', $result);
  790. }
  791. /**
  792. * Test loading non-existent view element
  793. *
  794. * @expectedException \Cake\View\Exception\MissingElementException
  795. * @expectedExceptionMessageRegExp $Element file \"Element[\\|/]non_existent_element\.ctp\" is missing$
  796. * @return void
  797. */
  798. public function testElementNonExistent()
  799. {
  800. $this->View->element('non_existent_element');
  801. }
  802. /**
  803. * Test loading non-existent plugin view element
  804. *
  805. * @expectedException \Cake\View\Exception\MissingElementException
  806. * @expectedExceptionMessageRegExp $Element file "test_plugin\.Element[\\|/]plugin_element\.ctp\" is missing$
  807. * @return void
  808. */
  809. public function testElementInexistentPluginElement()
  810. {
  811. $this->View->element('test_plugin.plugin_element');
  812. }
  813. /**
  814. * Test that elements can have callbacks
  815. *
  816. * @return void
  817. */
  818. public function testElementCallbacks()
  819. {
  820. $count = 0;
  821. $callback = function (Event $event, $file) use (&$count) {
  822. $count++;
  823. };
  824. $events = $this->View->getEventManager();
  825. $events->attach($callback, 'View.beforeRender');
  826. $events->attach($callback, 'View.afterRender');
  827. $this->View->element('test_element', [], ['callbacks' => true]);
  828. $this->assertEquals(2, $count);
  829. }
  830. /**
  831. * Test that additional element viewVars don't get overwritten with helpers.
  832. *
  833. * @return void
  834. */
  835. public function testElementParamsDontOverwriteHelpers()
  836. {
  837. $Controller = new ViewPostsController();
  838. $Controller->helpers = ['Form'];
  839. $View = $Controller->createView();
  840. $result = $View->element('type_check', ['form' => 'string'], ['callbacks' => true]);
  841. $this->assertEquals('string', $result);
  842. $View->set('form', 'string');
  843. $result = $View->element('type_check', [], ['callbacks' => true]);
  844. $this->assertEquals('string', $result);
  845. }
  846. /**
  847. * Test elementCacheHelperNoCache method
  848. *
  849. * @return void
  850. */
  851. public function testElementCacheHelperNoCache()
  852. {
  853. $Controller = new ViewPostsController();
  854. $View = $Controller->createView();
  855. $result = $View->element('test_element', ['ram' => 'val', 'test' => ['foo', 'bar']]);
  856. $this->assertEquals('this is the test element', $result);
  857. }
  858. /**
  859. * Test elementCache method
  860. *
  861. * @return void
  862. */
  863. public function testElementCache()
  864. {
  865. Cache::drop('test_view');
  866. Cache::config('test_view', [
  867. 'engine' => 'File',
  868. 'duration' => '+1 day',
  869. 'path' => CACHE . 'views/',
  870. 'prefix' => ''
  871. ]);
  872. Cache::clear(false, 'test_view');
  873. $View = $this->PostsController->createView();
  874. $View->elementCache = 'test_view';
  875. $result = $View->element('test_element', [], ['cache' => true]);
  876. $expected = 'this is the test element';
  877. $this->assertEquals($expected, $result);
  878. $result = Cache::read('element__test_element', 'test_view');
  879. $this->assertEquals($expected, $result);
  880. $result = $View->element('test_element', ['param' => 'one', 'foo' => 'two'], ['cache' => true]);
  881. $this->assertEquals($expected, $result);
  882. $result = Cache::read('element__test_element_param_foo', 'test_view');
  883. $this->assertEquals($expected, $result);
  884. $View->element('test_element', [
  885. 'param' => 'one',
  886. 'foo' => 'two'
  887. ], [
  888. 'cache' => ['key' => 'custom_key']
  889. ]);
  890. $result = Cache::read('element_custom_key', 'test_view');
  891. $this->assertEquals($expected, $result);
  892. $View->elementCache = 'default';
  893. $View->element('test_element', [
  894. 'param' => 'one',
  895. 'foo' => 'two'
  896. ], [
  897. 'cache' => ['config' => 'test_view'],
  898. ]);
  899. $result = Cache::read('element__test_element_param_foo', 'test_view');
  900. $this->assertEquals($expected, $result);
  901. Cache::clear(true, 'test_view');
  902. Cache::drop('test_view');
  903. }
  904. /**
  905. * Test element events
  906. *
  907. * @return void
  908. */
  909. public function testViewEvent()
  910. {
  911. $View = $this->PostsController->createView();
  912. $View->templatePath($this->PostsController->name);
  913. $View->autoLayout = false;
  914. $listener = new TestViewEventListenerInterface();
  915. $View->getEventManager()->attach($listener);
  916. $View->render('index');
  917. $this->assertEquals(View::TYPE_VIEW, $listener->beforeRenderViewType);
  918. $this->assertEquals(View::TYPE_VIEW, $listener->afterRenderViewType);
  919. $this->assertEquals($View->getCurrentType(), View::TYPE_VIEW);
  920. $View->element('test_element', [], ['callbacks' => true]);
  921. $this->assertEquals($View->getCurrentType(), View::TYPE_VIEW);
  922. $this->assertEquals(View::TYPE_ELEMENT, $listener->beforeRenderViewType);
  923. $this->assertEquals(View::TYPE_ELEMENT, $listener->afterRenderViewType);
  924. }
  925. /**
  926. * Test loading helper using loadHelper().
  927. *
  928. * @return void
  929. */
  930. public function testLoadHelper()
  931. {
  932. $View = new View();
  933. $View->loadHelper('Html', ['foo' => 'bar']);
  934. $this->assertInstanceOf('Cake\View\Helper\HtmlHelper', $View->Html);
  935. $config = $View->Html->config();
  936. $this->assertEquals('bar', $config['foo']);
  937. }
  938. /**
  939. * Test loading helper when duplicate.
  940. *
  941. * @return void
  942. */
  943. public function testLoadHelperDuplicate()
  944. {
  945. $View = new View();
  946. $this->assertNotEmpty($View->loadHelper('Html', ['foo' => 'bar']));
  947. try {
  948. $View->loadHelper('Html', ['test' => 'value']);
  949. $this->fail('No exception');
  950. } catch (\RuntimeException $e) {
  951. $this->assertContains('The "Html" alias has already been loaded', $e->getMessage());
  952. }
  953. }
  954. /**
  955. * Test loadHelpers method
  956. *
  957. * @return void
  958. */
  959. public function testLoadHelpers()
  960. {
  961. $View = new View();
  962. $View->helpers = ['Html' => ['foo' => 'bar'], 'Form' => ['foo' => 'baz']];
  963. $result = $View->loadHelpers();
  964. $this->assertSame($View, $result);
  965. $this->assertInstanceOf('Cake\View\Helper\HtmlHelper', $View->Html, 'Object type is wrong.');
  966. $this->assertInstanceOf('Cake\View\Helper\FormHelper', $View->Form, 'Object type is wrong.');
  967. $config = $View->Html->config();
  968. $this->assertEquals('bar', $config['foo']);
  969. $config = $View->Form->config();
  970. $this->assertEquals('baz', $config['foo']);
  971. }
  972. /**
  973. * Test lazy loading helpers
  974. *
  975. * @return void
  976. */
  977. public function testLazyLoadHelpers()
  978. {
  979. $View = new View();
  980. $View->helpers = [];
  981. $this->assertInstanceOf('Cake\View\Helper\HtmlHelper', $View->Html, 'Object type is wrong.');
  982. $this->assertInstanceOf('Cake\View\Helper\FormHelper', $View->Form, 'Object type is wrong.');
  983. }
  984. /**
  985. * Test manipulating class properties in initialize()
  986. *
  987. * @return void
  988. */
  989. public function testInitialize()
  990. {
  991. $View = new TestView();
  992. $config = $View->Html->config();
  993. $this->assertEquals('myval', $config['mykey']);
  994. }
  995. /**
  996. * Test the correct triggering of helper callbacks
  997. *
  998. * @return void
  999. */
  1000. public function testHelperCallbackTriggering()
  1001. {
  1002. $View = $this->PostsController->createView();
  1003. $View->templatePath($this->PostsController->name);
  1004. $manager = $this->getMockBuilder('Cake\Event\EventManager')->getMock();
  1005. $View->setEventManager($manager);
  1006. $manager->expects($this->at(0))->method('dispatch')
  1007. ->with(
  1008. $this->logicalAnd(
  1009. $this->isInstanceOf('Cake\Event\Event'),
  1010. $this->attributeEqualTo('_name', 'View.beforeRender'),
  1011. $this->attributeEqualTo('_subject', $View)
  1012. )
  1013. );
  1014. $manager->expects($this->at(1))->method('dispatch')
  1015. ->with(
  1016. $this->logicalAnd(
  1017. $this->isInstanceOf('Cake\Event\Event'),
  1018. $this->attributeEqualTo('_name', 'View.beforeRenderFile'),
  1019. $this->attributeEqualTo('_subject', $View)
  1020. )
  1021. );
  1022. $manager->expects($this->at(2))->method('dispatch')
  1023. ->with(
  1024. $this->logicalAnd(
  1025. $this->isInstanceOf('Cake\Event\Event'),
  1026. $this->attributeEqualTo('_name', 'View.afterRenderFile'),
  1027. $this->attributeEqualTo('_subject', $View)
  1028. )
  1029. );
  1030. $manager->expects($this->at(3))->method('dispatch')
  1031. ->with(
  1032. $this->logicalAnd(
  1033. $this->isInstanceOf('Cake\Event\Event'),
  1034. $this->attributeEqualTo('_name', 'View.afterRender'),
  1035. $this->attributeEqualTo('_subject', $View)
  1036. )
  1037. );
  1038. $manager->expects($this->at(4))->method('dispatch')
  1039. ->with(
  1040. $this->logicalAnd(
  1041. $this->isInstanceOf('Cake\Event\Event'),
  1042. $this->attributeEqualTo('_name', 'View.beforeLayout'),
  1043. $this->attributeEqualTo('_subject', $View)
  1044. )
  1045. );
  1046. $manager->expects($this->at(5))->method('dispatch')
  1047. ->with(
  1048. $this->logicalAnd(
  1049. $this->isInstanceOf('Cake\Event\Event'),
  1050. $this->attributeEqualTo('_name', 'View.beforeRenderFile'),
  1051. $this->attributeEqualTo('_subject', $View)
  1052. )
  1053. );
  1054. $manager->expects($this->at(6))->method('dispatch')
  1055. ->with(
  1056. $this->logicalAnd(
  1057. $this->isInstanceOf('Cake\Event\Event'),
  1058. $this->attributeEqualTo('_name', 'View.afterRenderFile'),
  1059. $this->attributeEqualTo('_subject', $View)
  1060. )
  1061. );
  1062. $manager->expects($this->at(7))->method('dispatch')
  1063. ->with(
  1064. $this->logicalAnd(
  1065. $this->isInstanceOf('Cake\Event\Event'),
  1066. $this->attributeEqualTo('_name', 'View.afterLayout'),
  1067. $this->attributeEqualTo('_subject', $View)
  1068. )
  1069. );
  1070. $View->render('index');
  1071. }
  1072. /**
  1073. * Test beforeLayout method
  1074. *
  1075. * @return void
  1076. */
  1077. public function testBeforeLayout()
  1078. {
  1079. $this->PostsController->helpers = [
  1080. 'TestBeforeAfter' => ['className' => __NAMESPACE__ . '\TestBeforeAfterHelper'],
  1081. 'Html'
  1082. ];
  1083. $View = $this->PostsController->createView();
  1084. $View->templatePath($this->PostsController->name);
  1085. $View->render('index');
  1086. $this->assertEquals('Valuation', $View->helpers()->TestBeforeAfter->property);
  1087. }
  1088. /**
  1089. * Test afterLayout method
  1090. *
  1091. * @return void
  1092. */
  1093. public function testAfterLayout()
  1094. {
  1095. $this->PostsController->helpers = [
  1096. 'TestBeforeAfter' => ['className' => __NAMESPACE__ . '\TestBeforeAfterHelper'],
  1097. 'Html'
  1098. ];
  1099. $this->PostsController->set('variable', 'values');
  1100. $View = $this->PostsController->createView();
  1101. $View->templatePath($this->PostsController->name);
  1102. $content = 'This is my view output';
  1103. $result = $View->renderLayout($content, 'default');
  1104. $this->assertRegExp('/modified in the afterlife/', $result);
  1105. $this->assertRegExp('/This is my view output/', $result);
  1106. }
  1107. /**
  1108. * Test renderLoadHelper method
  1109. *
  1110. * @return void
  1111. */
  1112. public function testRenderLoadHelper()
  1113. {
  1114. $this->PostsController->helpers = ['Form', 'Number'];
  1115. $View = $this->PostsController->createView('Cake\Test\TestCase\View\TestView');
  1116. $View->templatePath($this->PostsController->name);
  1117. $result = $View->render('index', false);
  1118. $this->assertEquals('posts index', $result);
  1119. $attached = $View->helpers()->loaded();
  1120. // HtmlHelper is loaded in TestView::initialize()
  1121. $this->assertEquals(['Html', 'Form', 'Number'], $attached);
  1122. $this->PostsController->helpers = ['Html', 'Form', 'Number', 'TestPlugin.PluggedHelper'];
  1123. $View = $this->PostsController->createView('Cake\Test\TestCase\View\TestView');
  1124. $View->templatePath($this->PostsController->name);
  1125. $result = $View->render('index', false);
  1126. $this->assertEquals('posts index', $result);
  1127. $attached = $View->helpers()->loaded();
  1128. $expected = ['Html', 'Form', 'Number', 'PluggedHelper'];
  1129. $this->assertEquals($expected, $attached, 'Attached helpers are wrong.');
  1130. }
  1131. /**
  1132. * Test render method
  1133. *
  1134. * @return void
  1135. */
  1136. public function testRender()
  1137. {
  1138. $View = $this->PostsController->createView('Cake\Test\TestCase\View\TestView');
  1139. $View->templatePath($this->PostsController->name);
  1140. $result = $View->render('index');
  1141. $this->assertRegExp("/<meta charset=\"utf-8\"\/>\s*<title>/", $result);
  1142. $this->assertRegExp("/<div id=\"content\">\s*posts index\s*<\/div>/", $result);
  1143. $this->assertRegExp("/<div id=\"content\">\s*posts index\s*<\/div>/", $result);
  1144. $View = $this->PostsController->createView('Cake\Test\TestCase\View\TestView');
  1145. $result = $View->render(false, 'ajax2');
  1146. $this->assertRegExp('/Ajax\!/', $result);
  1147. $this->assertNull($View->render(false, 'ajax2'));
  1148. $this->PostsController->helpers = ['Html'];
  1149. $this->PostsController->request->params['action'] = 'index';
  1150. Configure::write('Cache.check', true);
  1151. $View = $this->PostsController->createView('Cake\Test\TestCase\View\TestView');
  1152. $View->templatePath($this->PostsController->name);
  1153. $result = $View->render('index');
  1154. $this->assertRegExp("/<meta charset=\"utf-8\"\/>\s*<title>/", $result);
  1155. $this->assertRegExp("/<div id=\"content\">\s*posts index\s*<\/div>/", $result);
  1156. }
  1157. /**
  1158. * Test that View::$view works
  1159. *
  1160. * @return void
  1161. */
  1162. public function testRenderUsingViewProperty()
  1163. {
  1164. $View = $this->PostsController->createView('Cake\Test\TestCase\View\TestView');
  1165. $View->templatePath($this->PostsController->name);
  1166. $View->template('cache_form');
  1167. $this->assertEquals('cache_form', $View->view);
  1168. $result = $View->render();
  1169. $this->assertRegExp('/Add User/', $result);
  1170. }
  1171. /**
  1172. * Test that layout set from view file takes precedence over layout set
  1173. * as argument to render().
  1174. *
  1175. * @return void
  1176. */
  1177. public function testRenderUsingLayoutArgument()
  1178. {
  1179. $error = new \PDOException();
  1180. $error->queryString = 'this is sql string';
  1181. $message = 'it works';
  1182. $View = $this->PostsController->createView('Cake\Test\TestCase\View\TestView');
  1183. $View->set(compact('error', 'message'));
  1184. $View->viewPath = 'Error';
  1185. $result = $View->render('pdo_error', 'error');
  1186. $this->assertRegExp('/this is sql string/', $result);
  1187. $this->assertRegExp('/it works/', $result);
  1188. }
  1189. /**
  1190. * Test render()ing a file in a subdir from a custom viewPath
  1191. * in a plugin.
  1192. *
  1193. * @return void
  1194. */
  1195. public function testGetViewFileNameSubdirWithPluginAndViewPath()
  1196. {
  1197. $this->PostsController->plugin = 'TestPlugin';
  1198. $this->PostsController->name = 'Posts';
  1199. $View = $this->PostsController->createView('Cake\Test\TestCase\View\TestView');
  1200. $View->templatePath('Element');
  1201. $pluginPath = TEST_APP . 'Plugin' . DS . 'TestPlugin' . DS;
  1202. $result = $View->getViewFileName('sub_dir/sub_element');
  1203. $expected = $pluginPath . 'src' . DS . 'Template' . DS . 'Element' . DS . 'sub_dir' . DS . 'sub_element.ctp';
  1204. $this->assertPathEquals($expected, $result);
  1205. }
  1206. /**
  1207. * Test that view vars can replace the local helper variables
  1208. * and not overwrite the $this->Helper references
  1209. *
  1210. * @return void
  1211. */
  1212. public function testViewVarOverwritingLocalHelperVar()
  1213. {
  1214. $Controller = new ViewPostsController();
  1215. $Controller->helpers = ['Html'];
  1216. $Controller->set('html', 'I am some test html');
  1217. $View = $Controller->createView();
  1218. $View->templatePath($Controller->name);
  1219. $result = $View->render('helper_overwrite', false);
  1220. $this->assertRegExp('/I am some test html/', $result);
  1221. $this->assertRegExp('/Test link/', $result);
  1222. }
  1223. /**
  1224. * Test getViewFileName method
  1225. *
  1226. * @return void
  1227. */
  1228. public function testViewFileName()
  1229. {
  1230. $View = $this->PostsController->createView('Cake\Test\TestCase\View\TestView');
  1231. $View->templatePath('Posts');
  1232. $result = $View->getViewFileName('index');
  1233. $this->assertRegExp('/Posts(\/|\\\)index.ctp/', $result);
  1234. $result = $View->getViewFileName('TestPlugin.index');
  1235. $this->assertRegExp('/Posts(\/|\\\)index.ctp/', $result);
  1236. $result = $View->getViewFileName('/Pages/home');
  1237. $this->assertRegExp('/Pages(\/|\\\)home.ctp/', $result);
  1238. $result = $View->getViewFileName('../Element/test_element');
  1239. $this->assertRegExp('/Element(\/|\\\)test_element.ctp/', $result);
  1240. $expected = TEST_APP . 'TestApp' . DS . 'Template' . DS . 'Posts' . DS . 'index.ctp';
  1241. $result = $View->getViewFileName('../Posts/index');
  1242. $this->assertPathEquals($expected, $result);
  1243. }
  1244. /**
  1245. * Test creating a block with capturing output.
  1246. *
  1247. * @return void
  1248. */
  1249. public function testBlockCaptureOverwrite()
  1250. {
  1251. $result = $this->View->start('test');
  1252. $this->assertSame($this->View, $result);
  1253. echo 'Block content';
  1254. $result = $this->View->end();
  1255. $this->assertSame($this->View, $result);
  1256. $this->View->start('test');
  1257. echo 'New content';
  1258. $this->View->end();
  1259. $result = $this->View->fetch('test');
  1260. $this->assertEquals('New content', $result);
  1261. }
  1262. /**
  1263. * Test that blocks can be fetched inside a block with the same name
  1264. *
  1265. * @return void
  1266. */
  1267. public function testBlockExtend()
  1268. {
  1269. $this->View->start('test');
  1270. echo 'Block content';
  1271. $this->View->end();
  1272. $this->View->start('test');
  1273. echo $this->View->fetch('test');
  1274. echo 'New content';
  1275. $this->View->end();
  1276. $result = $this->View->fetch('test');
  1277. $this->assertEquals('Block contentNew content', $result);
  1278. }
  1279. /**
  1280. * Test creating a block with capturing output.
  1281. *
  1282. * @return void
  1283. */
  1284. public function testBlockCapture()
  1285. {
  1286. $this->View->start('test');
  1287. echo 'Block content';
  1288. $this->View->end();
  1289. $result = $this->View->fetch('test');
  1290. $this->assertEquals('Block content', $result);
  1291. }
  1292. /**
  1293. * Test appending to a block with capturing output.
  1294. *
  1295. * @return void
  1296. */
  1297. public function testBlockAppendCapture()
  1298. {
  1299. $this->View->start('test');
  1300. echo 'Content ';
  1301. $this->View->end();
  1302. $result = $this->View->append('test');
  1303. $this->assertSame($this->View, $result);
  1304. echo 'appended';
  1305. $this->View->end();
  1306. $result = $this->View->fetch('test');
  1307. $this->assertEquals('Content appended', $result);
  1308. }
  1309. /**
  1310. * Test setting a block's content.
  1311. *
  1312. * @return void
  1313. */
  1314. public function testBlockSet()
  1315. {
  1316. $result = $this->View->assign('test', 'Block content');
  1317. $this->assertSame($this->View, $result);
  1318. $result = $this->View->fetch('test');
  1319. $this->assertEquals('Block content', $result);
  1320. }
  1321. /**
  1322. * Test resetting a block's content.
  1323. *
  1324. * @return void
  1325. */
  1326. public function testBlockReset()
  1327. {
  1328. $this->View->assign('test', '');
  1329. $result = $this->View->fetch('test', 'This should not be returned');
  1330. $this->assertSame('', $result);
  1331. }
  1332. /**
  1333. * Test resetting a block's content with reset.
  1334. *
  1335. * @return void
  1336. */
  1337. public function testBlockResetFunc()
  1338. {
  1339. $this->View->assign('test', 'Block content');
  1340. $result = $this->View->fetch('test', 'This should not be returned');
  1341. $this->assertSame('Block content', $result);
  1342. $result = $this->View->reset('test');
  1343. $this->assertSame($this->View, $result);
  1344. $result = $this->View->fetch('test', 'This should not be returned');
  1345. $this->assertSame('', $result);
  1346. }
  1347. /**
  1348. * Test checking a block's existence.
  1349. *
  1350. * @return void
  1351. */
  1352. public function testBlockExist()
  1353. {
  1354. $this->assertFalse($this->View->exists('test'));
  1355. $this->View->assign('test', 'Block content');
  1356. $this->assertTrue($this->View->exists('test'));
  1357. }
  1358. /**
  1359. * Test setting a block's content to null
  1360. *
  1361. * @return void
  1362. */
  1363. public function testBlockSetNull()
  1364. {
  1365. $this->View->assign('testWithNull', null);
  1366. $result = $this->View->fetch('testWithNull');
  1367. $this->assertSame('', $result);
  1368. }
  1369. /**
  1370. * Test setting a block's content to an object with __toString magic method
  1371. *
  1372. * @return void
  1373. */
  1374. public function testBlockSetObjectWithToString()
  1375. {
  1376. $objectWithToString = new TestObjectWithToString();
  1377. $this->View->assign('testWithObjectWithToString', $objectWithToString);
  1378. $result = $this->View->fetch('testWithObjectWithToString');
  1379. $this->assertSame("I'm ObjectWithToString", $result);
  1380. }
  1381. /**
  1382. * Test setting a block's content to an object without __toString magic method
  1383. *
  1384. * This should produce a "Object of class TestObjectWithoutToString could not be converted to string" error
  1385. * which gets thrown as a \PHPUnit\Framework\Error\Error Exception by PHPUnit.
  1386. *
  1387. * @expectedException \PHPUnit\Framework\Error\Error
  1388. * @return void
  1389. */
  1390. public function testBlockSetObjectWithoutToString()
  1391. {
  1392. $objectWithToString = new TestObjectWithoutToString();
  1393. $this->View->assign('testWithObjectWithoutToString', $objectWithToString);
  1394. }
  1395. /**
  1396. * Test setting a block's content to a decimal
  1397. *
  1398. * @return void
  1399. */
  1400. public function testBlockSetDecimal()
  1401. {
  1402. $this->View->assign('testWithDecimal', 1.23456789);
  1403. $result = $this->View->fetch('testWithDecimal');
  1404. $this->assertEquals('1.23456789', $result);
  1405. }
  1406. /**
  1407. * Data provider for block related tests.
  1408. *
  1409. * @return array
  1410. */
  1411. public static function blockValueProvider()
  1412. {
  1413. return [
  1414. 'string' => ['A string value'],
  1415. 'decimal' => [1.23456],
  1416. 'object with __toString' => [new TestObjectWithToString()],
  1417. ];
  1418. }
  1419. /**
  1420. * Test appending to a block with append.
  1421. *
  1422. * @param mixed $value Value
  1423. * @return void
  1424. * @dataProvider blockValueProvider
  1425. */
  1426. public function testBlockAppend($value)
  1427. {
  1428. $this->View->assign('testBlock', 'Block');
  1429. $this->View->append('testBlock', $value);
  1430. $result = $this->View->fetch('testBlock');
  1431. $this->assertSame('Block' . $value, $result);
  1432. }
  1433. /**
  1434. * Test appending an object without __toString magic method to a block with append.
  1435. *
  1436. * This should produce a "Object of class TestObjectWithoutToString could not be converted to string" error
  1437. * which gets thrown as a \PHPUnit\Framework\Error\Error Exception by PHPUnit.
  1438. *
  1439. * @expectedException \PHPUnit\Framework\Error\Error
  1440. * @return void
  1441. */
  1442. public function testBlockAppendObjectWithoutToString()
  1443. {
  1444. $object = new TestObjectWithoutToString();
  1445. $this->View->assign('testBlock', 'Block ');
  1446. $this->View->append('testBlock', $object);
  1447. }
  1448. /**
  1449. * Test prepending to a block with prepend.
  1450. *
  1451. * @param mixed $value Value
  1452. * @return void
  1453. * @dataProvider blockValueProvider
  1454. */
  1455. public function testBlockPrepend($value)
  1456. {
  1457. $this->View->assign('test', 'Block');
  1458. $result = $this->View->prepend('test', $value);
  1459. $this->assertSame($this->View, $result);
  1460. $result = $this->View->fetch('test');
  1461. $this->assertEquals($value . 'Block', $result);
  1462. }
  1463. /**
  1464. * Test prepending an object without __toString magic method to a block with prepend.
  1465. *
  1466. * This should produce a "Object of class TestObjectWithoutToString could not be converted to string" error
  1467. * which gets thrown as a \PHPUnit\Framework\Error\Error Exception by PHPUnit.
  1468. *
  1469. * @expectedException \PHPUnit\Framework\Error\Error
  1470. * @return void
  1471. */
  1472. public function testBlockPrependObjectWithoutToString()
  1473. {
  1474. $object = new TestObjectWithoutToString();
  1475. $this->View->assign('test', 'Block ');
  1476. $this->View->prepend('test', $object);
  1477. }
  1478. /**
  1479. * You should be able to append to undefined blocks.
  1480. *
  1481. * @return void
  1482. */
  1483. public function testBlockAppendUndefined()
  1484. {
  1485. $result = $this->View->append('test', 'Unknown');
  1486. $this->assertSame($this->View, $result);
  1487. $result = $this->View->fetch('test');
  1488. $this->assertEquals('Unknown', $result);
  1489. }
  1490. /**
  1491. * You should be able to prepend to undefined blocks.
  1492. *
  1493. * @return void
  1494. */
  1495. public function testBlockPrependUndefined()
  1496. {
  1497. $this->View->prepend('test', 'Unknown');
  1498. $result = $this->View->fetch('test');
  1499. $this->assertEquals('Unknown', $result);
  1500. }
  1501. /**
  1502. * Test getting block names
  1503. *
  1504. * @return void
  1505. */
  1506. public function testBlocks()
  1507. {
  1508. $this->View->append('test', 'one');
  1509. $this->View->assign('test1', 'one');
  1510. $this->assertEquals(['test', 'test1'], $this->View->blocks());
  1511. }
  1512. /**
  1513. * Test that blocks can be nested.
  1514. *
  1515. * @return void
  1516. */
  1517. public function testNestedBlocks()
  1518. {
  1519. $this->View->start('first');
  1520. echo 'In first ';
  1521. $this->View->start('second');
  1522. echo 'In second';
  1523. $this->View->end();
  1524. echo 'In first';
  1525. $this->View->end();
  1526. $this->assertEquals('In first In first', $this->View->fetch('first'));
  1527. $this->assertEquals('In second', $this->View->fetch('second'));
  1528. }
  1529. /**
  1530. * Test that starting the same block twice throws an exception
  1531. *
  1532. * @return void
  1533. */
  1534. public function testStartBlocksTwice()
  1535. {
  1536. try {
  1537. $this->View->start('first');
  1538. $this->View->start('first');
  1539. $this->fail('No exception');
  1540. } catch (\Cake\Core\Exception\Exception $e) {
  1541. ob_end_clean();
  1542. $this->assertTrue(true);
  1543. }
  1544. }
  1545. /**
  1546. * Test that an exception gets thrown when you leave a block open at the end
  1547. * of a view.
  1548. *
  1549. * @return void
  1550. */
  1551. public function testExceptionOnOpenBlock()
  1552. {
  1553. try {
  1554. $this->View->render('open_block');
  1555. $this->fail('No exception');
  1556. } catch (\LogicException $e) {
  1557. ob_end_clean();
  1558. $this->assertContains('The "no_close" block was left open', $e->getMessage());
  1559. }
  1560. }
  1561. /**
  1562. * Test nested extended views.
  1563. *
  1564. * @return void
  1565. */
  1566. public function testExtendNested()
  1567. {
  1568. $this->View->layout = false;
  1569. $content = $this->View->render('nested_extends');
  1570. $expected = <<<TEXT
  1571. This is the second parent.
  1572. This is the first parent.
  1573. This is the first template.
  1574. Sidebar Content.
  1575. TEXT;
  1576. $this->assertEquals($expected, $content);
  1577. }
  1578. /**
  1579. * Make sure that extending the current view with itself causes an exception
  1580. *
  1581. * @return void
  1582. */
  1583. public function testExtendSelf()
  1584. {
  1585. try {
  1586. $this->View->layout = false;
  1587. $this->View->render('extend_self');
  1588. $this->fail('No exception');
  1589. } catch (\LogicException $e) {
  1590. ob_end_clean();
  1591. $this->assertContains('cannot have views extend themselves', $e->getMessage());
  1592. }
  1593. }
  1594. /**
  1595. * Make sure that extending in a loop causes an exception
  1596. *
  1597. * @return void
  1598. */
  1599. public function testExtendLoop()
  1600. {
  1601. try {
  1602. $this->View->layout = false;
  1603. $this->View->render('extend_loop');
  1604. $this->fail('No exception');
  1605. } catch (\LogicException $e) {
  1606. ob_end_clean();
  1607. $this->assertContains('cannot have views extend in a loop', $e->getMessage());
  1608. }
  1609. }
  1610. /**
  1611. * Test extend() in an element and a view.
  1612. *
  1613. * @return void
  1614. */
  1615. public function testExtendElement()
  1616. {
  1617. $this->View->layout = false;
  1618. $content = $this->View->render('extend_element');
  1619. $expected = <<<TEXT
  1620. Parent View.
  1621. View content.
  1622. Parent Element.
  1623. Element content.
  1624. TEXT;
  1625. $this->assertEquals($expected, $content);
  1626. }
  1627. /**
  1628. * Test extend() in an element and a view.
  1629. *
  1630. * @return void
  1631. */
  1632. public function testExtendPrefixElement()
  1633. {
  1634. $this->View->request->params['prefix'] = 'Admin';
  1635. $this->View->layout = false;
  1636. $content = $this->View->render('extend_element');
  1637. $expected = <<<TEXT
  1638. Parent View.
  1639. View content.
  1640. Parent Element.
  1641. Prefix Element content.
  1642. TEXT;
  1643. $this->assertEquals($expected, $content);
  1644. }
  1645. /**
  1646. * Extending an element which doesn't exist should throw a missing view exception
  1647. *
  1648. * @return void
  1649. */
  1650. public function testExtendMissingElement()
  1651. {
  1652. try {
  1653. $this->View->layout = false;
  1654. $this->View->render('extend_missing_element');
  1655. $this->fail('No exception');
  1656. } catch (\LogicException $e) {
  1657. ob_end_clean();
  1658. ob_end_clean();
  1659. $this->assertContains('element', $e->getMessage());
  1660. }
  1661. }
  1662. /**
  1663. * Test extend() preceeded by an element()
  1664. *
  1665. * @return void
  1666. */
  1667. public function testExtendWithElementBeforeExtend()
  1668. {
  1669. $this->View->layout = false;
  1670. $result = $this->View->render('extend_with_element');
  1671. $expected = <<<TEXT
  1672. Parent View.
  1673. this is the test elementThe view
  1674. TEXT;
  1675. $this->assertEquals($expected, $result);
  1676. }
  1677. /**
  1678. * Test extend() preceeded by an element()
  1679. *
  1680. * @return void
  1681. */
  1682. public function testExtendWithPrefixElementBeforeExtend()
  1683. {
  1684. $this->View->request->params['prefix'] = 'Admin';
  1685. $this->View->layout = false;
  1686. $result = $this->View->render('extend_with_element');
  1687. $expected = <<<TEXT
  1688. Parent View.
  1689. this is the test prefix elementThe view
  1690. TEXT;
  1691. $this->assertEquals($expected, $result);
  1692. }
  1693. /**
  1694. * Test memory leaks that existed in _paths at one point.
  1695. *
  1696. * @return void
  1697. */
  1698. public function testMemoryLeakInPaths()
  1699. {
  1700. $this->skipIf(env('CODECOVERAGE') == 1, 'Running coverage this causes this tests to fail sometimes.');
  1701. $this->ThemeController->plugin = null;
  1702. $this->ThemeController->name = 'Posts';
  1703. $View = $this->ThemeController->createView();
  1704. $View->templatePath('Posts');
  1705. $View->layout = 'whatever';
  1706. $View->theme = 'TestTheme';
  1707. $View->element('test_element');
  1708. $start = memory_get_usage();
  1709. for ($i = 0; $i < 10; $i++) {
  1710. $View->element('test_element');
  1711. }
  1712. $end = memory_get_usage();
  1713. $this->assertLessThanOrEqual($start + 15000, $end);
  1714. }
  1715. /**
  1716. * Tests that a view block uses default value when not assigned and uses assigned value when it is
  1717. *
  1718. * @return void
  1719. */
  1720. public function testBlockDefaultValue()
  1721. {
  1722. $default = 'Default';
  1723. $result = $this->View->fetch('title', $default);
  1724. $this->assertEquals($default, $result);
  1725. $expected = 'My Title';
  1726. $this->View->assign('title', $expected);
  1727. $result = $this->View->fetch('title', $default);
  1728. $this->assertEquals($expected, $result);
  1729. }
  1730. /**
  1731. * Tests that a view variable uses default value when not assigned and uses assigned value when it is
  1732. *
  1733. * @return void
  1734. */
  1735. public function testViewVarDefaultValue()
  1736. {
  1737. $default = 'Default';
  1738. $result = $this->View->get('title', $default);
  1739. $this->assertEquals($default, $result);
  1740. $expected = 'Back to the Future';
  1741. $this->View->set('title', $expected);
  1742. $result = $this->View->get('title', $default);
  1743. $this->assertEquals($expected, $result);
  1744. }
  1745. /**
  1746. * Test the helpers() method.
  1747. *
  1748. * @return void
  1749. */
  1750. public function testHelpers()
  1751. {
  1752. $this->assertInstanceOf('Cake\View\HelperRegistry', $this->View->helpers());
  1753. $result = $this->View->helpers();
  1754. $this->assertSame($result, $this->View->helpers());
  1755. }
  1756. /**
  1757. * Test getTemplatePath() and setTemplatePath().
  1758. *
  1759. * @return void
  1760. */
  1761. public function testGetSetTemplatePath()
  1762. {
  1763. $result = $this->View->setTemplatePath('foo');
  1764. $this->assertSame($this->View, $result);
  1765. $templatePath = $this->View->getTemplatePath();
  1766. $this->assertSame($templatePath, 'foo');
  1767. }
  1768. /**
  1769. * Test getLayoutPath() and setLayoutPath().
  1770. *
  1771. * @return void
  1772. */
  1773. public function testGetSetLayoutPath()
  1774. {
  1775. $result = $this->View->setLayoutPath('foo');
  1776. $this->assertSame($this->View, $result);
  1777. $layoutPath = $this->View->getLayoutPath();
  1778. $this->assertSame($layoutPath, 'foo');
  1779. }
  1780. /**
  1781. * Test isAutoLayoutEnabled() and enableAutoLayout().
  1782. *
  1783. * @return void
  1784. */
  1785. public function testAutoLayout()
  1786. {
  1787. $result = $this->View->enableAutoLayout(false);
  1788. $this->assertSame($this->View, $result);
  1789. $autoLayout = $this->View->isAutoLayoutEnabled();
  1790. $this->assertSame($autoLayout, false);
  1791. $this->View->enableAutoLayout();
  1792. $autoLayout = $this->View->isAutoLayoutEnabled();
  1793. $this->assertSame($autoLayout, true);
  1794. }
  1795. /**
  1796. * Test getTheme() and setTheme().
  1797. *
  1798. * @return void
  1799. */
  1800. public function testGetSetTheme()
  1801. {
  1802. $result = $this->View->setTheme('foo');
  1803. $this->assertSame($this->View, $result);
  1804. $theme = $this->View->getTheme();
  1805. $this->assertSame($theme, 'foo');
  1806. }
  1807. /**
  1808. * Test getTemplate() and setTemplate().
  1809. *
  1810. * @return void
  1811. */
  1812. public function testGetSetTemplate()
  1813. {
  1814. $result = $this->View->setTemplate('foo');
  1815. $this->assertSame($this->View, $result);
  1816. $template = $this->View->getTemplate();
  1817. $this->assertSame($template, 'foo');
  1818. }
  1819. /**
  1820. * Test setLayout() and getLayout().
  1821. *
  1822. * @return void
  1823. */
  1824. public function testGetSetLayout()
  1825. {
  1826. $result = $this->View->setLayout('foo');
  1827. $this->assertSame($this->View, $result);
  1828. $layout = $this->View->getLayout();
  1829. $this->assertSame($layout, 'foo');
  1830. }
  1831. /**
  1832. * Test magic getter and setter for removed properties.
  1833. *
  1834. * @return void
  1835. */
  1836. public function testMagicGetterSetter()
  1837. {
  1838. $View = $this->View;
  1839. $View->view = 'myview';
  1840. $this->assertEquals('myview', $View->template());
  1841. $this->assertEquals('myview', $View->view);
  1842. $View->viewPath = 'mypath';
  1843. $this->assertEquals('mypath', $View->templatePath());
  1844. $this->assertEquals('mypath', $View->templatePath);
  1845. }
  1846. }