public function RouteProviderTest::testExactPathMatch in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/KernelTests/Core/Routing/RouteProviderTest.php \Drupal\KernelTests\Core\Routing\RouteProviderTest::testExactPathMatch()
- 10 core/tests/Drupal/KernelTests/Core/Routing/RouteProviderTest.php \Drupal\KernelTests\Core\Routing\RouteProviderTest::testExactPathMatch()
Confirms that we can find routes with the exact incoming path.
File
- core/tests/ Drupal/ KernelTests/ Core/ Routing/ RouteProviderTest.php, line 156 
- Contains \Drupal\KernelTests\Core\Routing\RouteProviderTest.
Class
- RouteProviderTest
- Confirm that the default route provider is working correctly.
Namespace
Drupal\KernelTests\Core\RoutingCode
public function testExactPathMatch() {
  $connection = Database::getConnection();
  $provider = new RouteProvider($connection, $this->state, $this->currentPath, $this->cache, $this->pathProcessor, $this->cacheTagsInvalidator, 'test_routes');
  $this->fixtures
    ->createTables($connection);
  $dumper = new MatcherDumper($connection, $this->state, 'test_routes');
  $dumper
    ->addRoutes($this->fixtures
    ->sampleRouteCollection());
  $dumper
    ->dump();
  $path = '/path/one';
  $request = Request::create($path, 'GET');
  $routes = $provider
    ->getRouteCollectionForRequest($request);
  foreach ($routes as $route) {
    $this
      ->assertEquals($path, $route
      ->getPath(), 'Found path has correct pattern');
  }
}