You are here

function ALProfilesWebTest::setUp in Acquia Lift Connector 7.2

Same name and namespace in other branches
  1. 7 acquia_lift_profiles/tests/acquia_lift_profiles.test \ALProfilesWebTest::setUp()

Sets up a Drupal site for running functional and integration tests.

Generates a random database prefix and installs Drupal with the specified installation profile in DrupalWebTestCase::$profile into the prefixed database. Afterwards, installs any additional modules specified by the test.

After installation all caches are flushed and several configuration values are reset to the values of the parent site executing the test, since the default values may be incompatible with the environment in which tests are being executed.

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 DrupalWebTestCase::setUp

See also

DrupalWebTestCase::prepareDatabasePrefix()

DrupalWebTestCase::changeDatabasePrefix()

DrupalWebTestCase::prepareEnvironment()

File

acquia_lift_profiles/tests/acquia_lift_profiles.test, line 23
Tests for Acquia Lift Profiles module.

Class

ALProfilesWebTest
Tests Acquia Lift Profiles functionality.

Code

function setUp() {
  parent::setUp(array(
    'ctools',
    'visitor_actions',
    'acquia_lift_profiles',
  ));
  require_once dirname(__FILE__) . '/acquia_lift_profiles.test_classes.inc';
  variable_set('user_register', USER_REGISTER_VISITORS);
  variable_set('user_email_verification', FALSE);
  $this->admin_user = $this
    ->drupalCreateUser(array(
    'access administration pages',
    'administer acquia_lift_profiles configuration',
    'administer content types',
    'administer nodes',
    'bypass node access',
    'administer visitor actions',
  ));
  variable_set('acquia_lift_profiles_web_test_data', array(
    'segments' => array(
      'segment1',
      'segment2',
    ),
  ));
}