You are here

protected function LingotekSystemSiteLocaleTranslationTest::setUp in Lingotek Translation 8

Sets up a Drupal site for running functional and integration tests.

Installs Drupal with the installation profile specified in \Drupal\simpletest\WebTestBase::$profile into the prefixed database.

Afterwards, installs any additional modules specified in the static \Drupal\simpletest\WebTestBase::$modules property of each class in the class hierarchy.

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.

Overrides LingotekTestBase::setUp

File

src/Tests/LingotekSystemSiteLocaleTranslationTest.php, line 27

Class

LingotekSystemSiteLocaleTranslationTest
Tests translating a node with multiple locales.

Namespace

Drupal\lingotek\Tests

Code

protected function setUp() {
  parent::setUp();

  // Place the actions and title block.
  $this
    ->drupalPlaceBlock('local_tasks_block');
  $this
    ->drupalPlaceBlock('page_title_block');

  // Add locales.
  $post = [
    'code' => 'es_ES',
    'language' => 'Spanish',
    'native' => 'Español',
    'direction' => '',
  ];
  $this
    ->drupalPost('/admin/lingotek/dashboard_endpoint', 'application/json', $post);
  $post = [
    'code' => 'es_AR',
    'language' => 'Spanish',
    'native' => 'Español',
    'direction' => '',
  ];
  $this
    ->drupalPost('/admin/lingotek/dashboard_endpoint', 'application/json', $post);
  drupal_static_reset();
  \Drupal::entityManager()
    ->clearCachedDefinitions();
  \Drupal::service('entity.definition_update_manager')
    ->applyUpdates();

  // Rebuild the container so that the new languages are picked up by services
  // that hold a list of languages.
  $this
    ->rebuildContainer();
}