You are here

public function LingotekFieldBodyBulkTranslationTest::testUploadingWithAPaymentRequiredErrorUsingActions in Lingotek Translation 3.3.x

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

Test that we handle errors in upload.

File

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

Class

LingotekFieldBodyBulkTranslationTest
Tests translating a field using the bulk management form.

Namespace

Drupal\Tests\lingotek\Functional

Code

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

  // Set upload as manual.
  $this
    ->saveLingotekConfigTranslationSettings([
    'node_fields' => 'manual',
  ]);
  \Drupal::state()
    ->set('lingotek.must_payment_required_error_in_upload', TRUE);
  $this
    ->goToConfigBulkManagementForm('node_fields');

  // Upload the document, which must fail.
  $basepath = \Drupal::request()
    ->getBasePath();
  $assert_session
    ->linkByHrefExists($basepath . '/admin/lingotek/config/upload/field_config/node.article.body?destination=' . $basepath . '/admin/lingotek/config/manage');
  $edit = [
    'table[node.article.body]' => TRUE,
    $this
      ->getBulkOperationFormName() => $this
      ->getBulkOperationNameForUpload('node'),
  ];
  $this
    ->drupalPostForm(NULL, $edit, $this
    ->getApplyActionsButtonLabel());
  $this
    ->assertText('Community has been disabled. Please contact support@lingotek.com to re-enable your community.');

  // 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_payment_required_error_in_upload', FALSE);
  $this
    ->clickLink('EN');
  $this
    ->assertText('Body uploaded successfully');
}