You are here

public function LingotekFieldBodyBulkTranslationTest::testUploadingWithAnErrorUsingActions in Lingotek Translation 8

Test that we handle errors in upload.

File

src/Tests/LingotekFieldBodyBulkTranslationTest.php, line 456

Class

LingotekFieldBodyBulkTranslationTest
Tests translating a field using the bulk management form.

Namespace

Drupal\lingotek\Tests

Code

public function testUploadingWithAnErrorUsingActions() {

  // Set upload as manual.
  $edit = [
    'table[node_fields][profile]' => 'manual',
  ];
  $this
    ->drupalPostForm('admin/lingotek/settings', $edit, 'Save', [], [], 'lingoteksettings-tab-configuration-form');
  \Drupal::state()
    ->set('lingotek.must_error_in_upload', TRUE);
  $this
    ->goToConfigBulkManagementForm('node_fields');

  // Upload the document, which must fail.
  $basepath = \Drupal::request()
    ->getBasePath();
  $this
    ->assertLinkByHref($basepath . '/admin/lingotek/config/upload/field_config/node.article.body?destination=' . $basepath . '/admin/lingotek/config/manage');
  $edit = [
    'table[node.article.body]' => TRUE,
    'operation' => 'upload',
  ];
  $this
    ->drupalPostForm(NULL, $edit, t('Execute'));
  $this
    ->assertText('Body upload failed. Please try again.');

  // Check the right class is added.
  $source_error = $this
    ->xpath("//span[contains(@class,'language-icon') and contains(@class,'source-error')  and ./a[contains(text(), 'EN')]]");
  $this
    ->assertEqual(count($source_error), 1, 'The field has been marked as error.');

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

  /** @var 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('Body uploaded successfully');
}