PATH:
opt
/
alt
/
php54
/
usr
/
share
/
pear
/
test
/
Form
/
Symfony
/
Component
/
Form
/
Tests
/
Extension
/
Core
/
Type
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Form\Tests\Extension\Core\Type; class PasswordTypeTest extends \Symfony\Component\Form\Test\TypeTestCase { public function testEmptyIfNotSubmitted() { $form = $this->factory->create('password'); $form->setData('pAs5w0rd'); $view = $form->createView(); $this->assertSame('', $view->vars['value']); } public function testEmptyIfSubmitted() { $form = $this->factory->create('password'); $form->submit('pAs5w0rd'); $view = $form->createView(); $this->assertSame('', $view->vars['value']); } public function testNotEmptyIfSubmittedAndNotAlwaysEmpty() { $form = $this->factory->create('password', null, array('always_empty' => false)); $form->submit('pAs5w0rd'); $view = $form->createView(); $this->assertSame('pAs5w0rd', $view->vars['value']); } public function testNotTrimmed() { $form = $this->factory->create('password', null); $form->submit(' pAs5w0rd '); $data = $form->getData(); $this->assertSame(' pAs5w0rd ', $data); } }
[-] NumberTypeTest.php
[edit]
[-] LanguageTypeTest.php
[edit]
[-] IntegerTypeTest.php
[edit]
[-] UrlTypeTest.php
[edit]
[-] TimeTypeTest.php
[edit]
[-] LocaleTypeTest.php
[edit]
[-] FileTypeTest.php
[edit]
[-] SubmitTypeTest.php
[edit]
[-] CollectionTypeTest.php
[edit]
[-] TimezoneTypeTest.php
[edit]
[-] RepeatedTypeTest.php
[edit]
[-] TypeTestCase.php
[edit]
[-] ChoiceTypePerformanceTest.php
[edit]
[-] CurrencyTypeTest.php
[edit]
[-] CheckboxTypeTest.php
[edit]
[-] ButtonTypeTest.php
[edit]
[-] PasswordTypeTest.php
[edit]
[-] DateTypeTest.php
[edit]
[-] MoneyTypeTest.php
[edit]
[-] DateTimeTypeTest.php
[edit]
[+]
..
[-] CountryTypeTest.php
[edit]
[-] FormTypeTest.php
[edit]
[-] ChoiceTypeTest.php
[edit]
[-] BaseTypeTest.php
[edit]