You are here

public function LingotekSystemSiteBulkTranslationTest::testUpdatingWithADocumentArchivedErrorUsingActions in Lingotek Translation 3.3.x

Same name and namespace in other branches
  1. 8.2 tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testUpdatingWithADocumentArchivedErrorUsingActions()
  2. 4.0.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testUpdatingWithADocumentArchivedErrorUsingActions()
  3. 3.0.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testUpdatingWithADocumentArchivedErrorUsingActions()
  4. 3.1.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testUpdatingWithADocumentArchivedErrorUsingActions()
  5. 3.2.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testUpdatingWithADocumentArchivedErrorUsingActions()
  6. 3.4.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testUpdatingWithADocumentArchivedErrorUsingActions()
  7. 3.5.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testUpdatingWithADocumentArchivedErrorUsingActions()
  8. 3.6.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testUpdatingWithADocumentArchivedErrorUsingActions()
  9. 3.7.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testUpdatingWithADocumentArchivedErrorUsingActions()
  10. 3.8.x tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteBulkTranslationTest::testUpdatingWithADocumentArchivedErrorUsingActions()

Test that we handle errors in update.

File

tests/src/Functional/LingotekSystemSiteBulkTranslationTest.php, line 778

Class

LingotekSystemSiteBulkTranslationTest
Tests translating a config object using the bulk management form.

Namespace

Drupal\Tests\lingotek\Functional

Code

public function testUpdatingWithADocumentArchivedErrorUsingActions() {
  $assert_session = $this
    ->assertSession();
  $this
    ->goToConfigBulkManagementForm();

  // Upload the document, which must succeed.
  $basepath = \Drupal::request()
    ->getBasePath();
  $assert_session
    ->linkByHrefExists($basepath . '/admin/lingotek/config/upload/system.site_information_settings/system.site_information_settings?destination=' . $basepath . '/admin/lingotek/config/manage');
  $edit = [
    'table[system.site_information_settings]' => TRUE,
    $this
      ->getBulkOperationFormName() => 'upload',
  ];
  $this
    ->drupalPostForm(NULL, $edit, $this
    ->getApplyActionsButtonLabel());
  $this
    ->assertText('Operations completed.');

  // 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_archived_error_in_update', TRUE);
  $this
    ->goToConfigBulkManagementForm();
  $edit = [
    'table[system.site_information_settings]' => TRUE,
    $this
      ->getBulkOperationFormName() => 'upload',
  ];
  $this
    ->drupalPostForm(NULL, $edit, $this
    ->getApplyActionsButtonLabel());
  $this
    ->assertText('Document System information has been archived. Please upload again.');

  // Check the right class is added.
  // We cannot use this as there are 4 elements by default with that status.
  // $this->assertSourceStatus('EN', Lingotek::STATUS_UNTRACKED);
  $source_error = $this
    ->xpath("//span[contains(@class,'language-icon') and contains(@class,'source-untracked')  and ./a[contains(text(), 'EN')]]");
  $this
    ->assertEqual(count($source_error), 4, 'The system information has been marked as untracked.');

  // 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_archived_error_in_update', FALSE);
  $this
    ->clickLink('EN', 1);
  $this
    ->assertText('System information uploaded successfully');
}