function BrowserTestBase::getSessionCookies

Same name and namespace in other branches
  1. 11.x core/tests/Drupal/Tests/BrowserTestBase.php \Drupal\Tests\BrowserTestBase::getSessionCookies()
  2. 10 core/tests/Drupal/Tests/BrowserTestBase.php \Drupal\Tests\BrowserTestBase::getSessionCookies()
  3. 8.9.x core/tests/Drupal/Tests/BrowserTestBase.php \Drupal\Tests\BrowserTestBase::getSessionCookies()

Get session cookies from current session.

Return value

\GuzzleHttp\Cookie\CookieJar A cookie jar with the current session.

1 call to BrowserTestBase::getSessionCookies()
SaveUploadTest::testInvalidUtf8FilenameUpload in core/modules/file/tests/src/Functional/SaveUploadTest.php
Tests that filenames containing invalid UTF-8 are rejected.

File

core/tests/Drupal/Tests/BrowserTestBase.php, line 476

Class

BrowserTestBase
Provides a test case for functional Drupal tests.

Namespace

Drupal\Tests

Code

protected function getSessionCookies() {
  $domain = parse_url($this->getUrl(), PHP_URL_HOST);
  $session_id = $this->getSession()
    ->getCookie($this->getSessionName());
  $cookies = CookieJar::fromArray([
    $this->getSessionName() => $session_id,
  ], $domain);
  return $cookies;
}

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