function LazyRouteProviderInstallTest::testInstallation

Same name and namespace in other branches
  1. 9 core/tests/Drupal/FunctionalTests/Routing/LazyRouteProviderInstallTest.php \Drupal\FunctionalTests\Routing\LazyRouteProviderInstallTest::testInstallation()
  2. 8.9.x core/tests/Drupal/FunctionalTests/Routing/LazyRouteProviderInstallTest.php \Drupal\FunctionalTests\Routing\LazyRouteProviderInstallTest::testInstallation()
  3. 11.x core/tests/Drupal/FunctionalTests/Routing/LazyRouteProviderInstallTest.php \Drupal\FunctionalTests\Routing\LazyRouteProviderInstallTest::testInstallation()

Tests that the lazy route provider is used during a module install.

File

core/tests/Drupal/FunctionalTests/Routing/LazyRouteProviderInstallTest.php, line 27

Class

LazyRouteProviderInstallTest
@group routing

Namespace

Drupal\FunctionalTests\Routing

Code

public function testInstallation() : void {
  $this->container
    ->get('module_installer')
    ->install([
    'router_test',
  ]);
  // Note that on DrupalCI the test site is installed in a sub directory so
  // we cannot use ::assertEquals().
  $this->assertStringEndsWith('/admin', \Drupal::state()->get('Drupal\\lazy_route_provider_install_test\\PluginManager'));
  $this->assertStringEndsWith('/router_test/test1', \Drupal::state()->get('router_test_install'));
  // If there is an exception thrown in rebuilding a route then the state
  // 'lazy_route_provider_install_test_menu_links_discovered_alter' will be
  // set.
  // @see lazy_route_provider_install_test_menu_links_discovered_alter().
  $this->assertEquals('success', \Drupal::state()->get('lazy_route_provider_install_test_menu_links_discovered_alter', NULL));
}

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