You are here

SessionAuthenticationTest.php in Zircon Profile 8.0

Same filename and directory in other branches
  1. 8 core/modules/system/src/Tests/Session/SessionAuthenticationTest.php

File

core/modules/system/src/Tests/Session/SessionAuthenticationTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\system\Tests\Session\SessionAuthenticationTest.
 */
namespace Drupal\system\Tests\Session;

use Drupal\Core\Url;
use Drupal\basic_auth\Tests\BasicAuthTestTrait;
use Drupal\simpletest\WebTestBase;

/**
 * Tests if sessions are correctly handled when a user authenticates.
 *
 * @group Session
 */
class SessionAuthenticationTest extends WebTestBase {
  use BasicAuthTestTrait;

  /**
   * A test user.
   *
   * @var \Drupal\user\Entity\User
   */
  protected $user;

  /**
   * {@inheritdoc}
   */
  public static $modules = [
    'basic_auth',
    'session_test',
  ];

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    parent::setUp();

    // Create a test administrator user.
    $this->user = $this
      ->drupalCreateUser([
      'administer site configuration',
    ]);
  }

  /**
   * Check that a basic authentication session does not leak.
   *
   * Regression test for a bug that caused a session initiated by basic
   * authentication to persist over subsequent unauthorized requests.
   */
  public function testSessionFromBasicAuthenticationDoesNotLeak() {

    // This route is authorized through basic_auth only, not cookie.
    $protected_url = Url::fromRoute('session_test.get_session_basic_auth');

    // This route is not protected.
    $unprotected_url = Url::fromRoute('session_test.get_session_no_auth');

    // Test that the route is not accessible as an anonymous user.
    $this
      ->drupalGet($protected_url);
    $this
      ->assertResponse(401, 'An anonymous user cannot access a route protected with basic authentication.');

    // We should be able to access the route with basic authentication.
    $this
      ->basicAuthGet($protected_url, $this->user
      ->getUsername(), $this->user->pass_raw);
    $this
      ->assertResponse(200, 'A route protected with basic authentication can be accessed by an authenticated user.');

    // Check that the correct user is logged in.
    $this
      ->assertEqual($this->user
      ->id(), json_decode($this
      ->getRawContent())->user, 'The correct user is authenticated on a route with basic authentication.');

    // If we now try to access a page without basic authentication then we
    // should no longer be logged in.
    $this
      ->drupalGet($unprotected_url);
    $this
      ->assertResponse(200, 'An unprotected route can be accessed without basic authentication.');
    $this
      ->assertFalse(json_decode($this
      ->getRawContent())->user, 'The user is no longer authenticated after visiting a page without basic authentication.');

    // If we access the protected page again without basic authentication we
    // should get 401 Unauthorized.
    $this
      ->drupalGet($protected_url);
    $this
      ->assertResponse(401, 'A subsequent request to the same route without basic authentication is not authorized.');
  }

  /**
   * Tests if a session can be initiated through basic authentication.
   */
  public function testBasicAuthSession() {

    // Set a session value on a request through basic auth.
    $test_value = 'alpaca';
    $response = $this
      ->basicAuthGet('session-test/set-session/' . $test_value, $this->user
      ->getUsername(), $this->user->pass_raw);
    $this
      ->assertSessionData($response, $test_value);
    $this
      ->assertResponse(200, 'The request to set a session value was successful.');

    // Test that on a subsequent request the session value is still present.
    $response = $this
      ->basicAuthGet('session-test/get-session', $this->user
      ->getUsername(), $this->user->pass_raw);
    $this
      ->assertSessionData($response, $test_value);
    $this
      ->assertResponse(200, 'The request to get a session value was successful.');
  }

  /**
   * Checks the session data returned by the session test routes.
   *
   * @param string $response
   *   A response object containing the session values and the user ID.
   * @param string $expected
   *   The expected session value.
   */
  protected function assertSessionData($response, $expected) {
    $response = json_decode($response, TRUE);
    $this
      ->assertEqual([
      'test_value' => $expected,
    ], $response['session'], 'The session data matches the expected value.');

    // Check that we are logged in as the correct user.
    $this
      ->assertEqual($this->user
      ->id(), $response['user'], 'The correct user is logged in.');
  }

  /**
   * Tests that a session is not started automatically by basic authentication.
   */
  public function testBasicAuthNoSession() {

    // A route that is authorized through basic_auth only, not cookie.
    $no_cookie_url = Url::fromRoute('session_test.get_session_basic_auth');

    // A route that is authorized with standard cookie authentication.
    $cookie_url = '<front>';

    // If we authenticate with a third party authentication system then no
    // session cookie should be set, the third party system is responsible for
    // sustaining the session.
    $this
      ->basicAuthGet($no_cookie_url, $this->user
      ->getUsername(), $this->user->pass_raw);
    $this
      ->assertResponse(200, 'The user is successfully authenticated using basic authentication.');
    $this
      ->assertFalse($this
      ->drupalGetHeader('set-cookie', TRUE), 'No cookie is set on a route protected with basic authentication.');

    // On the other hand, authenticating using Cookie sets a cookie.
    $edit = [
      'name' => $this->user
        ->getUsername(),
      'pass' => $this->user->pass_raw,
    ];
    $this
      ->drupalPostForm($cookie_url, $edit, t('Log in'));
    $this
      ->assertResponse(200, 'The user is successfully authenticated using cookie authentication.');
    $this
      ->assertTrue($this
      ->drupalGetHeader('set-cookie', TRUE), 'A cookie is set on a route protected with cookie authentication.');
  }

}

Classes

Namesort descending Description
SessionAuthenticationTest Tests if sessions are correctly handled when a user authenticates.