You are here

public function LingotekFieldBodyBulkTranslationTest::testCheckSourceStatusNotCompletedAndStillImporting in Lingotek Translation 3.8.x

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

Test that we handle errors in update.

File

tests/src/Functional/LingotekFieldBodyBulkTranslationTest.php, line 460

Class

LingotekFieldBodyBulkTranslationTest
Tests translating a field using the bulk management form.

Namespace

Drupal\Tests\lingotek\Functional

Code

public function testCheckSourceStatusNotCompletedAndStillImporting() {

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

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

  // The document has not been imported yet.
  \Drupal::state()
    ->set('lingotek.document_status_completion', FALSE);

  // Check upload.
  $this
    ->assertLingotekCheckSourceStatusLink();
  $this
    ->clickLink('EN');

  // We failed at checking status, but we don't know what happened.
  // So we don't mark as error but keep it on importing.
  $this
    ->assertNoSourceStatus('EN', Lingotek::STATUS_REQUEST);
  $this
    ->assertSourceStatus('EN', Lingotek::STATUS_IMPORTING);
  $this
    ->assertText('The import for Body is still pending.');
  $fieldConfig = FieldConfig::load('node.article.body');

  /** @var \Drupal\lingotek\LingotekConfigTranslationServiceInterface $translation_service */
  $translation_service = \Drupal::service('lingotek.config_translation');
  $source_status = $translation_service
    ->getSourceStatus($fieldConfig);
  $this
    ->assertEqual(Lingotek::STATUS_IMPORTING, $source_status);
}