You are here

public function LingotekNodeTranslationTest::testRequestTranslationWithADocumentLockedError in Lingotek Translation 3.6.x

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

Test that we handle errors in request translation.

File

tests/src/Functional/LingotekNodeTranslationTest.php, line 1101

Class

LingotekNodeTranslationTest
Tests translating a node.

Namespace

Drupal\Tests\lingotek\Functional

Code

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

  // Create a node.
  $edit = [];
  $edit['title[0][value]'] = 'Llamas are cool';
  $edit['body[0][value]'] = 'Llamas are very cool';
  $edit['langcode[0][value]'] = 'en';
  $edit['lingotek_translation_management[lingotek_translation_profile]'] = 'manual';
  $this
    ->saveAndPublishNodeForm($edit);

  // Check that the translate tab is in the node.
  $this
    ->drupalGet('node/1');
  $this
    ->clickLink('Translate');

  // Upload the document.
  $this
    ->clickLink('Upload');
  $this
    ->checkForMetaRefresh();
  $this
    ->assertText('Uploaded 1 document to Lingotek.');

  // The document should have been automatically uploaded, so let's check
  // the upload status.
  $this
    ->clickLink('Check Upload Status');
  $this
    ->assertText('The import for node Llamas are cool is complete.');

  // Request translation.
  $this
    ->clickLink('Request translation');
  $this
    ->assertText('Document node Llamas are cool has a new version. The document id has been updated for all future interactions. Please try again.');
  $this->node = Node::load(1);

  /** @var \Drupal\lingotek\LingotekContentTranslationServiceInterface $translation_service */
  $translation_service = \Drupal::service('lingotek.content_translation');
  $source_status = $translation_service
    ->getSourceStatus($this->node);
  $this
    ->assertEqual($source_status, Lingotek::STATUS_CURRENT);
  $this
    ->assertEqual($translation_service
    ->getTargetStatus($this->node, 'ES'), Lingotek::STATUS_UNTRACKED);
}