summaryrefslogtreecommitdiff
path: root/modules/simpletest/simpletest.test
diff options
context:
space:
mode:
Diffstat (limited to 'modules/simpletest/simpletest.test')
-rw-r--r--modules/simpletest/simpletest.test6
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/simpletest/simpletest.test b/modules/simpletest/simpletest.test
index 2da05d6a3..f21b8d38b 100644
--- a/modules/simpletest/simpletest.test
+++ b/modules/simpletest/simpletest.test
@@ -42,6 +42,12 @@ class SimpleTestTestCase extends DrupalWebTestCase {
if (!$this->inCURL()) {
$this->drupalGet('node');
$this->assertTitle(variable_get('site_name', 'Drupal'), t('Site title matches.'));
+ // Make sure that we are locked out of the installer when prefixing
+ // using the user-agent header. This is an important security check.
+ global $base_url;
+
+ $this->drupalGet($base_url . '/install.php', array('external' => TRUE));
+ $this->assertResponse(403, 'Cannot access install.php with a "simpletest" user-agent header.');
}
}