public function BotchaAdminTestCase::setUp in BOTCHA Spam Prevention 6.3
Same name and namespace in other branches
- 7.2 botcha.test \BotchaAdminTestCase::setUp()
- 7.3 tests/botcha.simpletest.test \BotchaAdminTestCase::setUp()
Generates a random database prefix, runs the install scripts on the prefixed database and enable the specified modules. After installation many caches are flushed and the internal browser is setup so that the page requests will run on the new prefix. A temporary files directory is created with the same name as the database prefix.
Parameters
...: List of modules to enable for the duration of the test. This can be either a single array or a variable number of string arguments.
Overrides BotchaBaseWebTestCase::setUp
File
- tests/
botcha.simpletest.test, line 714 - Simpletest-tests for BOTCHA module.
Class
Code
public function setUp() {
// @todo Abstract it.
parent::setUp(array(
'dblog',
));
$form_controller = $this->application
->getController(Botcha::CONTROLLER_TYPE_FORM);
// Disable all recipes and forms for default recipe book not to have any
// problems with submitting forms.
$forms = $form_controller
->getForms(TRUE);
foreach ($forms as $botcha_form) {
$form_id = $botcha_form->id;
$form_controller
->getForm($form_id, FALSE)
->setEnabled(FALSE);
}
// Log in as admin.
$this
->drupalLogin($this->admin_user);
}