This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/tests/Symfony/Tests/Component/Form/FormFactoryTest.php

61 lines
1.7 KiB
PHP

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Tests\Component\Form;
require_once __DIR__ . '/Fixtures/Author.php';
require_once __DIR__ . '/Fixtures/TestField.php';
use Symfony\Component\Form\FormFactory;
use Symfony\Component\Form\FormContext;
use Symfony\Component\Form\CsrfProvider\DefaultCsrfProvider;
class FormFactoryTest extends \PHPUnit_Framework_TestCase
{
protected $validator;
protected function setUp()
{
$this->validator = $this->getMock('Symfony\Component\Validator\ValidatorInterface');
}
public function testBuildDefaultWithCsrfProtection()
{
$factory = FormFactory::buildDefault($this->validator, 'secret');
$context = new FormContext();
$context->validator($this->validator);
$context->csrfProtection(true);
$context->csrfProvider(new DefaultCsrfProvider('secret'));
$this->assertEquals(new FormFactory($context), $factory);
}
public function testBuildDefaultWithoutCsrfProtection()
{
$factory = FormFactory::buildDefault($this->validator, null, false);
$context = new FormContext();
$context->validator($this->validator);
$context->csrfProtection(false);
$this->assertEquals(new FormFactory($context), $factory);
}
/**
* @expectedException Symfony\Component\Form\Exception\FormException
*/
public function testBuildDefaultWithoutCsrfSecretThrowsException()
{
FormFactory::buildDefault($this->validator, null, true);
}
}