PATH:
opt
/
alt
/
php53
/
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 UrlTypeTest extends TypeTestCase { public function testSubmitAddsDefaultProtocolIfNoneIsIncluded() { $form = $this->factory->create('url', 'name'); $form->submit('www.domain.com'); $this->assertSame('http://www.domain.com', $form->getData()); $this->assertSame('http://www.domain.com', $form->getViewData()); } public function testSubmitAddsNoDefaultProtocolIfAlreadyIncluded() { $form = $this->factory->create('url', null, array( 'default_protocol' => 'http', )); $form->submit('ftp://www.domain.com'); $this->assertSame('ftp://www.domain.com', $form->getData()); $this->assertSame('ftp://www.domain.com', $form->getViewData()); } public function testSubmitAddsNoDefaultProtocolIfEmpty() { $form = $this->factory->create('url', null, array( 'default_protocol' => 'http', )); $form->submit(''); $this->assertNull($form->getData()); $this->assertSame('', $form->getViewData()); } public function testSubmitAddsNoDefaultProtocolIfSetToNull() { $form = $this->factory->create('url', null, array( 'default_protocol' => null, )); $form->submit('www.domain.com'); $this->assertSame('www.domain.com', $form->getData()); $this->assertSame('www.domain.com', $form->getViewData()); } }
[-] 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]