|
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 "Upload" 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_UploadViewHelperTest extends Tx_Fluid_ViewHelpers_ViewHelperBaseTestcase { 00033 00034 /** 00035 * var Tx_Fluid_ViewHelpers_Form_UploadViewHelper 00036 */ 00037 protected $viewHelper; 00038 00039 public function setUp() { 00040 parent::setUp(); 00041 $this->viewHelper = $this->getAccessibleMock('Tx_Fluid_ViewHelpers_Form_UploadViewHelper', 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 $this->viewHelper->setArguments(new Tx_Fluid_Core_ViewHelper_Arguments(array())); 00055 00056 $this->viewHelper->initialize(); 00057 $this->viewHelper->render(); 00058 } 00059 00060 /** 00061 * @test 00062 * @author Sebastian Kurfürst <sebastian@typo3.org> 00063 * @author Bastian Waidelich <bastian@typo3.org> 00064 */ 00065 public function renderCorrectlySetsTypeNameAndValueAttributes() { 00066 $mockTagBuilder = $this->getMock('Tx_Fluid_Core_ViewHelper_TagBuilder', array('addAttribute', 'setContent', 'render'), array(), '', FALSE); 00067 $mockTagBuilder->expects($this->at(0))->method('addAttribute')->with('type', 'file'); 00068 $mockTagBuilder->expects($this->at(1))->method('addAttribute')->with('name', 'someName'); 00069 $this->viewHelper->expects($this->once())->method('registerFieldNameForFormTokenGeneration')->with('someName'); 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' => 'someName', 00075 )); 00076 00077 $this->viewHelper->setArguments($arguments); 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 ?>
1.8.0