You are here

protected function LingotekNodeWithLinkTranslationTest::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/LingotekNodeWithLinkTranslationTest.php, line 35

Class

LingotekNodeWithLinkTranslationTest
Tests translating a node that contains a link field.

Namespace

Drupal\lingotek\Tests

Code

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

  // Create Article node types.
  $this
    ->drupalCreateContentType(array(
    'type' => 'article',
    'name' => 'Article',
  ));

  // Create a link field.
  // Create a field with settings to validate.
  $fieldStorage = entity_create('field_storage_config', array(
    'field_name' => $this->field_name,
    'entity_type' => 'node',
    'type' => 'link',
  ));
  $fieldStorage
    ->save();
  $field = entity_create('field_config', array(
    'field_storage' => $fieldStorage,
    'bundle' => 'article',
    'settings' => array(
      'title' => DRUPAL_OPTIONAL,
      'link_type' => LinkItemInterface::LINK_GENERIC,
    ),
  ));
  $field
    ->save();
  entity_get_form_display('node', 'article', 'default')
    ->setComponent($this->field_name, array(
    'type' => 'link_default',
  ))
    ->save();
  entity_get_display('node', 'article', 'default')
    ->setComponent($this->field_name, array(
    'type' => 'link',
  ))
    ->save();

  // 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);

  // Enable translation for the current entity type and ensure the change is
  // picked up.
  ContentLanguageSettings::loadByEntityTypeBundle('node', 'article')
    ->setLanguageAlterable(TRUE)
    ->save();
  \Drupal::service('content_translation.manager')
    ->setEnabled('node', 'article', TRUE);
  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();
  $edit = [
    'node[article][enabled]' => 1,
    'node[article][profiles]' => 'automatic',
    'node[article][fields][title]' => 1,
    'node[article][fields][body]' => 1,
    "node[article][fields][{$this->field_name}]" => 1,
  ];
  $this
    ->drupalPostForm('admin/lingotek/settings', $edit, 'Save', [], [], 'lingoteksettings-tab-content-form');
}