function PathMatcherTest::testOutlinePathMatch

Confirms that we can find routes whose pattern would match the request.

File

drupal/core/modules/system/lib/Drupal/system/Tests/Routing/PathMatcherTest.php, line 102
Definition of Drupal\system\Tests\Routing\PartialMatcherTest.

Class

PathMatcherTest
Basic tests for the UrlMatcherDumper.

Namespace

Drupal\system\Tests\Routing

Code

function testOutlinePathMatch() {
  $connection = Database::getConnection();
  $matcher = new PathMatcher($connection, 'test_routes');
  $this->fixtures
    ->createTables($connection);
  $dumper = new MatcherDumper($connection, 'test_routes');
  $dumper
    ->addRoutes($this->fixtures
    ->complexRouteCollection());
  $dumper
    ->dump();
  $path = '/path/1/one';
  $request = Request::create($path, 'GET');
  $routes = $matcher
    ->matchRequestPartial($request);

  // All of the matching paths have the correct pattern.
  foreach ($routes as $route) {
    $this
      ->assertEqual($route
      ->compile()
      ->getPatternOutline(), '/path/%/one', 'Found path has correct pattern');
  }
  $this
    ->assertEqual(count($routes
    ->all()), 2, 'The correct number of routes was found.');
  $this
    ->assertNotNull($routes
    ->get('route_a'), 'The first matching route was found.');
  $this
    ->assertNotNull($routes
    ->get('route_b'), 'The second matching route was not found.');
}