You are here

public function LingotekFieldBodyTranslationTest::testCheckSourceStatusCompletedAndContentMissing in Lingotek Translation 3.7.x

Same name and namespace in other branches
  1. 4.0.x tests/src/Functional/LingotekFieldBodyTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekFieldBodyTranslationTest::testCheckSourceStatusCompletedAndContentMissing()
  2. 3.8.x tests/src/Functional/LingotekFieldBodyTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekFieldBodyTranslationTest::testCheckSourceStatusCompletedAndContentMissing()

Test that we handle errors in update.

File

tests/src/Functional/LingotekFieldBodyTranslationTest.php, line 296

Class

LingotekFieldBodyTranslationTest
Tests translating a field.

Namespace

Drupal\Tests\lingotek\Functional

Code

public function testCheckSourceStatusCompletedAndContentMissing() {
  \Drupal::state()
    ->set('lingotek.must_document_not_found_error_in_check_source_status', TRUE);

  // Check that the translate tab is in the field.
  $this
    ->drupalGet('/admin/config/regional/config-translation/node_fields');
  $this
    ->clickLink(t('Translate'));

  // Upload the document, which must succeed.
  $this
    ->clickLink('Upload');
  $this
    ->checkForMetaRefresh();
  $this
    ->assertText('Body uploaded successfully');

  // Check that the upload succeeded.
  $this
    ->clickLink('Check upload status');

  // We failed at checking status, but we don't know what happened.
  // So we don't mark as error but keep it on importing.
  $this
    ->assertText('Document Body was not found. Please upload again.');

  // The field has been marked with the error status.
  $fieldConfig = FieldConfig::load('node.article.body');

  /** @var \Drupal\lingotek\LingotekConfigTranslationServiceInterface $translation_service */
  $translation_service = \Drupal::service('lingotek.config_translation');
  $source_status = $translation_service
    ->getSourceStatus($fieldConfig);
  $this
    ->assertEqual(Lingotek::STATUS_UNTRACKED, $source_status);
}