Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
www.humitest.fr
/
htdocs
/
vendor
/
symfony
/
form
/
Tests
/
Command
/
/srv/data/web/vhosts/www.humitest.fr/htdocs/vendor/symfony/form/Tests/Command/DebugCommandTest.php
<?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\Command; use PHPUnit\Framework\TestCase; use Symfony\Component\Console\Application; use Symfony\Component\Console\Exception\InvalidArgumentException; use Symfony\Component\Console\Tester\CommandTester; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Command\DebugCommand; use Symfony\Component\Form\Extension\Core\Type\TextType; use Symfony\Component\Form\FormRegistry; use Symfony\Component\Form\ResolvedFormTypeFactory; use Symfony\Component\OptionsResolver\Options; use Symfony\Component\OptionsResolver\OptionsResolver; class DebugCommandTest extends TestCase { public function testDebugDefaults() { $tester = $this->createCommandTester(); $ret = $tester->execute([], ['decorated' => false]); $this->assertEquals(0, $ret, 'Returns 0 in case of success'); $this->assertContains('Built-in form types', $tester->getDisplay()); } public function testDebugDeprecatedDefaults() { $tester = $this->createCommandTester(['Symfony\Component\Form\Tests\Console\Descriptor'], [TextType::class, FooType::class]); $ret = $tester->execute(['--show-deprecated' => true], ['decorated' => false]); $this->assertEquals(0, $ret, 'Returns 0 in case of success'); $this->assertSame(<<<TXT Built-in form types (Symfony\Component\Form\Extension\Core\Type) ---------------------------------------------------------------- IntegerType, TimezoneType Service form types ------------------ * Symfony\Component\Form\Tests\Command\FooType TXT , $tester->getDisplay(true)); } public function testDebugSingleFormType() { $tester = $this->createCommandTester(); $ret = $tester->execute(['class' => 'FormType'], ['decorated' => false]); $this->assertEquals(0, $ret, 'Returns 0 in case of success'); $this->assertContains('Symfony\Component\Form\Extension\Core\Type\FormType (Block prefix: "form")', $tester->getDisplay()); } public function testDebugFormTypeOption() { $tester = $this->createCommandTester(); $ret = $tester->execute(['class' => 'FormType', 'option' => 'method'], ['decorated' => false]); $this->assertEquals(0, $ret, 'Returns 0 in case of success'); $this->assertContains('Symfony\Component\Form\Extension\Core\Type\FormType (method)', $tester->getDisplay()); } /** * @expectedException \Symfony\Component\Console\Exception\InvalidArgumentException * @expectedExceptionMessage Could not find type "NonExistentType" */ public function testDebugSingleFormTypeNotFound() { $tester = $this->createCommandTester(); $tester->execute(['class' => 'NonExistentType'], ['decorated' => false, 'interactive' => false]); } public function testDebugAmbiguousFormType() { $expectedMessage = <<<TXT The type "AmbiguousType" is ambiguous. Did you mean one of these? Symfony\Component\Form\Tests\Fixtures\Debug\A\AmbiguousType Symfony\Component\Form\Tests\Fixtures\Debug\B\AmbiguousType TXT; if (method_exists($this, 'expectException')) { $this->expectException(InvalidArgumentException::class); $this->expectExceptionMessage($expectedMessage); } else { $this->setExpectedException(InvalidArgumentException::class, $expectedMessage); } $tester = $this->createCommandTester([ 'Symfony\Component\Form\Tests\Fixtures\Debug\A', 'Symfony\Component\Form\Tests\Fixtures\Debug\B', ]); $tester->execute(['class' => 'AmbiguousType'], ['decorated' => false, 'interactive' => false]); } public function testDebugAmbiguousFormTypeInteractive() { $tester = $this->createCommandTester([ 'Symfony\Component\Form\Tests\Fixtures\Debug\A', 'Symfony\Component\Form\Tests\Fixtures\Debug\B', ]); $tester->setInputs([0]); $tester->execute(['class' => 'AmbiguousType'], ['decorated' => false, 'interactive' => true]); $this->assertEquals(0, $tester->getStatusCode(), 'Returns 0 in case of success'); $output = $tester->getDisplay(true); $this->assertStringMatchesFormat(<<<TXT The type "AmbiguousType" is ambiguous. Select one of the following form types to display its information: [%A\A\AmbiguousType]: [0] %A\A\AmbiguousType [1] %A\B\AmbiguousType %A %A\A\AmbiguousType (Block prefix: "ambiguous") %A TXT , $output); } /** * @expectedException \InvalidArgumentException */ public function testDebugInvalidFormType() { $this->createCommandTester()->execute(['class' => 'test']); } private function createCommandTester(array $namespaces = ['Symfony\Component\Form\Extension\Core\Type'], array $types = []) { $formRegistry = new FormRegistry([], new ResolvedFormTypeFactory()); $command = new DebugCommand($formRegistry, $namespaces, $types); $application = new Application(); $application->add($command); return new CommandTester($application->find('debug:form')); } } class FooType extends AbstractType { public function configureOptions(OptionsResolver $resolver) { $resolver->setRequired('foo'); $resolver->setDefined('bar'); $resolver->setDeprecated('bar'); $resolver->setDefault('empty_data', function (Options $options) { $foo = $options['foo']; return function (FormInterface $form) use ($foo) { return $form->getConfig()->getCompound() ? [$foo] : $foo; }; }); $resolver->setAllowedTypes('foo', 'string'); $resolver->setAllowedValues('foo', ['bar', 'baz']); $resolver->setNormalizer('foo', function (Options $options, $value) { return (string) $value; }); } }