|
TYPO3 API
SVNRelease
|
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 "Textbox" 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_TextboxViewHelperTest extends Tx_Fluid_ViewHelpers_ViewHelperBaseTestcase { 00033 00034 /** 00035 * var Tx_Fluid_ViewHelpers_Form_TextboxViewHelper 00036 */ 00037 protected $viewHelper; 00038 00039 public function setUp() { 00040 parent::setUp(); 00041 $this->viewHelper = $this->getAccessibleMock('Tx_Fluid_ViewHelpers_Form_TextboxViewHelper', 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('input'); 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 renderCorrectlySetsTypeNameAndValueAttributes() { 00065 $mockTagBuilder = $this->getMock('Tx_Fluid_Core_ViewHelper_TagBuilder', array('addAttribute', 'setContent', 'render'), array(), '', FALSE); 00066 $mockTagBuilder->expects($this->at(0))->method('addAttribute')->with('type', 'text'); 00067 $mockTagBuilder->expects($this->at(1))->method('addAttribute')->with('name', 'NameOfTextbox'); 00068 $this->viewHelper->expects($this->once())->method('registerFieldNameForFormTokenGeneration')->with('NameOfTextbox'); 00069 $mockTagBuilder->expects($this->at(2))->method('addAttribute')->with('value', 'Current value'); 00070 $mockTagBuilder->expects($this->once())->method('render'); 00071 $this->viewHelper->_set('tag', $mockTagBuilder); 00072 00073 $arguments = new Tx_Fluid_Core_ViewHelper_Arguments(array( 00074 'name' => 'NameOfTextbox', 00075 'value' => 'Current value' 00076 )); 00077 $this->viewHelper->setArguments($arguments); 00078 00079 $this->viewHelper->setViewHelperNode(new Tx_Fluid_ViewHelpers_Fixtures_EmptySyntaxTreeNode()); 00080 $this->viewHelper->initialize(); 00081 $this->viewHelper->render(); 00082 } 00083 00084 /** 00085 * @test 00086 * @author Bastian Waidelich <bastian@typo3.org> 00087 */ 00088 public function renderCallsSetErrorClassAttribute() { 00089 $this->viewHelper->expects($this->once())->method('setErrorClassAttribute'); 00090 $this->viewHelper->render(); 00091 } 00092 } 00093 00094 ?>
1.8.0