123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <?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\Bridge\PhpUnit\ExpectDeprecationTrait;
- use Symfony\Component\HttpFoundation\InputBag;
- class InputBagTest extends TestCase
- {
- use ExpectDeprecationTrait;
- public function testGet()
- {
- $bag = new InputBag(['foo' => 'bar', 'null' => null, 'int' => 1, 'float' => 1.0, 'bool' => false]);
- $this->assertSame('bar', $bag->get('foo'), '->get() gets the value of a string parameter');
- $this->assertSame('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');
- $this->assertSame(1, $bag->get('int'), '->get() gets the value of an int parameter');
- $this->assertSame(1.0, $bag->get('float'), '->get() gets the value of a float parameter');
- $this->assertFalse($bag->get('bool'), '->get() gets the value of a bool parameter');
- }
- public function testGetDoesNotUseDeepByDefault()
- {
- $bag = new InputBag(['foo' => ['bar' => 'moo']]);
- $this->assertNull($bag->get('foo[bar]'));
- }
- public function testFilterArray()
- {
- $bag = new InputBag([
- 'foo' => ['12', '8'],
- ]);
- $result = $bag->filter('foo', null, \FILTER_VALIDATE_INT, \FILTER_FORCE_ARRAY);
- $this->assertSame([12, 8], $result);
- }
- /**
- * @group legacy
- */
- public function testFilterCallback()
- {
- $bag = new InputBag(['foo' => 'bar']);
- $this->expectDeprecation('Since symfony/http-foundation 5.2: Not passing a Closure together with FILTER_CALLBACK to "Symfony\Component\HttpFoundation\InputBag::filter()" is deprecated. Wrap your filter in a closure instead.');
- $this->assertSame('BAR', $bag->filter('foo', null, \FILTER_CALLBACK, ['options' => 'strtoupper']));
- }
- /**
- * @group legacy
- */
- public function testSetWithNonScalarOrArrayIsDeprecated()
- {
- $bag = new InputBag();
- $this->expectDeprecation('Since symfony/http-foundation 5.1: Passing "Symfony\Component\HttpFoundation\InputBag" as a 2nd Argument to "Symfony\Component\HttpFoundation\InputBag::set()" is deprecated, pass a scalar, array, or null instead.');
- $bag->set('foo', new InputBag());
- }
- /**
- * @group legacy
- */
- public function testGettingANonScalarValueIsDeprecated()
- {
- $bag = new InputBag(['foo' => ['a', 'b']]);
- $this->expectDeprecation('Since symfony/http-foundation 5.1: Retrieving a non-scalar value from "Symfony\Component\HttpFoundation\InputBag::get()" is deprecated, and will throw a "Symfony\Component\HttpFoundation\Exception\BadRequestException" exception in Symfony 6.0, use "Symfony\Component\HttpFoundation\InputBag::all($key)" instead.');
- $bag->get('foo');
- }
- /**
- * @group legacy
- */
- public function testGetWithNonStringDefaultValueIsDeprecated()
- {
- $bag = new InputBag(['foo' => 'bar']);
- $this->expectDeprecation('Since symfony/http-foundation 5.1: Passing a non-scalar value as 2nd argument to "Symfony\Component\HttpFoundation\InputBag::get()" is deprecated, pass a scalar or null instead.');
- $bag->get('foo', ['a', 'b']);
- }
- /**
- * @group legacy
- */
- public function testFilterArrayWithoutArrayFlagIsDeprecated()
- {
- $bag = new InputBag(['foo' => ['bar', 'baz']]);
- $this->expectDeprecation('Since symfony/http-foundation 5.1: Filtering an array value with "Symfony\Component\HttpFoundation\InputBag::filter()" without passing the FILTER_REQUIRE_ARRAY or FILTER_FORCE_ARRAY flag is deprecated');
- $bag->filter('foo', \FILTER_VALIDATE_INT);
- }
- }
|