You are here

function Profile2CRUDTestCase::setUp in Profile 2 7

Same name and namespace in other branches
  1. 7.2 profile2.test \Profile2CRUDTestCase::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

./profile2.test, line 16

Class

Profile2CRUDTestCase
Test basic CRUD functionality.

Code

function setUp() {
  parent::setUp('profile2', 'locale');
  profile2_type_save(new ProfileType(array(
    'type' => 'test',
    'label' => 'label',
    'weight' => 0,
  )));
  profile2_type_save(new ProfileType(array(
    'type' => 'test2',
    'label' => 'label2',
    'weight' => 2,
  )));
  profile2_load_multiple(FALSE, array(), TRUE);

  // Add a field to main type, which is created during module installation.
  $field = array(
    'field_name' => 'profile_fullname',
    'type' => 'text',
    'cardinality' => 1,
    'translatable' => FALSE,
  );
  field_create_field($field);
  $instance = array(
    'entity_type' => 'profile2',
    'field_name' => 'profile_fullname',
    'bundle' => 'main',
    'label' => 'Full name',
    'description' => 'Specify your first and last name.',
    'widget' => array(
      'type' => 'text_textfield',
      'weight' => 0,
    ),
  );
  field_create_instance($instance);
}