You are here

public function LingotekFieldBodyBulkTranslationTest::testUpdatingWithAnErrorUsingActions in Lingotek Translation 3.6.x

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

Test that we handle errors in update.

File

tests/src/Functional/LingotekFieldBodyBulkTranslationTest.php, line 654

Class

LingotekFieldBodyBulkTranslationTest
Tests translating a field using the bulk management form.

Namespace

Drupal\Tests\lingotek\Functional

Code

public function testUpdatingWithAnErrorUsingActions() {

  // Set upload as manual.
  $this
    ->saveLingotekConfigTranslationSettings([
    'node_fields' => 'manual',
  ]);
  $this
    ->goToConfigBulkManagementForm('node_fields');

  // Upload the document, which must succeed.
  $this
    ->clickLink('EN');
  $this
    ->assertText('Body uploaded successfully');

  // Check upload.
  $this
    ->clickLink('EN');

  // Edit the field.
  $edit = [
    'label' => 'Contents',
  ];
  $this
    ->drupalPostForm('/admin/structure/types/manage/article/fields/node.article.body', $edit, t('Save settings'));
  $this
    ->assertText('Saved Contents configuration.');
  \Drupal::state()
    ->set('lingotek.must_error_in_upload', TRUE);
  $this
    ->goToConfigBulkManagementForm('node_fields');

  // Update the document, which must fail.
  $edit = [
    'table[node.article.body]' => TRUE,
    $this
      ->getBulkOperationFormName() => $this
      ->getBulkOperationNameForUpload('node'),
  ];
  $this
    ->drupalPostForm(NULL, $edit, $this
    ->getApplyActionsButtonLabel());
  $this
    ->assertText('Contents update failed. Please try again.');

  // Check the right class is added.
  $this
    ->assertSourceStatus('EN', Lingotek::STATUS_ERROR);

  // The field has been marked with the error status.
  $fieldConfig = FieldConfig::load('node.article.body');

  /** @var \Drupal\lingotek\LingotekConfigTranslationServiceInterface $translation_service */
  $translation_service = \Drupal::service('lingotek.config_translation');
  $source_status = $translation_service
    ->getSourceStatus($fieldConfig);
  $this
    ->assertEqual(Lingotek::STATUS_ERROR, $source_status, 'The field has been marked as error.');

  // I can still re-try the upload.
  \Drupal::state()
    ->set('lingotek.must_error_in_upload', FALSE);
  $this
    ->clickLink('EN');
  $this
    ->assertText('Contents has been updated.');
}