public function LingotekNodeTranslationTest::testUpdatingWithADocumentArchivedErrorViaAutomaticUpload in Lingotek Translation 8.2
Same name and namespace in other branches
- 4.0.x tests/src/Functional/LingotekNodeTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeTranslationTest::testUpdatingWithADocumentArchivedErrorViaAutomaticUpload()
- 3.0.x tests/src/Functional/LingotekNodeTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeTranslationTest::testUpdatingWithADocumentArchivedErrorViaAutomaticUpload()
- 3.1.x tests/src/Functional/LingotekNodeTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeTranslationTest::testUpdatingWithADocumentArchivedErrorViaAutomaticUpload()
- 3.2.x tests/src/Functional/LingotekNodeTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeTranslationTest::testUpdatingWithADocumentArchivedErrorViaAutomaticUpload()
- 3.3.x tests/src/Functional/LingotekNodeTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeTranslationTest::testUpdatingWithADocumentArchivedErrorViaAutomaticUpload()
- 3.4.x tests/src/Functional/LingotekNodeTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeTranslationTest::testUpdatingWithADocumentArchivedErrorViaAutomaticUpload()
- 3.5.x tests/src/Functional/LingotekNodeTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeTranslationTest::testUpdatingWithADocumentArchivedErrorViaAutomaticUpload()
- 3.6.x tests/src/Functional/LingotekNodeTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeTranslationTest::testUpdatingWithADocumentArchivedErrorViaAutomaticUpload()
- 3.7.x tests/src/Functional/LingotekNodeTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeTranslationTest::testUpdatingWithADocumentArchivedErrorViaAutomaticUpload()
- 3.8.x tests/src/Functional/LingotekNodeTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeTranslationTest::testUpdatingWithADocumentArchivedErrorViaAutomaticUpload()
Test that we handle errors in upload.
File
- tests/
src/ Functional/ LingotekNodeTranslationTest.php, line 699
Class
- LingotekNodeTranslationTest
- Tests translating a node.
Namespace
Drupal\Tests\lingotek\FunctionalCode
public function testUpdatingWithADocumentArchivedErrorViaAutomaticUpload() {
// 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]'] = 'automatic';
$this
->saveAndPublishNodeForm($edit);
\Drupal::state()
->set('lingotek.must_document_archived_error_in_update', TRUE);
// Edit the node.
$edit['title[0][value]'] = 'Llamas are cool EDITED';
$this
->saveAndKeepPublishedNodeForm($edit, 1);
// The document was updated automatically and failed.
$this
->assertText('Document node Llamas are cool EDITED has been archived. Please upload again.');
// The node has been marked with the error status.
$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(Lingotek::STATUS_UNTRACKED, $source_status, 'The node has been marked as untracked, needs new upload.');
}