You are here

function AcquiaLiftsWebTest::setUp in Acquia Lift Connector 7.3

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

tests/acquia_lift.test, line 24
Tests for Acquia Lift Profiles module.

Class

AcquiaLiftsWebTest
Tests Acquia Lift functionality.

Code

function setUp() {
  parent::setUp(array(
    'acquia_lift',
  ));
  $this->admin_button_text = t('Save configuration');
  $this->admin_user = $this
    ->drupalCreateUser(array(
    'access administration pages',
    'administer acquia_lift configuration',
    'administer content types',
    'administer nodes',
    'bypass node access',
  ));

  // Set up a variety of nodes with different term combinations.
  $this->tags['one_tag'] = array(
    $this
      ->randomName(),
  );
  $this->tags['two_tags'] = array(
    $this
      ->randomName(),
    $this
      ->randomName(),
  );
  $this->articles['one_tag'] = $this
    ->createArticleWithTerms($this->tags['one_tag']);
  $this->articles['two_tags'] = $this
    ->createArticleWithTerms($this->tags['two_tags']);
}