You are here

public function LingotekSystemSiteBulkTranslationTest::testUploadingWithAPaymentRequiredError in Lingotek Translation 3.3.x

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

Test that we handle errors in upload.

File

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

Class

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

Namespace

Drupal\Tests\lingotek\Functional

Code

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

  // Upload the document, which must fail.
  $this
    ->clickLink('EN', 1);
  $this
    ->assertText('Community has been disabled. Please contact support@lingotek.com to re-enable your community.');

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

  // 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_payment_required_error_in_upload', FALSE);
  $this
    ->clickLink('EN', 1);
  $this
    ->assertText(t('System information uploaded successfully'));
}