function RouteProviderTest::httpKernelHandle

Same name and namespace in other branches
  1. 10 core/tests/Drupal/KernelTests/Core/Entity/RouteProviderTest.php \Drupal\KernelTests\Core\Entity\RouteProviderTest::httpKernelHandle()
  2. 9 core/tests/Drupal/KernelTests/Core/Entity/RouteProviderTest.php \Drupal\KernelTests\Core\Entity\RouteProviderTest::httpKernelHandle()
  3. 8.9.x core/tests/Drupal/KernelTests/Core/Entity/RouteProviderTest.php \Drupal\KernelTests\Core\Entity\RouteProviderTest::httpKernelHandle()

Returns the handle of the HTTP kernel service.

2 calls to RouteProviderTest::httpKernelHandle()
RouteProviderTest::testAdminHtmlRoutes in core/tests/Drupal/KernelTests/Core/Entity/RouteProviderTest.php
Tests admin html routes.
RouteProviderTest::testHtmlRoutes in core/tests/Drupal/KernelTests/Core/Entity/RouteProviderTest.php
Tests html routes.

File

core/tests/Drupal/KernelTests/Core/Entity/RouteProviderTest.php, line 59

Class

RouteProviderTest
Tests route providers for entity types.

Namespace

Drupal\KernelTests\Core\Entity

Code

protected function httpKernelHandle($url) {
  $request = Request::create($url);
  /** @var \Symfony\Component\HttpKernel\HttpKernelInterface $http_kernel */
  $http_kernel = \Drupal::service('http_kernel');
  return $http_kernel->handle($request, HttpKernelInterface::SUB_REQUEST)
    ->getContent();
}

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