You are here

function SecureSiteTest::testAccessDenied in Secure Site 5

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

Check that users get an access denied warning when accessing secured portions of the site if they've already logged in and don't have access to the secure portion

File

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

Class

SecureSiteTest
Unit tests for the Secure Site module

Code

function testAccessDenied() {
  $privileged_user = $this
    ->drupalCreateUserRolePerm(array(
    'access content',
    'access secured pages',
  ));
  $this
    ->drupalVariableSet('securesite_enabled', SECURESITE_AUTH);
  $this
    ->drupalVariableSet('securesite_filter_pages_type', SECURESITE_WHITELIST);
  $this
    ->drupalVariableSet('securesite_filter_pages', "<front>\nuser");
  $this
    ->drupalLoginUser($privileged_user);
  $this
    ->drupalGet(url('user/1', NULL, NULL, TRUE));
  $this
    ->assertResponse('403', t('Access Denied') . ': %s');
  $this
    ->assertWantedRaw('Access denied');
  $this
    ->drupalGet(url('logout', NULL, NULL, TRUE));
  $this
    ->assertResponse('200');
  $this
    ->assertNoAuthentication();
}