* 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://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests * @package Cake.Test.Case.View.Helper * @since CakePHP(tm) v 2.7.0-dev * @license https://opensource.org/licenses/mit-license.php MIT License */ App::uses('FlashHelper', 'View/Helper'); App::uses('View', 'View'); App::uses('CakePlugin', 'Core'); /** * FlashHelperTest class * * @package Cake.Test.Case.View.Helper */ class FlashHelperTest extends CakeTestCase { /** * setupBeforeClass method * * @return void */ public static function setupBeforeClass() { App::build(array( 'View' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'View' . DS) )); } /** * setUp method * * @return void */ public function setUp() { parent::setUp(); $controller = null; $this->View = new View($controller); $this->Flash = new FlashHelper($this->View); if (!CakeSession::started()) { CakeSession::start(); } CakeSession::write(array( 'Message' => array( 'flash' => array( array( 'key' => 'flash', 'message' => 'This is the first Message', 'element' => 'Flash/default', 'params' => array() ), array( 'key' => 'flash', 'message' => 'This is the second Message', 'element' => 'Flash/default', 'params' => array() ) ), 'notification' => array( array( 'key' => 'notification', 'message' => 'Broadcast message testing', 'element' => 'flash_helper', 'params' => array( 'title' => 'Notice!', 'name' => 'Alert!' ) ) ), 'classy' => array( array( 'key' => 'classy', 'message' => 'Recorded', 'element' => 'flash_classy', 'params' => array() ) ), 'default' => array( array( 'key' => 'default', 'message' => 'Default', 'element' => 'default', 'params' => array() ) ) ) )); } /** * tearDown method * * @return void */ public function tearDown() { parent::tearDown(); unset($this->View, $this->Flash); CakeSession::destroy(); } /** * testFlash method * * @return void */ public function testFlash() { $result = $this->Flash->render(); $expected = '
This is the first Message
This is the second Message
'; $this->assertContains($expected, $result); $expected = '
Recorded
'; $result = $this->Flash->render('classy'); $this->assertContains($expected, $result); $result = $this->Flash->render('notification'); $expected = "
\n\t

Alert!

\n\t

Notice!

\n\t

Broadcast message testing

\n
"; $this->assertContains($expected, $result); $this->assertNull($this->Flash->render('non-existent')); } /** * testFlashThrowsException * * @expectedException UnexpectedValueException */ public function testFlashThrowsException() { CakeSession::write('Message.foo', 'bar'); $this->Flash->render('foo'); } /** * test setting the element from the attrs. * * @return void */ public function testFlashElementInAttrs() { $result = $this->Flash->render('notification', array( 'element' => 'flash_helper', 'params' => array('title' => 'Alert!', 'name' => 'Notice!') )); $expected = "
\n\t

Notice!

\n\t

Alert!

\n\t

Broadcast message testing

\n
"; $this->assertContains($expected, $result); } /** * test using elements in plugins. * * @return void */ public function testFlashWithPluginElement() { App::build(array( 'Plugin' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'Plugin' . DS) )); CakePlugin::load('TestPlugin'); $result = $this->Flash->render('flash', array('element' => 'TestPlugin.plugin_element')); $expected = 'this is the plugin element'; $this->assertContains($expected, $result); } /** * Test that the default element fallbacks to the Flash/default element. */ public function testFlashFallback() { $result = $this->Flash->render('default'); $expected = '
Default
'; $this->assertContains($expected, $result); } }