You are here

public function FieldCollectionContentTranslationTestCase::setUp in Field collection 7

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

./field_collection.test, line 585
Tests for field_collections.

Class

FieldCollectionContentTranslationTestCase
Test using field collection with content that gets translated.

Code

public function setUp() {
  parent::setUp(array(
    'field_collection',
    'translation',
  ));

  // Create a field_collection field to use for the tests.
  $this->field_name = 'field_test_collection';
  $this->field = array(
    'field_name' => $this->field_name,
    'type' => 'field_collection',
    'cardinality' => 4,
  );
  $this->field = field_create_field($this->field);
  $this->field_id = $this->field['id'];
  $this->instance = array(
    'field_name' => $this->field_name,
    'entity_type' => 'node',
    'bundle' => 'article',
    'label' => self::randomName() . '_label',
    'description' => self::randomName() . '_description',
    'weight' => random_int(0, 127),
    'settings' => array(),
    'widget' => array(
      'type' => 'field_collection_embed',
      'label' => 'Test',
      'settings' => array(),
    ),
  );
  $this->instance = field_create_instance($this->instance);

  // Add a field to the collection.
  $field = array(
    'field_name' => 'field_text',
    'type' => 'text',
    'cardinality' => 1,
    'translatable' => FALSE,
  );
  field_create_field($field);
  $instance = array(
    'entity_type' => 'field_collection_item',
    'field_name' => 'field_text',
    'bundle' => $this->field_name,
    'label' => 'Test text field',
    'widget' => array(
      'type' => 'text_textfield',
    ),
  );
  field_create_instance($instance);
  $admin_user = $this
    ->drupalCreateUser(array(
    'administer languages',
    'administer content types',
    'access administration pages',
    'create article content',
    'edit any article content',
    'translate content',
  ));
  $this
    ->drupalLogin($admin_user);

  // Add German language.
  locale_add_language('de');

  // Set "Article" content type to use multilingual support.
  variable_set('language_content_type_article', TRANSLATION_ENABLED);
}