You are here

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

Class

LingotekNodeWithPathautoTranslationTest
Tests translating a node that contains a path.

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

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

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

  // Create pathauto config.
  $this
    ->createPattern('node', '/node/[node:title]')
    ->save();
  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][path]' => 1,
  ];
  $this
    ->drupalPostForm('admin/lingotek/settings', $edit, 'Save', [], [], 'lingoteksettings-tab-content-form');
}