RouteMatchTest.php

Same filename and directory in other branches
  1. 9 core/tests/Drupal/Tests/Core/Routing/RouteMatchTest.php
  2. 8.9.x core/tests/Drupal/Tests/Core/Routing/RouteMatchTest.php
  3. 11.x core/tests/Drupal/Tests/Core/Routing/RouteMatchTest.php

Namespace

Drupal\Tests\Core\Routing

File

core/tests/Drupal/Tests/Core/Routing/RouteMatchTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\Core\Routing;

use Drupal\Core\Routing\RouteMatch;
use Drupal\Core\Routing\RouteMatchInterface;
use Drupal\Core\Routing\RouteObjectInterface;
use Symfony\Component\HttpFoundation\InputBag;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Routing\Route;

/**
 * @coversDefaultClass \Drupal\Core\Routing\RouteMatch
 * @group Routing
 */
class RouteMatchTest extends RouteMatchTestBase {
  
  /**
   * {@inheritdoc}
   */
  protected static function getRouteMatch(string $name, Route $route, array $parameters, array $raw_parameters) : RouteMatchInterface {
    return new RouteMatch($name, $route, $parameters, $raw_parameters);
  }
  
  /**
   * @covers ::createFromRequest
   * @covers ::__construct
   */
  public function testRouteMatchFromRequest() : void {
    $request = new Request();
    // A request that hasn't been routed yet.
    $route_match = RouteMatch::createFromRequest($request);
    $this->assertNull($route_match->getRouteName());
    $this->assertNull($route_match->getRouteObject());
    $this->assertSame([], $route_match->getParameters()
      ->all());
    $this->assertNull($route_match->getParameter('foo'));
    $this->assertSame([], $route_match->getRawParameters()
      ->all());
    $this->assertNull($route_match->getRawParameter('foo'));
    // A routed request without parameter upcasting.
    $route = new Route('/test-route/{foo}');
    $request->attributes
      ->set(RouteObjectInterface::ROUTE_NAME, 'test_route');
    $request->attributes
      ->set(RouteObjectInterface::ROUTE_OBJECT, $route);
    $request->attributes
      ->set('foo', '1');
    $route_match = RouteMatch::createFromRequest($request);
    $this->assertSame('test_route', $route_match->getRouteName());
    $this->assertSame($route, $route_match->getRouteObject());
    $this->assertSame([
      'foo' => '1',
    ], $route_match->getParameters()
      ->all());
    $this->assertSame([], $route_match->getRawParameters()
      ->all());
    // A routed request with parameter upcasting.
    $foo = new \stdClass();
    $foo->value = 1;
    $request->attributes
      ->set('foo', $foo);
    $request->attributes
      ->set('_raw_variables', new InputBag([
      'foo' => '1',
    ]));
    $route_match = RouteMatch::createFromRequest($request);
    $this->assertSame([
      'foo' => $foo,
    ], $route_match->getParameters()
      ->all());
    $this->assertSame([
      'foo' => '1',
    ], $route_match->getRawParameters()
      ->all());
  }

}

Classes

Title Deprecated Summary
RouteMatchTest @coversDefaultClass \Drupal\Core\Routing\RouteMatch[[api-linebreak]] @group Routing

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