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

modules/locale/locale.test, line 2912
Tests for locale.module.

Class

LocaleCommentLanguageFunctionalTest
Functional tests for comment language.

Code

function setUp() {
  parent::setUp('locale', 'locale_test');

  // Create and login user.
  $admin_user = $this
    ->drupalCreateUser(array(
    'administer site configuration',
    'administer languages',
    'access administration pages',
    'administer content types',
    'administer comments',
    'create article content',
  ));
  $this
    ->drupalLogin($admin_user);

  // Add language.
  $edit = array(
    'langcode' => 'fr',
  );
  $this
    ->drupalPost('admin/config/regional/language/add', $edit, t('Add language'));

  // Set "Article" content type to use multilingual support.
  $edit = array(
    'language_content_type' => 1,
  );
  $this
    ->drupalPost('admin/structure/types/manage/article', $edit, t('Save content type'));

  // Enable content language negotiation UI.
  variable_set('locale_test_content_language_type', TRUE);

  // Set interface language detection to user and content language detection
  // to URL. Disable inheritance from interface language to ensure content
  // language will fall back to the default language if no URL language can be
  // detected.
  $edit = array(
    'language[enabled][locale-user]' => TRUE,
    'language_content[enabled][locale-url]' => TRUE,
    'language_content[enabled][locale-interface]' => FALSE,
  );
  $this
    ->drupalPost('admin/config/regional/language/configure', $edit, t('Save settings'));

  // Change user language preference, this way interface language is always
  // French no matter what path prefix the URLs have.
  $edit = array(
    'language' => 'fr',
  );
  $this
    ->drupalPost("user/{$admin_user->uid}/edit", $edit, t('Save'));

  // Make comment body translatable.
  $field = field_info_field('comment_body');
  $field['translatable'] = TRUE;
  field_update_field($field);
  $this
    ->assertTrue(field_is_translatable('comment', $field), 'Comment body is translatable.');
}