You are here

public function LingotekSystemSiteTranslationTest::testUploadingWithAnError in Lingotek Translation 3.6.x

Same name and namespace in other branches
  1. 8.2 tests/src/Functional/LingotekSystemSiteTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteTranslationTest::testUploadingWithAnError()
  2. 4.0.x tests/src/Functional/LingotekSystemSiteTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteTranslationTest::testUploadingWithAnError()
  3. 3.0.x tests/src/Functional/LingotekSystemSiteTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteTranslationTest::testUploadingWithAnError()
  4. 3.1.x tests/src/Functional/LingotekSystemSiteTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteTranslationTest::testUploadingWithAnError()
  5. 3.2.x tests/src/Functional/LingotekSystemSiteTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteTranslationTest::testUploadingWithAnError()
  6. 3.3.x tests/src/Functional/LingotekSystemSiteTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteTranslationTest::testUploadingWithAnError()
  7. 3.4.x tests/src/Functional/LingotekSystemSiteTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteTranslationTest::testUploadingWithAnError()
  8. 3.5.x tests/src/Functional/LingotekSystemSiteTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteTranslationTest::testUploadingWithAnError()
  9. 3.7.x tests/src/Functional/LingotekSystemSiteTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteTranslationTest::testUploadingWithAnError()
  10. 3.8.x tests/src/Functional/LingotekSystemSiteTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteTranslationTest::testUploadingWithAnError()

Test that we handle errors in upload.

File

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

Class

LingotekSystemSiteTranslationTest
Tests translating a config object.

Namespace

Drupal\Tests\lingotek\Functional

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 \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_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
    ->checkForMetaRefresh();
  $this
    ->assertText('System information uploaded successfully');
}