You are here

public function SecureSiteTypeFormUserFunctionalTest::testSecureSiteTypeFormUserNoAccess in Secure Site 7.2

Same name and namespace in other branches
  1. 6.2 securesite.test \SecureSiteTypeFormUserFunctionalTest::testSecureSiteTypeFormUserNoAccess()

Request home page with correct password and access disabled.

File

./securesite.test, line 1569
Tests for Secure Site module.

Class

SecureSiteTypeFormUserFunctionalTest
Functional tests for form authentication with user credentials.

Code

public function testSecureSiteTypeFormUserNoAccess() {
  $this
    ->drupalPost('', array(
    'name' => $this->normal_user->name,
    'pass' => $this->normal_user->pass_raw,
  ), 'Log in');
  $this
    ->assertNoFieldByXPath('//form[@id="securesite-user-login"]', '', t('Requesting home page with correct password and access disabled.'));
  $this
    ->assertText('You have not been authorized to log in to secured pages.', t('Checking for access denied message when password is correct and access is disabled.'));
}