You are here

protected function FunctionalTestSetupTrait::prepareRequestForGenerator in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Test/FunctionalTestSetupTrait.php \Drupal\Core\Test\FunctionalTestSetupTrait::prepareRequestForGenerator()
  2. 10 core/lib/Drupal/Core/Test/FunctionalTestSetupTrait.php \Drupal\Core\Test\FunctionalTestSetupTrait::prepareRequestForGenerator()

Creates a mock request and sets it on the generator.

This is used to manipulate how the generator generates paths during tests. It also ensures that calls to $this->drupalGet() will work when running from run-tests.sh because the url generator no longer looks at the global variables that are set there but relies on getting this information from a request object.

Parameters

bool $clean_urls: Whether to mock the request using clean urls.

array $override_server_vars: An array of server variables to override.

Return value

\Symfony\Component\HttpFoundation\Request The mocked request object.

4 calls to FunctionalTestSetupTrait::prepareRequestForGenerator()
DownloadTest::testFileCreateUrl in core/modules/file/tests/src/Functional/DownloadTest.php
Test FileUrlGeneratorInterface::generateString()
FunctionalTestSetupTrait::rebuildContainer in core/lib/Drupal/Core/Test/FunctionalTestSetupTrait.php
Rebuilds \Drupal::getContainer().
ImageStylesPathAndUrlTest::doImageStyleUrlAndPathTests in core/modules/image/tests/src/Functional/ImageStylesPathAndUrlTest.php
Tests building an image style URL.
LanguageUrlRewritingTest::testDomainNameNegotiationPort in core/modules/language/tests/src/Functional/LanguageUrlRewritingTest.php
Check URL rewriting when using a domain name and a non-standard port.

File

core/lib/Drupal/Core/Test/FunctionalTestSetupTrait.php, line 251

Class

FunctionalTestSetupTrait
Defines a trait for shared functional test setup functionality.

Namespace

Drupal\Core\Test

Code

protected function prepareRequestForGenerator($clean_urls = TRUE, $override_server_vars = []) {
  $request = Request::createFromGlobals();
  $server = $request->server
    ->all();
  if (basename($server['SCRIPT_FILENAME']) != basename($server['SCRIPT_NAME'])) {

    // We need this for when the test is executed by run-tests.sh.
    // @todo Remove this once run-tests.sh has been converted to use a Request
    //   object.
    $cwd = getcwd();
    $server['SCRIPT_FILENAME'] = $cwd . '/' . basename($server['SCRIPT_NAME']);
    $base_path = rtrim($server['REQUEST_URI'], '/');
  }
  else {
    $base_path = $request
      ->getBasePath();
  }
  if ($clean_urls) {
    $request_path = $base_path ? $base_path . '/user' : 'user';
  }
  else {
    $request_path = $base_path ? $base_path . '/index.php/user' : '/index.php/user';
  }
  $server = array_merge($server, $override_server_vars);
  $request = Request::create($request_path, 'GET', [], [], [], $server);

  // Ensure the request time is REQUEST_TIME to ensure that API calls
  // in the test use the right timestamp.
  $request->server
    ->set('REQUEST_TIME', REQUEST_TIME);
  $this->container
    ->get('request_stack')
    ->push($request);

  // The request context is normally set by the router_listener from within
  // its KernelEvents::REQUEST listener. In the simpletest parent site this
  // event is not fired, therefore it is necessary to updated the request
  // context manually here.
  $this->container
    ->get('router.request_context')
    ->fromRequest($request);
  return $request;
}