LocaleMultilingualFieldsFunctionalTest::setUp

7 locale.test LocaleMultilingualFieldsFunctionalTest::setUp()
8 locale.test LocaleMultilingualFieldsFunctionalTest::setUp()

Generates a random database prefix, runs the install scripts on the prefixed database and enable the specified modules. After installation many caches are flushed and the internal browser is setup so that the page requests will run on the new prefix. A temporary files directory is created with the same name as the database prefix.

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

File

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

Code

function setUp() {
  parent::setUp('locale');
  // Setup users.
  $admin_user = $this->drupalCreateUser(array('administer languages', 'administer content types', 'access administration pages', 'create page content', 'edit own page content'));
  $this->drupalLogin($admin_user);

  // Add a new language.
  require_once DRUPAL_ROOT . '/includes/locale.inc';
  locale_add_language('it', 'Italian', 'Italiano', LANGUAGE_LTR, '', '', TRUE, FALSE);

  // Enable URL language detection and selection.
  $edit = array('language[enabled][locale-url]' => '1');
  $this->drupalPost('admin/config/regional/language/configure', $edit, t('Save settings'));

  // Set "Basic page" content type to use multilingual support.
  $edit = array(
    'language_content_type' => 1,
  );
  $this->drupalPost('admin/structure/types/manage/page', $edit, t('Save content type'));
  $this->assertRaw(t('The content type %type has been updated.', array('%type' => 'Basic page')), t('Basic page content type has been updated.'));

  // Make node body translatable.
  $field = field_info_field('body');
  $field['translatable'] = TRUE;
  field_update_field($field);
}
Login or register to post comments