-
-
Notifications
You must be signed in to change notification settings - Fork 301
/
Copy pathParameterBagTest.php
369 lines (284 loc) · 15.4 KB
/
ParameterBagTest.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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
<?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\HttpFoundation\Tests;
use PHPUnit\Framework\TestCase;
use Symfony\Component\HttpFoundation\Exception\BadRequestException;
use Symfony\Component\HttpFoundation\Exception\UnexpectedValueException;
use Symfony\Component\HttpFoundation\ParameterBag;
use Symfony\Component\HttpFoundation\Tests\Fixtures\FooEnum;
class ParameterBagTest extends TestCase
{
public function testConstructor()
{
$this->testAll();
}
public function testAll()
{
$bag = new ParameterBag(['foo' => 'bar']);
$this->assertEquals(['foo' => 'bar'], $bag->all(), '->all() gets all the input');
}
public function testAllWithInputKey()
{
$bag = new ParameterBag(['foo' => ['bar', 'baz'], 'null' => null]);
$this->assertEquals(['bar', 'baz'], $bag->all('foo'), '->all() gets the value of a parameter');
$this->assertEquals([], $bag->all('unknown'), '->all() returns an empty array if a parameter is not defined');
}
public function testAllThrowsForNonArrayValues()
{
$this->expectException(BadRequestException::class);
$bag = new ParameterBag(['foo' => 'bar', 'null' => null]);
$bag->all('foo');
}
public function testKeys()
{
$bag = new ParameterBag(['foo' => 'bar']);
$this->assertEquals(['foo'], $bag->keys());
}
public function testAdd()
{
$bag = new ParameterBag(['foo' => 'bar']);
$bag->add(['bar' => 'bas']);
$this->assertEquals(['foo' => 'bar', 'bar' => 'bas'], $bag->all());
}
public function testRemove()
{
$bag = new ParameterBag(['foo' => 'bar']);
$bag->add(['bar' => 'bas']);
$this->assertEquals(['foo' => 'bar', 'bar' => 'bas'], $bag->all());
$bag->remove('bar');
$this->assertEquals(['foo' => 'bar'], $bag->all());
}
public function testReplace()
{
$bag = new ParameterBag(['foo' => 'bar']);
$bag->replace(['FOO' => 'BAR']);
$this->assertEquals(['FOO' => 'BAR'], $bag->all(), '->replace() replaces the input with the argument');
$this->assertFalse($bag->has('foo'), '->replace() overrides previously set the input');
}
public function testGet()
{
$bag = new ParameterBag(['foo' => 'bar', 'null' => null]);
$this->assertEquals('bar', $bag->get('foo'), '->get() gets the value of a parameter');
$this->assertEquals('default', $bag->get('unknown', 'default'), '->get() returns second argument as default if a parameter is not defined');
$this->assertNull($bag->get('null', 'default'), '->get() returns null if null is set');
}
public function testGetDoesNotUseDeepByDefault()
{
$bag = new ParameterBag(['foo' => ['bar' => 'moo']]);
$this->assertNull($bag->get('foo[bar]'));
}
public function testSet()
{
$bag = new ParameterBag([]);
$bag->set('foo', 'bar');
$this->assertEquals('bar', $bag->get('foo'), '->set() sets the value of parameter');
$bag->set('foo', 'baz');
$this->assertEquals('baz', $bag->get('foo'), '->set() overrides previously set parameter');
}
public function testHas()
{
$bag = new ParameterBag(['foo' => 'bar']);
$this->assertTrue($bag->has('foo'), '->has() returns true if a parameter is defined');
$this->assertFalse($bag->has('unknown'), '->has() return false if a parameter is not defined');
}
public function testGetAlpha()
{
$bag = new ParameterBag(['word' => 'foo_BAR_012', 'bool' => true, 'integer' => 123]);
$this->assertSame('fooBAR', $bag->getAlpha('word'), '->getAlpha() gets only alphabetic characters');
$this->assertSame('', $bag->getAlpha('unknown'), '->getAlpha() returns empty string if a parameter is not defined');
$this->assertSame('abcDEF', $bag->getAlpha('unknown', 'abc_DEF_012'), '->getAlpha() returns filtered default if a parameter is not defined');
$this->assertSame('', $bag->getAlpha('integer', 'abc_DEF_012'), '->getAlpha() returns empty string if a parameter is an integer');
$this->assertSame('', $bag->getAlpha('bool', 'abc_DEF_012'), '->getAlpha() returns empty string if a parameter is a boolean');
}
public function testGetAlphaExceptionWithArray()
{
$bag = new ParameterBag(['word' => ['foo_BAR_012']]);
$this->expectException(UnexpectedValueException::class);
$this->expectExceptionMessage('Parameter value "word" cannot be converted to "string".');
$bag->getAlpha('word');
}
public function testGetAlnum()
{
$bag = new ParameterBag(['word' => 'foo_BAR_012', 'bool' => true, 'integer' => 123]);
$this->assertSame('fooBAR012', $bag->getAlnum('word'), '->getAlnum() gets only alphanumeric characters');
$this->assertSame('', $bag->getAlnum('unknown'), '->getAlnum() returns empty string if a parameter is not defined');
$this->assertSame('abcDEF012', $bag->getAlnum('unknown', 'abc_DEF_012'), '->getAlnum() returns filtered default if a parameter is not defined');
$this->assertSame('123', $bag->getAlnum('integer', 'abc_DEF_012'), '->getAlnum() returns the number as string if a parameter is an integer');
$this->assertSame('1', $bag->getAlnum('bool', 'abc_DEF_012'), '->getAlnum() returns 1 if a parameter is true');
}
public function testGetAlnumExceptionWithArray()
{
$bag = new ParameterBag(['word' => ['foo_BAR_012']]);
$this->expectException(UnexpectedValueException::class);
$this->expectExceptionMessage('Parameter value "word" cannot be converted to "string".');
$bag->getAlnum('word');
}
public function testGetDigits()
{
$bag = new ParameterBag(['word' => 'foo_BAR_0+1-2', 'bool' => true, 'integer' => 123]);
$this->assertSame('012', $bag->getDigits('word'), '->getDigits() gets only digits as string');
$this->assertSame('', $bag->getDigits('unknown'), '->getDigits() returns empty string if a parameter is not defined');
$this->assertSame('012', $bag->getDigits('unknown', 'abc_DEF_012'), '->getDigits() returns filtered default if a parameter is not defined');
$this->assertSame('123', $bag->getDigits('integer', 'abc_DEF_012'), '->getDigits() returns the number as string if a parameter is an integer');
$this->assertSame('1', $bag->getDigits('bool', 'abc_DEF_012'), '->getDigits() returns 1 if a parameter is true');
}
public function testGetDigitsExceptionWithArray()
{
$bag = new ParameterBag(['word' => ['foo_BAR_012']]);
$this->expectException(UnexpectedValueException::class);
$this->expectExceptionMessage('Parameter value "word" cannot be converted to "string".');
$bag->getDigits('word');
}
public function testGetInt()
{
$bag = new ParameterBag(['digits' => '123', 'bool' => true]);
$this->assertSame(123, $bag->getInt('digits', 0), '->getInt() gets a value of parameter as integer');
$this->assertSame(0, $bag->getInt('unknown', 0), '->getInt() returns zero if a parameter is not defined');
$this->assertSame(10, $bag->getInt('unknown', 10), '->getInt() returns the default if a parameter is not defined');
$this->assertSame(1, $bag->getInt('bool', 0), '->getInt() returns 1 if a parameter is true');
}
public function testGetIntExceptionWithArray()
{
$bag = new ParameterBag(['digits' => ['123']]);
$this->expectException(\UnexpectedValueException::class);
$this->expectExceptionMessage('Parameter value "digits" is invalid and flag "FILTER_NULL_ON_FAILURE" was not set.');
$bag->getInt('digits');
}
public function testGetIntExceptionWithInvalid()
{
$bag = new ParameterBag(['word' => 'foo_BAR_012']);
$this->expectException(\UnexpectedValueException::class);
$this->expectExceptionMessage('Parameter value "word" is invalid and flag "FILTER_NULL_ON_FAILURE" was not set.');
$bag->getInt('word');
}
public function testGetString()
{
$bag = new ParameterBag(['integer' => 123, 'bool_true' => true, 'bool_false' => false, 'string' => 'abc', 'stringable' => new class implements \Stringable {
public function __toString(): string
{
return 'strval';
}
}]);
$this->assertSame('123', $bag->getString('integer'), '->getString() gets a value of parameter as string');
$this->assertSame('abc', $bag->getString('string'), '->getString() gets a value of parameter as string');
$this->assertSame('', $bag->getString('unknown'), '->getString() returns zero if a parameter is not defined');
$this->assertSame('foo', $bag->getString('unknown', 'foo'), '->getString() returns the default if a parameter is not defined');
$this->assertSame('1', $bag->getString('bool_true'), '->getString() returns "1" if a parameter is true');
$this->assertSame('', $bag->getString('bool_false', 'foo'), '->getString() returns an empty empty string if a parameter is false');
$this->assertSame('strval', $bag->getString('stringable'), '->getString() gets a value of a stringable parameter as string');
}
public function testGetStringExceptionWithArray()
{
$bag = new ParameterBag(['key' => ['abc']]);
$this->expectException(UnexpectedValueException::class);
$this->expectExceptionMessage('Parameter value "key" cannot be converted to "string".');
$bag->getString('key');
}
public function testGetStringExceptionWithObject()
{
$bag = new ParameterBag(['object' => $this]);
$this->expectException(UnexpectedValueException::class);
$this->expectExceptionMessage('Parameter value "object" cannot be converted to "string".');
$bag->getString('object');
}
public function testFilter()
{
$bag = new ParameterBag([
'digits' => '0123ab',
'email' => 'example@example.com',
'url' => 'http://example.com/foo',
'dec' => '256',
'hex' => '0x100',
'array' => ['bang'],
]);
$this->assertEmpty($bag->filter('nokey'), '->filter() should return empty by default if no key is found');
$this->assertEquals('0123', $bag->filter('digits', '', \FILTER_SANITIZE_NUMBER_INT), '->filter() gets a value of parameter as integer filtering out invalid characters');
$this->assertEquals('example@example.com', $bag->filter('email', '', \FILTER_VALIDATE_EMAIL), '->filter() gets a value of parameter as email');
$this->assertEquals('http://example.com/foo', $bag->filter('url', '', \FILTER_VALIDATE_URL, ['flags' => \FILTER_FLAG_PATH_REQUIRED]), '->filter() gets a value of parameter as URL with a path');
// This test is repeated for code-coverage
$this->assertEquals('http://example.com/foo', $bag->filter('url', '', \FILTER_VALIDATE_URL, \FILTER_FLAG_PATH_REQUIRED), '->filter() gets a value of parameter as URL with a path');
$this->assertNull($bag->filter('dec', '', \FILTER_VALIDATE_INT, [
'flags' => \FILTER_FLAG_ALLOW_HEX | \FILTER_NULL_ON_FAILURE,
'options' => ['min_range' => 1, 'max_range' => 0xFF],
]), '->filter() gets a value of parameter as integer between boundaries');
$this->assertNull($bag->filter('hex', '', \FILTER_VALIDATE_INT, [
'flags' => \FILTER_FLAG_ALLOW_HEX | \FILTER_NULL_ON_FAILURE,
'options' => ['min_range' => 1, 'max_range' => 0xFF],
]), '->filter() gets a value of parameter as integer between boundaries');
$this->assertEquals(['bang'], $bag->filter('array', ''), '->filter() gets a value of parameter as an array');
}
public function testFilterCallback()
{
$this->expectException(\InvalidArgumentException::class);
$this->expectExceptionMessage('A Closure must be passed to "Symfony\Component\HttpFoundation\ParameterBag::filter()" when FILTER_CALLBACK is used, "string" given.');
$bag = new ParameterBag(['foo' => 'bar']);
$bag->filter('foo', null, \FILTER_CALLBACK, ['options' => 'strtoupper']);
}
public function testFilterClosure()
{
$bag = new ParameterBag(['foo' => 'bar']);
$result = $bag->filter('foo', null, \FILTER_CALLBACK, ['options' => strtoupper(...)]);
$this->assertSame('BAR', $result);
}
public function testGetIterator()
{
$parameters = ['foo' => 'bar', 'hello' => 'world'];
$bag = new ParameterBag($parameters);
$i = 0;
foreach ($bag as $key => $val) {
++$i;
$this->assertEquals($parameters[$key], $val);
}
$this->assertEquals(\count($parameters), $i);
}
public function testCount()
{
$parameters = ['foo' => 'bar', 'hello' => 'world'];
$bag = new ParameterBag($parameters);
$this->assertCount(\count($parameters), $bag);
}
public function testGetBoolean()
{
$parameters = ['string_true' => 'true', 'string_false' => 'false', 'string' => 'abc'];
$bag = new ParameterBag($parameters);
$this->assertTrue($bag->getBoolean('string_true'), '->getBoolean() gets the string true as boolean true');
$this->assertFalse($bag->getBoolean('string_false'), '->getBoolean() gets the string false as boolean false');
$this->assertFalse($bag->getBoolean('unknown'), '->getBoolean() returns false if a parameter is not defined');
$this->assertTrue($bag->getBoolean('unknown', true), '->getBoolean() returns default if a parameter is not defined');
}
public function testGetBooleanExceptionWithInvalid()
{
$bag = new ParameterBag(['invalid' => 'foo']);
$this->expectException(\UnexpectedValueException::class);
$this->expectExceptionMessage('Parameter value "invalid" is invalid and flag "FILTER_NULL_ON_FAILURE" was not set.');
$bag->getBoolean('invalid');
}
public function testGetEnum()
{
$bag = new ParameterBag(['valid-value' => 1]);
$this->assertSame(FooEnum::Bar, $bag->getEnum('valid-value', FooEnum::class));
$this->assertNull($bag->getEnum('invalid-key', FooEnum::class));
$this->assertSame(FooEnum::Bar, $bag->getEnum('invalid-key', FooEnum::class, FooEnum::Bar));
}
public function testGetEnumThrowsExceptionWithNotBackingValue()
{
$bag = new ParameterBag(['invalid-value' => 2]);
$this->expectException(\UnexpectedValueException::class);
$this->expectExceptionMessage('Parameter "invalid-value" cannot be converted to enum: 2 is not a valid backing value for enum Symfony\Component\HttpFoundation\Tests\Fixtures\FooEnum.');
$this->assertNull($bag->getEnum('invalid-value', FooEnum::class));
}
public function testGetEnumThrowsExceptionWithInvalidValueType()
{
$bag = new ParameterBag(['invalid-value' => ['foo']]);
$this->expectException(UnexpectedValueException::class);
$this->expectExceptionMessage('Parameter "invalid-value" cannot be converted to enum: Symfony\Component\HttpFoundation\Tests\Fixtures\FooEnum::from(): Argument #1 ($value) must be of type int, array given.');
$this->assertNull($bag->getEnum('invalid-value', FooEnum::class));
}
}