function RouterUnsupportedTest::testDeprecatedAdd

@covers ::addDeprecatedRouteFilter @covers ::addDeprecatedRouteEnhancer

File

core/tests/Drupal/Tests/Core/Routing/RouterUnsupportedTest.php, line 44

Class

RouterUnsupportedTest
@coversDefaultClass \Drupal\Core\Routing\Router @group Routing @group legacy

Namespace

Drupal\Tests\Core\Routing

Code

public function testDeprecatedAdd() : void {
    // Test needs access to router's protected properties.
    $filters = new \ReflectionProperty(Router::class, 'filters');
    $enhancers = new \ReflectionProperty(Router::class, 'enhancers');
    $route_provider = $this->prophesize(RouteProviderInterface::class);
    $current_path_stack = $this->prophesize(CurrentPathStack::class);
    $url_generator = $this->prophesize(UrlGeneratorInterface::class);
    $router = new Router($route_provider->reveal(), $current_path_stack->reveal(), $url_generator->reveal());
    $this->expectDeprecation('non_lazy_route_filter is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. Use route_filter instead. See https://www.drupal.org/node/2894934');
    $filter = $this->prophesize(FilterInterface::class)
        ->reveal();
    $router->addDeprecatedRouteFilter($filter);
    $this->assertSame($filter, $filters->getValue($router)[0]);
    $this->expectDeprecation('non_lazy_route_enhancer is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. Use route_enhancer instead. See https://www.drupal.org/node/2894934');
    $enhancer = $this->prophesize(EnhancerInterface::class)
        ->reveal();
    $router->addDeprecatedRouteEnhancer($enhancer);
    $this->assertSame($enhancer, $enhancers->getValue($router)[0]);
}

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