You are here

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

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

Test that we handle errors in update.

File

tests/src/Functional/LingotekContentTypeBulkTranslationTest.php, line 549

Class

LingotekContentTypeBulkTranslationTest
Tests translating a config entity using the bulk management form.

Namespace

Drupal\Tests\lingotek\Functional

Code

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

  // Set upload as manual.
  $this
    ->saveLingotekConfigTranslationSettings([
    'node_type' => 'manual',
  ]);
  $this
    ->goToConfigBulkManagementForm('node_type');

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

  // Check upload.
  $this
    ->assertLingotekCheckSourceStatusLink();
  $this
    ->clickLink('EN');
  $this
    ->assertSourceStatus('EN', Lingotek::STATUS_UNTRACKED);
  $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);
}