class ParamConversionEnhancerTest

Same name and namespace in other branches
  1. 8.9.x core/tests/Drupal/Tests/Core/Enhancer/ParamConversionEnhancerTest.php \Drupal\Tests\Core\Enhancer\ParamConversionEnhancerTest
  2. 10 core/tests/Drupal/Tests/Core/Enhancer/ParamConversionEnhancerTest.php \Drupal\Tests\Core\Enhancer\ParamConversionEnhancerTest
  3. 11.x core/tests/Drupal/Tests/Core/Enhancer/ParamConversionEnhancerTest.php \Drupal\Tests\Core\Enhancer\ParamConversionEnhancerTest

@coversDefaultClass \Drupal\Core\Routing\Enhancer\ParamConversionEnhancer @group Enhancer

Hierarchy

Expanded class hierarchy of ParamConversionEnhancerTest

File

core/tests/Drupal/Tests/Core/Enhancer/ParamConversionEnhancerTest.php, line 16

Namespace

Drupal\Tests\Core\Enhancer
View source
class ParamConversionEnhancerTest extends UnitTestCase {
    
    /**
     * @var \Drupal\Core\Routing\Enhancer\ParamConversionEnhancer
     */
    protected $paramConversionEnhancer;
    
    /**
     * @var \Drupal\Core\ParamConverter\ParamConverterManagerInterface|\PHPUnit\Framework\MockObject\MockObject
     */
    protected $paramConverterManager;
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() : void {
        parent::setUp();
        $this->paramConverterManager = $this->createMock('Drupal\\Core\\ParamConverter\\ParamConverterManagerInterface');
        $this->paramConversionEnhancer = new ParamConversionEnhancer($this->paramConverterManager);
    }
    
    /**
     * @covers ::enhance
     */
    public function testEnhance() {
        $route = new Route('/test/{id}/{literal}/{null}');
        $raw_variables = [
            'id' => 1,
            'literal' => 'this is a literal',
            'null' => NULL,
        ];
        $defaults = [
            RouteObjectInterface::ROUTE_OBJECT => $route,
        ] + $raw_variables;
        $expected = $defaults;
        $expected['id'] = 'something_better!';
        $expected['_raw_variables'] = new ParameterBag($raw_variables);
        $this->paramConverterManager
            ->expects($this->once())
            ->method('convert')
            ->with($this->isType('array'))
            ->willReturn($expected);
        $result = $this->paramConversionEnhancer
            ->enhance($defaults, new Request());
        $this->assertEquals($expected, $result);
        // Now run with the results as the new defaults to ensure that the
        // conversion is just run once.
        $result = $this->paramConversionEnhancer
            ->enhance($result, new Request());
        $this->assertEquals($expected, $result);
    }
    
    /**
     * @covers ::copyRawVariables
     */
    public function testCopyRawVariables() {
        $route = new Route('/test/{id}');
        $route->setDefault('node_type', 'page');
        $defaults = [
            RouteObjectInterface::ROUTE_OBJECT => $route,
            'id' => '1',
        ];
        // Set one default to mirror another by reference.
        $defaults['bar'] =& $defaults['id'];
        $this->paramConverterManager
            ->expects($this->any())
            ->method('convert')
            ->with($this->isType('array'))
            ->willReturnCallback(function ($defaults) {
            // Convert the mirrored default to another value.
            $defaults['bar'] = '2';
            return $defaults;
        });
        $expected = new ParameterBag([
            'id' => 1,
            'node_type' => 'page',
        ]);
        $result = $this->paramConversionEnhancer
            ->enhance($defaults, new Request());
        $this->assertEquals($result['_raw_variables'], $expected);
    }

}

Members

Title Sort descending Deprecated Modifiers Object type Summary Overriden Title Overrides
ParamConversionEnhancerTest::$paramConversionEnhancer protected property
ParamConversionEnhancerTest::$paramConverterManager protected property
ParamConversionEnhancerTest::setUp protected function Overrides UnitTestCase::setUp
ParamConversionEnhancerTest::testCopyRawVariables public function @covers ::copyRawVariables
ParamConversionEnhancerTest::testEnhance public function @covers ::enhance
PhpUnitWarnings::$deprecationWarnings private static property Deprecation warnings from PHPUnit to raise with @trigger_error().
PhpUnitWarnings::addWarning public function Converts PHPUnit deprecation warnings to E_USER_DEPRECATED.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals Deprecated protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.
UnitTestCase::setUpBeforeClass public static function

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