You are here

public function LingotekContactMessageBodyTranslationTest::testFieldTranslation in Lingotek Translation 8

Tests that a node can be translated.

File

src/Tests/LingotekContactMessageBodyTranslationTest.php, line 64

Class

LingotekContactMessageBodyTranslationTest
Tests translating a field in a contact message.

Namespace

Drupal\lingotek\Tests

Code

public function testFieldTranslation() {

  // Login as admin.
  $this
    ->drupalLogin($this->rootUser);
  $this
    ->drupalGet('/admin/config/regional/config-translation');
  $this
    ->drupalGet('/admin/config/regional/config-translation/contact_message_fields');
  $this
    ->clickLink(t('Translate'));
  $this
    ->clickLink(t('Upload'));
  $this
    ->assertText(t('field_test uploaded successfully'));

  // Check that only the translatable fields have been uploaded.
  $data = json_decode(\Drupal::state()
    ->get('lingotek.uploaded_content', '[]'), TRUE);
  $this
    ->assertTrue(array_key_exists('label', $data['field.field.contact_message.contact_message.field_test']));

  // Cannot use isset, the key exists but we are not providing values, so NULL.
  $this
    ->assertTrue(array_key_exists('description', $data['field.field.contact_message.contact_message.field_test']));

  // Check that the profile used was the right one.
  $used_profile = \Drupal::state()
    ->get('lingotek.used_profile');
  $this
    ->assertIdentical('automatic', $used_profile, 'The automatic profile was used.');
  $this
    ->clickLink(t('Check upload status'));
  $this
    ->assertText('field_test status checked successfully');
  $this
    ->clickLink(t('Request translation'));
  $this
    ->assertText(t('Translation to es_MX requested successfully'));
  $this
    ->assertIdentical('es_MX', \Drupal::state()
    ->get('lingotek.added_target_locale'));
  $this
    ->clickLink(t('Check Download'));
  $this
    ->assertText(t('Translation to es_MX status checked successfully'));
  $this
    ->clickLink('Download');
  $this
    ->assertText(t('Translation to es_MX downloaded successfully'));

  // Check that the edit link is there.
  $basepath = \Drupal::request()
    ->getBasePath();
  $this
    ->assertLinkByHref($basepath . '/admin/structure/contact/manage/contact_message/fields/contact_message.contact_message.field_test/translate/es/edit');
}