You are here

protected function UiHelperTrait::drupalGet in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/UiHelperTrait.php \Drupal\Tests\UiHelperTrait::drupalGet()
  2. 10 core/tests/Drupal/Tests/UiHelperTrait.php \Drupal\Tests\UiHelperTrait::drupalGet()

Retrieves a Drupal path or an absolute path.

Parameters

string|\Drupal\Core\Url $path: Drupal path or URL to load into Mink controlled browser.

array $options: (optional) Options to be forwarded to the url generator.

string[] $headers: An array containing additional HTTP request headers, the array keys are the header names and the array values the header values. This is useful to set for example the "Accept-Language" header for requesting the page in a different language. Note that not all headers are supported, for example the "Accept" header is always overridden by the browser. For testing REST APIs it is recommended to obtain a separate HTTP client using getHttpClient() and performing requests that way.

Return value

string The retrieved HTML string, also available as $this->getRawContent()

See also

\Drupal\Tests\BrowserTestBase::getHttpClient()

1876 calls to UiHelperTrait::drupalGet()
AccessDeniedTest::testAccessDenied in core/modules/system/tests/src/Functional/System/AccessDeniedTest.php
AccessDeniedTest::testAccessDeniedCustomPageWithAccessDenied in core/modules/system/tests/src/Functional/System/AccessDeniedTest.php
Tests that an inaccessible custom 403 page falls back to the default.
AccessRoleTest::testAccessRole in core/modules/user/tests/src/Functional/Views/AccessRoleTest.php
Tests role access plugin.
AccessTest::testStaticAccessPlugin in core/modules/views/tests/src/Functional/Plugin/AccessTest.php
Tests static access check.
ActionFormAjaxTest::testActionConfigurationWithAjax in core/modules/action/tests/src/FunctionalJavascript/ActionFormAjaxTest.php
Tests action plugins with AJAX save their configuration.

... See full list

3 methods override UiHelperTrait::drupalGet()
OffCanvasTestBase::drupalGet in core/modules/system/tests/src/FunctionalJavascript/OffCanvasTestBase.php
Retrieves a Drupal path or an absolute path.
UITestBase::drupalGet in core/modules/views_ui/tests/src/Functional/UITestBase.php
Retrieves a Drupal path or an absolute path.
UncaughtExceptionTest::drupalGet in core/tests/Drupal/FunctionalTests/Bootstrap/UncaughtExceptionTest.php
Retrieves a Drupal path or an absolute path.

File

core/tests/Drupal/Tests/UiHelperTrait.php, line 316

Class

UiHelperTrait
Provides UI helper methods.

Namespace

Drupal\Tests

Code

protected function drupalGet($path, array $options = [], array $headers = []) {
  $options['absolute'] = TRUE;
  $url = $this
    ->buildUrl($path, $options);
  $session = $this
    ->getSession();
  $this
    ->prepareRequest();
  foreach ($headers as $header_name => $header_value) {
    $session
      ->setRequestHeader($header_name, $header_value);
  }
  $session
    ->visit($url);
  $out = $session
    ->getPage()
    ->getContent();

  // Ensure that any changes to variables in the other thread are picked up.
  $this
    ->refreshVariables();

  // Replace original page output with new output from redirected page(s).
  if ($new = $this
    ->checkForMetaRefresh()) {
    $out = $new;

    // We are finished with all meta refresh redirects, so reset the counter.
    $this->metaRefreshCount = 0;
  }

  // Log only for JavascriptTestBase tests because for Goutte we log with
  // ::getResponseLogHandler.
  if ($this->htmlOutputEnabled && !$this
    ->getSession()
    ->getDriver() instanceof GoutteDriver) {
    $html_output = 'GET request to: ' . $url . '<hr />Ending URL: ' . $this
      ->getSession()
      ->getCurrentUrl();
    $html_output .= '<hr />' . $out;
    $html_output .= $this
      ->getHtmlOutputHeaders();
    $this
      ->htmlOutput($html_output);
  }
  return $out;
}