TYPO3 API  SVNRelease
TextareaViewHelperTest.php
Go to the documentation of this file.
00001 <?php
00002 
00003 /*                                                                        *
00004  * This script belongs to the FLOW3 package "Fluid".                      *
00005  *                                                                        *
00006  * It is free software; you can redistribute it and/or modify it under    *
00007  * the terms of the GNU Lesser General Public License as published by the *
00008  * Free Software Foundation, either version 3 of the License, or (at your *
00009  * option) any later version.                                             *
00010  *                                                                        *
00011  * This script is distributed in the hope that it will be useful, but     *
00012  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN-    *
00013  * TABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser       *
00014  * General Public License for more details.                               *
00015  *                                                                        *
00016  * You should have received a copy of the GNU Lesser General Public       *
00017  * License along with the script.                                         *
00018  * If not, see http://www.gnu.org/licenses/lgpl.html                      *
00019  *                                                                        *
00020  * The TYPO3 project - inspiring people to share!                         *
00021  *                                                                        */
00022 
00023 require_once(dirname(__FILE__) . '/Fixtures/EmptySyntaxTreeNode.php');
00024 require_once(dirname(__FILE__) . '/Fixtures/Fixture_UserDomainClass.php');
00025 require_once(dirname(__FILE__) . '/../ViewHelperBaseTestcase.php');
00026 
00027 /**
00028  * Test for the "Textarea" Form view helper
00029  *
00030  * @license http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License, version 3 or later
00031  */
00032 class Tx_Fluid_Tests_Unit_ViewHelpers_Form_TextareaViewHelperTest extends Tx_Fluid_ViewHelpers_ViewHelperBaseTestcase {
00033 
00034     /**
00035      * var Tx_Fluid_ViewHelpers_Form_TextareaViewHelper
00036      */
00037     protected $viewHelper;
00038 
00039     public function setUp() {
00040         parent::setUp();
00041         $this->viewHelper = $this->getAccessibleMock('Tx_Fluid_ViewHelpers_Form_TextareaViewHelper', array('setErrorClassAttribute', 'registerFieldNameForFormTokenGeneration'));
00042         $this->injectDependenciesIntoViewHelper($this->viewHelper);
00043         $this->viewHelper->initializeArguments();
00044     }
00045 
00046     /**
00047      * @test
00048      * @author Bastian Waidelich <bastian@typo3.org>
00049      */
00050     public function renderCorrectlySetsTagName() {
00051         $mockTagBuilder = $this->getMock('Tx_Fluid_Core_ViewHelper_TagBuilder', array('setTagName'), array(), '', FALSE);
00052         $mockTagBuilder->expects($this->once())->method('setTagName')->with('textarea');
00053         $this->viewHelper->_set('tag', $mockTagBuilder);
00054 
00055         $this->viewHelper->initialize();
00056         $this->viewHelper->render();
00057     }
00058 
00059     /**
00060      * @test
00061      * @author Sebastian Kurfürst <sebastian@typo3.org>
00062      * @author Bastian Waidelich <bastian@typo3.org>
00063      */
00064     public function renderCorrectlySetsNameAttributeAndContent() {
00065         $mockTagBuilder = $this->getMock('Tx_Fluid_Core_ViewHelper_TagBuilder', array('addAttribute', 'setContent', 'render'), array(), '', FALSE);
00066         $mockTagBuilder->expects($this->once())->method('addAttribute')->with('name', 'NameOfTextarea');
00067         $this->viewHelper->expects($this->once())->method('registerFieldNameForFormTokenGeneration')->with('NameOfTextarea');
00068         $mockTagBuilder->expects($this->once())->method('setContent')->with('Current value');
00069         $mockTagBuilder->expects($this->once())->method('render');
00070         $this->viewHelper->_set('tag', $mockTagBuilder);
00071 
00072         $arguments = new Tx_Fluid_Core_ViewHelper_Arguments(array(
00073             'name' => 'NameOfTextarea',
00074             'value' => 'Current value'
00075         ));
00076         $this->viewHelper->setArguments($arguments);
00077 
00078         $this->viewHelper->setViewHelperNode(new Tx_Fluid_ViewHelpers_Fixtures_EmptySyntaxTreeNode());
00079         $this->viewHelper->initialize();
00080         $this->viewHelper->render();
00081     }
00082 
00083     /**
00084      * @test
00085      * @author Bastian Waidelich <bastian@typo3.org>
00086      */
00087     public function renderCallsSetErrorClassAttribute() {
00088         $this->viewHelper->expects($this->once())->method('setErrorClassAttribute');
00089         $this->viewHelper->render();
00090     }
00091 
00092     /**
00093      * @test
00094      * @author Bastian Waidelich <bastian@typo3.org>
00095      */
00096     public function renderEscapesTextareaContent() {
00097         $mockTagBuilder = $this->getMock('Tx_Fluid_Core_ViewHelper_TagBuilder', array('addAttribute', 'setContent', 'render'), array(), '', FALSE);
00098         $mockTagBuilder->expects($this->once())->method('addAttribute')->with('name', 'NameOfTextarea');
00099         $this->viewHelper->expects($this->once())->method('registerFieldNameForFormTokenGeneration')->with('NameOfTextarea');
00100         $mockTagBuilder->expects($this->once())->method('setContent')->with('some &lt;tag&gt; &amp; &quot;quotes&quot;');
00101         $mockTagBuilder->expects($this->once())->method('render');
00102         $this->viewHelper->_set('tag', $mockTagBuilder);
00103 
00104         $arguments = new Tx_Fluid_Core_ViewHelper_Arguments(array(
00105             'name' => 'NameOfTextarea',
00106             'value' => 'some <tag> & "quotes"'
00107         ));
00108         $this->viewHelper->setArguments($arguments);
00109 
00110         $this->viewHelper->setViewHelperNode(new Tx_Fluid_ViewHelpers_Fixtures_EmptySyntaxTreeNode());
00111         $this->viewHelper->initialize();
00112         $this->viewHelper->render();
00113     }
00114 }
00115 
00116 ?>