You are here

function SecureSiteTest::testRepeatLoginUnsecure in Secure Site 5

Same name and namespace in other branches
  1. 6 tests/securesite.test \SecureSiteTest::testRepeatLoginUnsecure()

Check that login works normally after previous login and logout using the normal HTML login form

File

tests/securesite.test, line 634
Secure Site module unit tests

Class

SecureSiteTest
Unit tests for the Secure Site module

Code

function testRepeatLoginUnsecure() {
  $privileged_user = $this
    ->drupalCreateUserRolePerm(array(
    'access content',
    'access secured pages',
  ));

  // Login, logout, then login and logout again
  $this
    ->drupalVariableSet('securesite_enabled', SECURESITE_AUTH);
  $this
    ->drupalVariableSet('securesite_filter_pages_type', SECURESITE_WHITELIST);
  $this
    ->drupalVariableSet('securesite_filter_pages', "<front>\nuser");
  $this
    ->drupalGet(url('<front>', NULL, NULL, TRUE));
  $this
    ->assertResponse('200', t('Repeat Login: Unsecure') . ': %s');
  $this
    ->assertNoAuthentication();
  $this
    ->drupalLoginUser($privileged_user);
  $this
    ->drupalGet(url('logout', NULL, NULL, TRUE));
  $this
    ->assertResponse('200');
  $this
    ->assertNoAuthentication();
  $this
    ->drupalGet(url('<front>', NULL, NULL, TRUE));
  $this
    ->assertResponse('200');
  $this
    ->assertNoAuthentication();
  $this
    ->drupalLoginUser($privileged_user);
  $this
    ->drupalGet(url('logout', NULL, NULL, TRUE));
  $this
    ->assertResponse('200');
  $this
    ->assertNoAuthentication();
}