You are here

public function SecKitTestCase::testXFrameOptionsIsDisabled in Security Kit 7

Same name and namespace in other branches
  1. 6 seckit.test \SecKitTestCase::testXFrameOptionsIsDisabled()

Tests disabled X-Frame-Options HTTP response header.

File

./seckit.test, line 439
Tests for Security Kit module.

Class

SecKitTestCase
Functional tests for Security Kit.

Code

public function testXFrameOptionsIsDisabled() {
  $form['seckit_clickjacking[x_frame]'] = SECKIT_X_FRAME_DISABLE;
  $this
    ->drupalPost('admin/config/system/seckit', $form, t('Save configuration'));
  $this
    ->assertFalse($this
    ->drupalGetHeader('X-Frame-Options'), t('X-Frame-Options is disabled.'));
}