You are here

public function LingotekFieldBodyTranslationTest::testUpdatingWithADocumentArchivedError in Lingotek Translation 3.4.x

Same name and namespace in other branches
  1. 8.2 tests/src/Functional/LingotekFieldBodyTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekFieldBodyTranslationTest::testUpdatingWithADocumentArchivedError()
  2. 4.0.x tests/src/Functional/LingotekFieldBodyTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekFieldBodyTranslationTest::testUpdatingWithADocumentArchivedError()
  3. 3.0.x tests/src/Functional/LingotekFieldBodyTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekFieldBodyTranslationTest::testUpdatingWithADocumentArchivedError()
  4. 3.1.x tests/src/Functional/LingotekFieldBodyTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekFieldBodyTranslationTest::testUpdatingWithADocumentArchivedError()
  5. 3.2.x tests/src/Functional/LingotekFieldBodyTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekFieldBodyTranslationTest::testUpdatingWithADocumentArchivedError()
  6. 3.3.x tests/src/Functional/LingotekFieldBodyTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekFieldBodyTranslationTest::testUpdatingWithADocumentArchivedError()
  7. 3.5.x tests/src/Functional/LingotekFieldBodyTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekFieldBodyTranslationTest::testUpdatingWithADocumentArchivedError()
  8. 3.6.x tests/src/Functional/LingotekFieldBodyTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekFieldBodyTranslationTest::testUpdatingWithADocumentArchivedError()
  9. 3.7.x tests/src/Functional/LingotekFieldBodyTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekFieldBodyTranslationTest::testUpdatingWithADocumentArchivedError()
  10. 3.8.x tests/src/Functional/LingotekFieldBodyTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekFieldBodyTranslationTest::testUpdatingWithADocumentArchivedError()

Test that we handle errors in update.

File

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

Class

LingotekFieldBodyTranslationTest
Tests translating a field.

Namespace

Drupal\Tests\lingotek\Functional

Code

public function testUpdatingWithADocumentArchivedError() {
  $assert_session = $this
    ->assertSession();

  // 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');
  $this
    ->assertText('Body status checked successfully');

  // Edit the field.
  $edit = [
    'label' => 'Contents',
  ];
  $this
    ->drupalPostForm('/admin/structure/types/manage/article/fields/node.article.body', $edit, t('Save settings'));
  $this
    ->assertText('Saved Contents configuration.');

  // Go back to the form.
  $this
    ->drupalGet('/admin/config/regional/config-translation/node_fields');
  $this
    ->clickLink(t('Translate'));
  \Drupal::state()
    ->set('lingotek.must_document_archived_error_in_update', TRUE);

  // Re-upload. Must fail now.
  $this
    ->clickLink('Upload');
  $this
    ->checkForMetaRefresh();
  $this
    ->assertText('Document Contents has been archived. 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, 'The field has been marked as error.');

  // I can still re-try the upload.
  \Drupal::state()
    ->set('lingotek.must_document_archived_error_in_update', FALSE);
  $this
    ->clickLink('Upload');
  $this
    ->checkForMetaRefresh();
  $this
    ->assertText('Contents uploaded successfully');
}