public function LingotekSystemSiteBulkTranslationTest::testUpdatingWithADocumentNotFoundError in Lingotek Translation 4.0.x
Same name and namespace in other branches
- 3.7.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testUpdatingWithADocumentNotFoundError()
- 3.8.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testUpdatingWithADocumentNotFoundError()
Test that we handle errors in update.
File
- tests/
src/ Functional/ LingotekSystemSiteBulkTranslationTest.php, line 548
Class
- LingotekSystemSiteBulkTranslationTest
- Tests translating a config object using the bulk management form.
Namespace
Drupal\Tests\lingotek\FunctionalCode
public function testUpdatingWithADocumentNotFoundError() {
$this
->goToConfigBulkManagementForm();
// Upload the document, which must succeed.
$this
->clickLink('EN', 1);
$this
->assertText(t('System information uploaded successfully'));
// Check upload.
$this
->clickLink('EN', 1);
// Edit the system site information.
$edit = [
'site_name' => 'Llamas are cool',
];
$this
->drupalPostForm('/admin/config/system/site-information', $edit, t('Save configuration'));
\Drupal::state()
->set('lingotek.must_document_not_found_error_in_update', TRUE);
$this
->goToConfigBulkManagementForm();
// Update the document, which must fail.
$this
->clickLink('EN', 1);
$this
->assertText('Document System information was not found. Please upload again.');
// Check the right class is added.
// We cannot use assertSourceStatus() as there are 4 elements by default with that status.
$this
->assertSourceStatusStateCount(Lingotek::STATUS_UNTRACKED, 'EN', 4);
// 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_UNTRACKED, $source_status, 'The system information has been marked as error.');
// I can still re-try the upload.
\Drupal::state()
->set('lingotek.must_document_not_found_error_in_update', FALSE);
$this
->clickLink('EN', 1);
$this
->assertText(t('System information uploaded successfully'));
}