public function LingotekSystemSiteBulkTranslationTest::testCheckSourceStatusNotCompletedAndStillImporting 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::testCheckSourceStatusNotCompletedAndStillImporting()
- 3.8.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testCheckSourceStatusNotCompletedAndStillImporting()
Test that we handle errors in update.
File
- tests/
src/ Functional/ LingotekSystemSiteBulkTranslationTest.php, line 397
Class
- LingotekSystemSiteBulkTranslationTest
- Tests translating a config object using the bulk management form.
Namespace
Drupal\Tests\lingotek\FunctionalCode
public function testCheckSourceStatusNotCompletedAndStillImporting() {
$this
->goToConfigBulkManagementForm();
// Upload the document, which must succeed.
$this
->clickLink('EN', 1);
$this
->assertText(t('System information uploaded successfully'));
// The document has not been imported yet.
\Drupal::state()
->set('lingotek.document_status_completion', FALSE);
// Check upload.
$this
->clickLink('EN', 1);
$this
->assertText('The import for System information is still pending.');
// Check the right class is added.
// We failed at checking status, but we don't know what happened.
// So we don't mark as error but keep it on importing.
$this
->assertNoSourceStatus('EN', Lingotek::STATUS_REQUEST);
$this
->assertSourceStatus('EN', Lingotek::STATUS_IMPORTING);
// 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_IMPORTING, $source_status);
}