public function SecKitTestCaseTest::testDisabledHsts in Security Kit 8
Same name and namespace in other branches
- 2.x tests/src/Functional/SecKitTestCaseTest.php \Drupal\Tests\seckit\Functional\SecKitTestCaseTest::testDisabledHsts()
Tests disabled HTTP Strict Transport Security.
File
- tests/
src/ Functional/ SecKitTestCaseTest.php, line 510
Class
- SecKitTestCaseTest
- Functional tests for Security Kit.
Namespace
Drupal\Tests\seckit\FunctionalCode
public function testDisabledHsts() {
$form['seckit_ssl[hsts]'] = FALSE;
$this
->drupalPostForm('admin/config/system/seckit', $form, t('Save configuration'));
$this
->assertSession()
->responseHeaderEquals('Strict-Transport-Security', NULL);
}