| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- <?php
- /**
- * SessionHelperTest file
- *
- * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html>
- * Copyright (c) Cake Software Foundation, Inc. (http://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. (http://cakefoundation.org)
- * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
- * @since 1.2.0
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\View\Helper;
- use Cake\Controller\Controller;
- use Cake\Core\App;
- use Cake\Core\Plugin;
- use Cake\Network\Request;
- use Cake\Network\Session;
- use Cake\TestSuite\TestCase;
- use Cake\View\Helper\SessionHelper;
- use Cake\View\View;
- /**
- * SessionHelperTest class
- *
- */
- class SessionHelperTest extends TestCase {
- /**
- * setUp method
- *
- * @return void
- */
- public function setUp() {
- parent::setUp();
- $this->View = new View();
- $session = new Session();
- $this->View->request = new Request(['session' => $session]);
- $this->Session = new SessionHelper($this->View);
- $session->write(array(
- 'test' => 'info',
- 'Flash' => array(
- 'flash' => array(
- 'type' => 'info',
- 'params' => array(),
- 'message' => 'This is a calling'
- ),
- 'notification' => array(
- 'type' => 'info',
- 'params' => array(
- 'title' => 'Notice!',
- 'name' => 'Alert!',
- 'element' => 'session_helper'
- ),
- 'message' => 'This is a test of the emergency broadcasting system',
- ),
- 'classy' => array(
- 'type' => 'success',
- 'params' => array('class' => 'positive'),
- 'message' => 'Recorded'
- ),
- 'incomplete' => [
- 'message' => 'A thing happened',
- ]
- ),
- 'Deeply' => array('nested' => array('key' => 'value')),
- ));
- }
- /**
- * tearDown method
- *
- * @return void
- */
- public function tearDown() {
- $_SESSION = array();
- unset($this->View, $this->Session);
- Plugin::unload();
- parent::tearDown();
- }
- /**
- * testRead method
- *
- * @return void
- */
- public function testRead() {
- $result = $this->Session->read('Deeply.nested.key');
- $this->assertEquals('value', $result);
- $result = $this->Session->read('test');
- $this->assertEquals('info', $result);
- }
- /**
- * testCheck method
- *
- * @return void
- */
- public function testCheck() {
- $this->assertTrue($this->Session->check('test'));
- $this->assertTrue($this->Session->check('Flash.flash'));
- $this->assertFalse($this->Session->check('Does.not.exist'));
- $this->assertFalse($this->Session->check('Nope'));
- }
- /**
- * testFlash method
- *
- * @return void
- */
- public function testFlash() {
- $result = $this->Session->flash();
- $expected = '<div id="flash-message" class="message-info">This is a calling</div>';
- $this->assertEquals($expected, $result);
- $this->assertFalse($this->Session->check('Message.flash'));
- $expected = '<div id="classy-message" class="message-success">Recorded</div>';
- $result = $this->Session->flash('classy');
- $this->assertEquals($expected, $result);
- $result = $this->Session->flash('notification');
- $result = str_replace("\r\n", "\n", $result);
- $expected = "<div id=\"notificationLayout\">\n\t<h1>Alert!</h1>\n\t<h3>Notice!</h3>\n\t<p>This is a test of the emergency broadcasting system</p>\n</div>";
- $this->assertEquals($expected, $result);
- $this->assertFalse($this->Session->check('Message.notification'));
- }
- /**
- * Test rendering a flash message for incomplete data.
- *
- * @return void
- */
- public function testFlashIncomplete() {
- $result = $this->Session->flash('incomplete');
- $expected = '<div id="incomplete-message" class="message-info">A thing happened</div>';
- $this->assertEquals($expected, $result);
- }
- /**
- * test flash() with the attributes.
- *
- * @return void
- */
- public function testFlashAttributes() {
- $result = $this->Session->flash('flash', array('class' => 'crazy'));
- $expected = '<div id="flash-message" class="message-crazy">This is a calling</div>';
- $this->assertEquals($expected, $result);
- $this->assertFalse($this->Session->check('Message.flash'));
- }
- /**
- * test setting the element from the attrs.
- *
- * @return void
- */
- public function testFlashElementInAttrs() {
- $result = $this->Session->flash('flash', array(
- 'element' => 'session_helper',
- 'params' => array('title' => 'Notice!', 'name' => 'Alert!')
- ));
- $expected = "<div id=\"notificationLayout\">\n\t<h1>Alert!</h1>\n\t<h3>Notice!</h3>\n\t<p>This is a calling</p>\n</div>";
- $this->assertTextEquals($expected, $result);
- }
- /**
- * test using elements in plugins.
- *
- * @return void
- */
- public function testFlashWithPluginElement() {
- Plugin::load('TestPlugin');
- $result = $this->Session->flash('flash', array('element' => 'TestPlugin.plugin_element'));
- $expected = 'this is the plugin element using params[plugin]';
- $this->assertEquals($expected, $result);
- }
- }
|