You are here

public function LingotekFieldBodyBulkDisabledTargetOverrideTranslationTest::testFieldBodyTranslationUsingActionsForMultipleLocales in Lingotek Translation 3.6.x

Same name and namespace in other branches
  1. 4.0.x tests/src/Functional/LingotekFieldBodyBulkDisabledTargetOverrideTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekFieldBodyBulkDisabledTargetOverrideTranslationTest::testFieldBodyTranslationUsingActionsForMultipleLocales()
  2. 3.5.x tests/src/Functional/LingotekFieldBodyBulkDisabledTargetOverrideTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekFieldBodyBulkDisabledTargetOverrideTranslationTest::testFieldBodyTranslationUsingActionsForMultipleLocales()
  3. 3.7.x tests/src/Functional/LingotekFieldBodyBulkDisabledTargetOverrideTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekFieldBodyBulkDisabledTargetOverrideTranslationTest::testFieldBodyTranslationUsingActionsForMultipleLocales()
  4. 3.8.x tests/src/Functional/LingotekFieldBodyBulkDisabledTargetOverrideTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekFieldBodyBulkDisabledTargetOverrideTranslationTest::testFieldBodyTranslationUsingActionsForMultipleLocales()

Tests that a field can be translated using the actions on the management page for multiple locales.

File

tests/src/Functional/LingotekFieldBodyBulkDisabledTargetOverrideTranslationTest.php, line 177

Class

LingotekFieldBodyBulkDisabledTargetOverrideTranslationTest
Tests translating a field using the bulk management form.

Namespace

Drupal\Tests\lingotek\Functional

Code

public function testFieldBodyTranslationUsingActionsForMultipleLocales() {
  $assert_session = $this
    ->assertSession();
  $basepath = \Drupal::request()
    ->getBasePath();
  $this
    ->goToConfigBulkManagementForm('node_fields');

  // Clicking English must init the upload of content.
  $assert_session
    ->linkByHrefExists($basepath . '/admin/lingotek/config/upload/field_config/node.article.body?destination=' . $basepath . '/admin/lingotek/config/manage');

  // And we cannot request yet a translation.
  $assert_session
    ->linkByHrefNotExists($basepath . '/admin/lingotek/config/request/field_config/node.article.body/es_MX?destination=' . $basepath . '/admin/lingotek/config/manage');
  $assert_session
    ->linkByHrefNotExists($basepath . '/admin/lingotek/config/request/field_config/node.article.body/ca_ES?destination=' . $basepath . '/admin/lingotek/config/manage');
  $edit = [
    'table[node.article.body]' => TRUE,
    $this
      ->getBulkOperationFormName() => $this
      ->getBulkOperationNameForUpload('node_fields'),
  ];
  $this
    ->drupalPostForm(NULL, $edit, $this
    ->getApplyActionsButtonLabel());
  $this
    ->assertIdentical('en_US', \Drupal::state()
    ->get('lingotek.uploaded_locale'));
  $this
    ->assertText('Operations completed.');

  // There is a link for checking status.
  $assert_session
    ->linkByHrefExists($basepath . '/admin/lingotek/config/check_upload/field_config/node.article.body?destination=' . $basepath . '/admin/lingotek/config/manage');
  $edit = [
    'table[node.article.body]' => TRUE,
    $this
      ->getBulkOperationFormName() => $this
      ->getBulkOperationNameForCheckUpload('node_fields'),
  ];
  $this
    ->drupalPostForm(NULL, $edit, $this
    ->getApplyActionsButtonLabel());
  $this
    ->assertIdentical('en_US', \Drupal::state()
    ->get('lingotek.uploaded_locale'));
  $this
    ->assertText('Operations completed.');
  $assert_session
    ->linkByHrefExists($basepath . '/admin/lingotek/config/request/field_config/node.article.body/es_MX?destination=' . $basepath . '/admin/lingotek/config/manage');
  $assert_session
    ->linkByHrefNotExists($basepath . '/admin/lingotek/config/request/field_config/node.article.body/ca_ES?destination=' . $basepath . '/admin/lingotek/config/manage');
  $this
    ->assertTargetStatus('es', Lingotek::STATUS_REQUEST);
  $this
    ->assertTargetStatus('ca', Lingotek::STATUS_DISABLED);

  // Request the disabled target translation.
  $edit = [
    'table[node.article.body]' => TRUE,
    $this
      ->getBulkOperationFormName() => $this
      ->getBulkOperationNameForRequestTranslations('node_fields'),
  ];
  $this
    ->drupalPostForm(NULL, $edit, $this
    ->getApplyActionsButtonLabel());
  $this
    ->assertIdentical([
    'dummy-document-hash-id' => [
      'es_MX',
    ],
  ], \Drupal::state()
    ->get('lingotek.requested_locales'));
  $this
    ->assertText('Operations completed.');
  $this
    ->assertTargetStatus('es', Lingotek::STATUS_PENDING);
  $this
    ->assertTargetStatus('ca', Lingotek::STATUS_DISABLED);

  // Check status of the disabled target translation.
  $assert_session
    ->linkByHrefNotExists($basepath . '/admin/lingotek/config/check_download/field_config/node.article.body/ca_ES?destination=' . $basepath . '/admin/lingotek/config/manage');
  $edit = [
    'table[node.article.body]' => TRUE,
    $this
      ->getBulkOperationFormName() => $this
      ->getBulkOperationNameForCheckTranslations('node_fields'),
  ];
  $this
    ->drupalPostForm(NULL, $edit, $this
    ->getApplyActionsButtonLabel());
  $this
    ->assertIdentical(NULL, \Drupal::state()
    ->get('lingotek.checked_target_locale'));
  $this
    ->assertTargetStatus('es', Lingotek::STATUS_READY);
  $this
    ->assertTargetStatus('ca', Lingotek::STATUS_DISABLED);

  // Download the Catalan translation.
  $assert_session
    ->linkByHrefNotExists($basepath . '/admin/lingotek/config/download/field_config/node.article.body/ca_ES?destination=' . $basepath . '/admin/lingotek/config/manage');
  $edit = [
    'table[node.article.body]' => TRUE,
    $this
      ->getBulkOperationFormName() => $this
      ->getBulkOperationNameForDownloadTranslations('node_fields'),
  ];
  $this
    ->drupalPostForm(NULL, $edit, $this
    ->getApplyActionsButtonLabel());
  $this
    ->assertIdentical('es_MX', \Drupal::state()
    ->get('lingotek.downloaded_locale'));
  $this
    ->assertTargetStatus('es', Lingotek::STATUS_CURRENT);
  $this
    ->assertTargetStatus('ca', Lingotek::STATUS_DISABLED);
}