InputBagTest.php

Namespace

Drupal\Tests\Core\Http

File

core/tests/Drupal/Tests/Core/Http/InputBagTest.php

View source
<?php

namespace Drupal\Tests\Core\Http;

use Drupal\Core\Http\InputBag;
use Drupal\Tests\UnitTestCase;
use Symfony\Component\HttpFoundation\Request;

/**
 * @coversDefaultClass \Drupal\Core\Http\InputBag
 *
 * @group Http
 */
class InputBagTest extends UnitTestCase {
    
    /**
     * @covers ::all
     */
    public function testAll() {
        $input = [
            'bad' => 'bad',
            'good' => [
                'good',
            ],
        ];
        $input_bag = new InputBag();
        $input_bag->replace($input);
        $this->assertSame($input_bag->all(), $input);
        $this->assertSame($input_bag->all('good'), [
            'good',
        ]);
        $this->expectException(\UnexpectedValueException::class);
        $input_bag->all('bad');
    }
    
    /**
     * @coversNothing
     * @todo Remove this when Symfony 4 is no longer supported.
     */
    public function testRequestFactory() {
        $request = Request::create('');
        $this->assertInstanceOf(InputBag::class, $request->query);
    }

}

Classes

Title Deprecated Summary
InputBagTest @coversDefaultClass \Drupal\Core\Http\InputBag

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.