public function LingotekSystemSiteTranslationTest::testUpdatingWithADocumentNotFoundError in Lingotek Translation 3.7.x
Same name and namespace in other branches
- 4.0.x tests/src/Functional/LingotekSystemSiteTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteTranslationTest::testUpdatingWithADocumentNotFoundError()
- 3.8.x tests/src/Functional/LingotekSystemSiteTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteTranslationTest::testUpdatingWithADocumentNotFoundError()
Test that we handle errors in update.
File
- tests/
src/ Functional/ LingotekSystemSiteTranslationTest.php, line 461
Class
- LingotekSystemSiteTranslationTest
- Tests translating a config object.
Namespace
Drupal\Tests\lingotek\FunctionalCode
public function testUpdatingWithADocumentNotFoundError() {
// Check that the translate tab is in the site information.
$this
->drupalGet('/admin/config/system/site-information');
$this
->clickLink('Translate system information');
// Upload the document, which must succeed.
$this
->clickLink('Upload');
$this
->checkForMetaRefresh();
$this
->assertText('System information uploaded successfully');
// Check that the upload succeeded.
$this
->clickLink('Check upload status');
$this
->assertText('System information status checked successfully');
// Edit the system site information.
$edit['site_name'] = 'Llamas are cool';
$this
->drupalPostForm('/admin/config/system/site-information', $edit, t('Save configuration'));
// Go back to the form.
$this
->drupalGet('/admin/config/system/site-information');
$this
->clickLink('Translate system information');
\Drupal::state()
->set('lingotek.must_document_not_found_error_in_update', TRUE);
// Re-upload. Must fail now.
$this
->clickLink('Upload');
$this
->checkForMetaRefresh();
$this
->assertText('Document System information was not found. Please upload 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_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('Upload');
$this
->checkForMetaRefresh();
$this
->assertText('System information uploaded successfully');
}