public function LingotekSystemSiteTranslationTest::testCheckSourceStatusCompletedAndContentMissing in Lingotek Translation 4.0.x
Same name and namespace in other branches
- 3.7.x tests/src/Functional/LingotekSystemSiteTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteTranslationTest::testCheckSourceStatusCompletedAndContentMissing()
- 3.8.x tests/src/Functional/LingotekSystemSiteTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteTranslationTest::testCheckSourceStatusCompletedAndContentMissing()
Test that we handle errors in update.
File
- tests/src/ Functional/ LingotekSystemSiteTranslationTest.php, line 333 
Class
- LingotekSystemSiteTranslationTest
- Tests translating a config object.
Namespace
Drupal\Tests\lingotek\FunctionalCode
public function testCheckSourceStatusCompletedAndContentMissing() {
  \Drupal::state()
    ->set('lingotek.must_document_not_found_error_in_check_source_status', TRUE);
  // 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');
  // 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
    ->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.');
}