public function LingotekNodeTranslationTest::testCheckSourceStatusCompletedAndContentMissing in Lingotek Translation 4.0.x
Same name and namespace in other branches
- 3.7.x tests/src/Functional/LingotekNodeTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeTranslationTest::testCheckSourceStatusCompletedAndContentMissing()
- 3.8.x tests/src/Functional/LingotekNodeTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeTranslationTest::testCheckSourceStatusCompletedAndContentMissing()
Tests that all the statuses are set when using the Check Translations action.
File
- tests/
src/ Functional/ LingotekNodeTranslationTest.php, line 1050
Class
- LingotekNodeTranslationTest
- Tests translating a node.
Namespace
Drupal\Tests\lingotek\FunctionalCode
public function testCheckSourceStatusCompletedAndContentMissing() {
\Drupal::state()
->set('lingotek.must_document_not_found_error_in_check_source_status', 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.');
$this
->assertIdentical('en_US', \Drupal::state()
->get('lingotek.uploaded_locale'));
// I can check current status.
$this
->assertLink('Check Upload Status');
$this
->clickLink('Check Upload 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);
$this
->assertText('Document node Llamas are cool was not found. Please upload again.');
}