public function LingotekSystemSiteBulkTranslationTest::testUploadingWithAPaymentRequiredErrorUsingActions in Lingotek Translation 3.1.x
Same name and namespace in other branches
- 8.2 tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testUploadingWithAPaymentRequiredErrorUsingActions()
- 4.0.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testUploadingWithAPaymentRequiredErrorUsingActions()
- 3.0.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testUploadingWithAPaymentRequiredErrorUsingActions()
- 3.2.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testUploadingWithAPaymentRequiredErrorUsingActions()
- 3.3.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testUploadingWithAPaymentRequiredErrorUsingActions()
- 3.4.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testUploadingWithAPaymentRequiredErrorUsingActions()
- 3.5.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testUploadingWithAPaymentRequiredErrorUsingActions()
- 3.6.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testUploadingWithAPaymentRequiredErrorUsingActions()
- 3.7.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testUploadingWithAPaymentRequiredErrorUsingActions()
- 3.8.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testUploadingWithAPaymentRequiredErrorUsingActions()
Test that we handle errors in upload.
File
- tests/
src/ Functional/ LingotekSystemSiteBulkTranslationTest.php, line 581
Class
- LingotekSystemSiteBulkTranslationTest
- Tests translating a config object using the bulk management form.
Namespace
Drupal\Tests\lingotek\FunctionalCode
public function testUploadingWithAPaymentRequiredErrorUsingActions() {
$assert_session = $this
->assertSession();
\Drupal::state()
->set('lingotek.must_payment_required_error_in_upload', TRUE);
$this
->goToConfigBulkManagementForm();
// Upload the document, which must fail.
$basepath = \Drupal::request()
->getBasePath();
$assert_session
->linkByHrefExists($basepath . '/admin/lingotek/config/upload/system.site_information_settings/system.site_information_settings?destination=' . $basepath . '/admin/lingotek/config/manage');
$edit = [
'table[system.site_information_settings]' => TRUE,
$this
->getBulkOperationFormName() => 'upload',
];
$this
->drupalPostForm(NULL, $edit, $this
->getApplyActionsButtonLabel());
$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'));
}