You are here

function SecureSiteDigestGuestUnsetTest::setUp in Secure Site 8

Implements setUp().

Overrides WebTestBase::setUp

File

src/Tests/DigestAuth/SecureSiteDigestGuestUnsetTest.php, line 37
Contains Drupal\securesite\Tests\DigestAuth\SecureSiteDigestGuestUnsetTest

Class

SecureSiteDigestGuestUnsetTest
Functional tests for digest authentication with guest credentials unset.

Namespace

Drupal\securesite\Tests\DigestAuth

Code

function setUp() {
  parent::setUp();

  //todo wtf is this function?
  _securesite_copy_script_config($this);
  user_role_grant_permissions(DRUPAL_ANONYMOUS_RID, array(
    'access secured pages',
  ));
  $config = \Drupal::config('securesite.settings');
  $config
    ->set('securesite_enabled', SECURESITE_ALWAYS);

  // Should work with all authentication methods enabled.
  $config
    ->set('securesite_type', array(
    SECURESITE_FORM,
    SECURESITE_BASIC,
    SECURESITE_DIGEST,
  ));
  $config
    ->save();

  //todo curl options
  $this->curl_options[CURLOPT_HTTPAUTH] = CURLAUTH_DIGEST;
}