public function LingotekSystemSiteBulkTranslationTest::testUploadingWithAnError 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::testUploadingWithAnError()
- 4.0.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testUploadingWithAnError()
- 3.0.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testUploadingWithAnError()
- 3.2.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testUploadingWithAnError()
- 3.3.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testUploadingWithAnError()
- 3.4.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testUploadingWithAnError()
- 3.5.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testUploadingWithAnError()
- 3.6.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testUploadingWithAnError()
- 3.7.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testUploadingWithAnError()
- 3.8.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testUploadingWithAnError()
Test that we handle errors in upload.
File
- tests/
src/ Functional/ LingotekSystemSiteBulkTranslationTest.php, line 308
Class
- LingotekSystemSiteBulkTranslationTest
- Tests translating a config object using the bulk management form.
Namespace
Drupal\Tests\lingotek\FunctionalCode
public function testUploadingWithAnError() {
\Drupal::state()
->set('lingotek.must_error_in_upload', TRUE);
$this
->goToConfigBulkManagementForm();
// Upload the document, which must fail.
$this
->clickLink('EN', 1);
$this
->assertText('System information upload failed. Please try again.');
// 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_error_in_upload', FALSE);
$this
->clickLink('EN', 1);
$this
->assertText(t('System information uploaded successfully'));
}