You are here

public function LingotekContentTypeTranslationTest::testUpdatingWithADocumentLockedErrorViaAutomaticUpload in Lingotek Translation 3.3.x

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

Test that we handle errors in update.

File

tests/src/Functional/LingotekContentTypeTranslationTest.php, line 535

Class

LingotekContentTypeTranslationTest
Tests translating a content type.

Namespace

Drupal\Tests\lingotek\Functional

Code

public function testUpdatingWithADocumentLockedErrorViaAutomaticUpload() {

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

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

  // Check that the upload succeeded.
  $this
    ->clickLink('Check upload status');
  $this
    ->assertText('Article status checked successfully');
  \Drupal::state()
    ->set('lingotek.must_document_locked_error_in_update', TRUE);

  // Edit the content type.
  $edit['name'] = 'Blogpost';
  $this
    ->drupalPostForm('/admin/structure/types/manage/article', $edit, t('Save content type'));
  $this
    ->assertText('The content type Blogpost has been updated.');
  $this
    ->assertText('Document node_type Blogpost has a new version. The document id has been updated for all future interactions. Please try again.');

  // The node type has been marked with the error status.
  $nodeType = NodeType::load('article');

  /** @var \Drupal\lingotek\LingotekConfigTranslationServiceInterface $translation_service */
  $translation_service = \Drupal::service('lingotek.config_translation');
  $source_status = $translation_service
    ->getSourceStatus($nodeType);
  $this
    ->assertEqual(Lingotek::STATUS_EDITED, $source_status, 'The node type has been marked as error.');

  // I can still re-try the upload.
  \Drupal::state()
    ->set('lingotek.must_document_locked_error_in_update', FALSE);
  $this
    ->clickLink(t('Translate'));
  $this
    ->clickLink('Upload');
  $this
    ->checkForMetaRefresh();
  $this
    ->assertText('Blogpost has been updated.');
}