You are here

public function LingotekSystemSiteTranslationTest::testUploadingWithAnError in Lingotek Translation 8

Test that we handle errors in upload.

File

src/Tests/LingotekSystemSiteTranslationTest.php, line 190

Class

LingotekSystemSiteTranslationTest
Tests translating a config object.

Namespace

Drupal\lingotek\Tests

Code

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

  // Check that the translate tab is in the site information.
  $this
    ->drupalGet('/admin/config/system/site-information');
  $this
    ->clickLink('Translate system information');
  $this
    ->clickLink(t('Upload'));
  $this
    ->assertText('System information upload failed. Please try again.');

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

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

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

  // I can still re-try the upload.
  \Drupal::state()
    ->set('lingotek.must_error_in_upload', FALSE);
  $this
    ->clickLink('Upload');
  $this
    ->assertText('System information uploaded successfully');
}