-
-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathFormFactoryTest.php
220 lines (174 loc) · 8.39 KB
/
FormFactoryTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
<?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;
use PHPUnit\Framework\TestCase;
use Symfony\Component\Form\Extension\Core\Type\PasswordType;
use Symfony\Component\Form\Extension\Core\Type\TextType;
use Symfony\Component\Form\FormFactory;
use Symfony\Component\Form\FormRegistry;
use Symfony\Component\Form\FormTypeGuesserChain;
use Symfony\Component\Form\FormTypeGuesserInterface;
use Symfony\Component\Form\Guess\Guess;
use Symfony\Component\Form\Guess\TypeGuess;
use Symfony\Component\Form\Guess\ValueGuess;
use Symfony\Component\Form\PreloadedExtension;
use Symfony\Component\Form\ResolvedFormTypeFactory;
use Symfony\Component\Form\Tests\Fixtures\ConfigurableFormType;
/**
* @author Bernhard Schussek <bschussek@gmail.com>
*/
class FormFactoryTest extends TestCase
{
private ConfigurableFormTypeGuesser $guesser1;
private ConfigurableFormTypeGuesser $guesser2;
private FormRegistry $registry;
private FormFactory $factory;
protected function setUp(): void
{
$this->guesser1 = new ConfigurableFormTypeGuesser();
$this->guesser2 = new ConfigurableFormTypeGuesser();
$this->registry = new FormRegistry([
new PreloadedExtension([
new ConfigurableFormType(),
], [], new FormTypeGuesserChain([$this->guesser1, $this->guesser2])),
], new ResolvedFormTypeFactory());
$this->factory = new FormFactory($this->registry);
}
public function testCreateNamedBuilderWithTypeName()
{
$builder = $this->factory->createNamedBuilder('name', ConfigurableFormType::class, null, ['a' => '1', 'b' => '2']);
$this->assertSame('1', $builder->getOption('a'));
$this->assertSame('2', $builder->getOption('b'));
}
public function testCreateNamedBuilderFillsDataOption()
{
$builder = $this->factory->createNamedBuilder('name', ConfigurableFormType::class, 'DATA', ['a' => '1', 'b' => '2']);
$this->assertSame('DATA', $builder->getOption('data'));
}
public function testCreateNamedBuilderDoesNotOverrideExistingDataOption()
{
$builder = $this->factory->createNamedBuilder('name', ConfigurableFormType::class, 'DATA', ['a' => '1', 'b' => '2', 'data' => 'CUSTOM']);
$this->assertSame('CUSTOM', $builder->getOption('data'));
}
public function testCreateUsesBlockPrefixIfTypeGivenAsString()
{
$form = $this->factory->create(ConfigurableFormType::class);
$this->assertSame('configurable_form_prefix', $form->getName());
}
public function testCreateNamed()
{
$form = $this->factory->createNamed('name', ConfigurableFormType::class, null, ['a' => '1', 'b' => '2']);
$this->assertSame('1', $form->getConfig()->getOption('a'));
$this->assertSame('2', $form->getConfig()->getOption('b'));
}
public function testCreateBuilderForPropertyWithoutTypeGuesser()
{
$builder = $this->factory->createBuilderForProperty('Application\Author', 'firstName');
$this->assertSame('firstName', $builder->getName());
}
public function testCreateBuilderForPropertyCreatesFormWithHighestConfidence()
{
$this->guesser1->configureTypeGuess(TextType::class, ['attr' => ['maxlength' => 10]], Guess::MEDIUM_CONFIDENCE);
$this->guesser2->configureTypeGuess(PasswordType::class, ['attr' => ['maxlength' => 7]], Guess::HIGH_CONFIDENCE);
$builder = $this->factory->createBuilderForProperty('Application\Author', 'firstName');
$this->assertSame('firstName', $builder->getName());
$this->assertSame(['maxlength' => 7], $builder->getOption('attr'));
$this->assertInstanceOf(PasswordType::class, $builder->getType()->getInnerType());
}
public function testCreateBuilderCreatesTextFormIfNoGuess()
{
$builder = $this->factory->createBuilderForProperty('Application\Author', 'firstName');
$this->assertSame('firstName', $builder->getName());
$this->assertInstanceOf(TextType::class, $builder->getType()->getInnerType());
}
public function testOptionsCanBeOverridden()
{
$this->guesser1->configureTypeGuess(TextType::class, ['attr' => ['class' => 'foo', 'maxlength' => 10]], Guess::MEDIUM_CONFIDENCE);
$builder = $this->factory->createBuilderForProperty('Application\Author', 'firstName', null, ['attr' => ['maxlength' => 11]]);
$this->assertSame('firstName', $builder->getName());
$this->assertSame(['class' => 'foo', 'maxlength' => 11], $builder->getOption('attr'));
$this->assertInstanceOf(TextType::class, $builder->getType()->getInnerType());
}
public function testCreateBuilderUsesMaxLengthIfFound()
{
$this->guesser1->configureMaxLengthGuess(15, Guess::MEDIUM_CONFIDENCE);
$this->guesser2->configureMaxLengthGuess(20, Guess::HIGH_CONFIDENCE);
$builder = $this->factory->createBuilderForProperty('Application\Author', 'firstName');
$this->assertSame('firstName', $builder->getName());
$this->assertSame(['maxlength' => 20], $builder->getOption('attr'));
$this->assertInstanceOf(TextType::class, $builder->getType()->getInnerType());
}
public function testCreateBuilderUsesMaxLengthAndPattern()
{
$this->guesser1->configureMaxLengthGuess(20, Guess::HIGH_CONFIDENCE);
$this->guesser2->configurePatternGuess('.{5,}', Guess::HIGH_CONFIDENCE);
$builder = $this->factory->createBuilderForProperty('Application\Author', 'firstName', null, ['attr' => ['class' => 'tinymce']]);
$this->assertSame('firstName', $builder->getName());
$this->assertSame(['maxlength' => 20, 'pattern' => '.{5,}', 'class' => 'tinymce'], $builder->getOption('attr'));
$this->assertInstanceOf(TextType::class, $builder->getType()->getInnerType());
}
public function testCreateBuilderUsesRequiredSettingWithHighestConfidence()
{
$this->guesser1->configureRequiredGuess(true, Guess::MEDIUM_CONFIDENCE);
$this->guesser2->configureRequiredGuess(false, Guess::HIGH_CONFIDENCE);
$builder = $this->factory->createBuilderForProperty('Application\Author', 'firstName');
$this->assertSame('firstName', $builder->getName());
$this->assertFalse($builder->getOption('required'));
$this->assertInstanceOf(TextType::class, $builder->getType()->getInnerType());
}
public function testCreateBuilderUsesPatternIfFound()
{
$this->guesser1->configurePatternGuess('[a-z]', Guess::MEDIUM_CONFIDENCE);
$this->guesser2->configurePatternGuess('[a-zA-Z]', Guess::HIGH_CONFIDENCE);
$builder = $this->factory->createBuilderForProperty('Application\Author', 'firstName');
$this->assertSame('firstName', $builder->getName());
$this->assertSame(['pattern' => '[a-zA-Z]'], $builder->getOption('attr'));
$this->assertInstanceOf(TextType::class, $builder->getType()->getInnerType());
}
}
class ConfigurableFormTypeGuesser implements FormTypeGuesserInterface
{
private ?TypeGuess $typeGuess = null;
private ?ValueGuess $requiredGuess = null;
private ?ValueGuess $maxLengthGuess = null;
private ?ValueGuess $patternGuess = null;
public function guessType($class, $property): ?TypeGuess
{
return $this->typeGuess;
}
public function guessRequired($class, $property): ?ValueGuess
{
return $this->requiredGuess;
}
public function guessMaxLength($class, $property): ?ValueGuess
{
return $this->maxLengthGuess;
}
public function guessPattern($class, $property): ?ValueGuess
{
return $this->patternGuess;
}
public function configureTypeGuess(string $type, array $options, int $confidence): void
{
$this->typeGuess = new TypeGuess($type, $options, $confidence);
}
public function configureRequiredGuess(bool $required, int $confidence): void
{
$this->requiredGuess = new ValueGuess($required, $confidence);
}
public function configureMaxLengthGuess(int $maxLength, int $confidence): void
{
$this->maxLengthGuess = new ValueGuess($maxLength, $confidence);
}
public function configurePatternGuess(string $pattern, int $confidence): void
{
$this->patternGuess = new ValueGuess($pattern, $confidence);
}
}