public function LingotekSystemSiteTranslationTest::testUpdatingWithAnError in Lingotek Translation 8
Test that we handle errors in update.
File
- src/
Tests/ LingotekSystemSiteTranslationTest.php, line 218
Class
- LingotekSystemSiteTranslationTest
- Tests translating a config object.
Namespace
Drupal\lingotek\TestsCode
public function testUpdatingWithAnError() {
// 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
->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_error_in_upload', TRUE);
// Re-upload. Must fail now.
$this
->clickLink('Upload');
$this
->assertText('System information update failed. Please try again.');
// The config mapper has been marked with the error status.
/** @var ConfigMapperManagerInterface $mapperManager */
$mapperManager = \Drupal::service('plugin.manager.config_translation.mapper');
$mapper = $mapperManager
->getMappers()['system.site_information_settings'];
/** @var 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('Upload');
$this
->assertText('System information has been updated.');
}