You are here

public function LingotekContentTypeTranslationTest::testCheckSourceStatusCompletedAndContentMissing in Lingotek Translation 3.7.x

Same name and namespace in other branches
  1. 4.0.x tests/src/Functional/LingotekContentTypeTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentTypeTranslationTest::testCheckSourceStatusCompletedAndContentMissing()
  2. 3.8.x tests/src/Functional/LingotekContentTypeTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekContentTypeTranslationTest::testCheckSourceStatusCompletedAndContentMissing()

Test that we handle errors in update.

File

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

Class

LingotekContentTypeTranslationTest
Tests translating a content type.

Namespace

Drupal\Tests\lingotek\Functional

Code

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

  // 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('Document Article was not found. Please upload again.');
  $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_UNTRACKED, $source_status);
}