You are here

public function LingotekSystemSiteBulkTranslationTest::testCheckSourceStatusWithAnError in Lingotek Translation 3.8.x

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

Test that we handle errors in update.

File

tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php, line 367

Class

LingotekSystemSiteBulkTranslationTest
Tests translating a config object using the bulk management form.

Namespace

Drupal\Tests\lingotek\Functional

Code

public function testCheckSourceStatusWithAnError() {
  \Drupal::state()
    ->set('lingotek.must_error_in_check_source_status', TRUE);
  $this
    ->goToConfigBulkManagementForm();

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

  // Check upload.
  $this
    ->clickLink('EN', 1);
  $this
    ->assertText('System information status check failed. Please try again.');

  // Check the right class is added.
  $this
    ->assertSourceStatus('EN', Lingotek::STATUS_IMPORTING);

  // 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);
}