You are here

public function RoutingFixtures::sampleRouteCollection in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Routing/RoutingFixtures.php \Drupal\Tests\Core\Routing\RoutingFixtures::sampleRouteCollection()

Returns a standard set of routes for testing.

Return value

\Symfony\Component\Routing\RouteCollection

File

core/tests/Drupal/Tests/Core/Routing/RoutingFixtures.php, line 85

Class

RoutingFixtures
Utility methods to generate sample data, database configuration, etc.

Namespace

Drupal\Tests\Core\Routing

Code

public function sampleRouteCollection() {
  $collection = new RouteCollection();
  $route = new Route('path/one');
  $route
    ->setMethods([
    'GET',
  ]);
  $collection
    ->add('route_a', $route);
  $route = new Route('path/one');
  $route
    ->setMethods([
    'PUT',
  ]);
  $collection
    ->add('route_b', $route);
  $route = new Route('path/two');
  $route
    ->setMethods([
    'GET',
  ]);
  $route
    ->setRequirement('_format', 'json');
  $collection
    ->add('route_c', $route);
  $route = new Route('path/three');
  $collection
    ->add('route_d', $route);
  $route = new Route('path/two');
  $route
    ->setMethods([
    'GET',
    'HEAD',
  ]);
  $route
    ->setRequirement('_format', 'html');
  $collection
    ->add('route_e', $route);
  return $collection;
}