You are here

public function LingotekSystemSiteTranslationTest::testCheckSourceStatusNotCompletedAndStillImporting in Lingotek Translation 3.7.x

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

Test that we handle errors in update.

File

tests/src/Functional/LingotekSystemSiteTranslationTest.php, line 300

Class

LingotekSystemSiteTranslationTest
Tests translating a config object.

Namespace

Drupal\Tests\lingotek\Functional

Code

public function testCheckSourceStatusNotCompletedAndStillImporting() {

  // Check that the translate tab is in the site information.
  $this
    ->drupalGet('/admin/config/system/site-information');
  $this
    ->clickLink('Translate system information');

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

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

  // Check that the upload succeeded.
  $this
    ->clickLink('Check upload status');

  // 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
    ->assertText('The import for System information is still pending.');

  // The config mapper has been marked with the error status.

  /** @var \Drupal\config_translation\ConfigMapperManagerInterface $mapperManager */
  $mapperManager = \Drupal::service('plugin.manager.config_translation.mapper');
  $mapper = $mapperManager
    ->getMappers()['system.site_information_settings'];

  /** @var \Drupal\lingotek\LingotekConfigTranslationServiceInterface $translation_service */
  $translation_service = \Drupal::service('lingotek.config_translation');
  $source_status = $translation_service
    ->getConfigSourceStatus($mapper);
  $this
    ->assertEqual(Lingotek::STATUS_IMPORTING, $source_status, 'The system information has been marked as error.');
}