You are here

public function LingotekConfigBulkProfileTest::testChangeTranslationProfileBulkAfterCancelling in Lingotek Translation 3.4.x

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

Tests that the translation profiles can be updated with the bulk actions after cancelling.

File

tests/src/Functional/LingotekConfigBulkProfileTest.php, line 156

Class

LingotekConfigBulkProfileTest
Tests changing a profile using the bulk management form.

Namespace

Drupal\Tests\lingotek\Functional

Code

public function testChangeTranslationProfileBulkAfterCancelling() {
  \Drupal::state()
    ->set('lingotek.uploaded_content_type', 'system.site');

  // Login as admin.
  $this
    ->drupalLogin($this->rootUser);

  // Go to the bulk config management page.
  $this
    ->goToConfigBulkManagementForm();
  $basepath = \Drupal::request()
    ->getBasePath();
  $edit = [
    'table[system.site_information_settings]' => TRUE,
    $this
      ->getBulkOperationFormName() => 'change_profile:automatic',
  ];
  $this
    ->drupalPostForm(NULL, $edit, $this
    ->getApplyActionsButtonLabel());

  // Check that there are three nodes with the Automatic Profile
  $automatic_profile = $this
    ->xpath("//td[contains(text(), 'Automatic')]");
  $this
    ->assertEqual(count($automatic_profile), 1, 'Automatic Profile set');
  $edit = [
    'table[system.site_information_settings]' => TRUE,
    $this
      ->getBulkOperationFormName() => 'upload',
  ];
  $this
    ->drupalPostForm(NULL, $edit, $this
    ->getApplyActionsButtonLabel());
  $edit = [
    'table[system.site_information_settings]' => TRUE,
    $this
      ->getBulkOperationFormName() => 'check_upload',
  ];
  $this
    ->drupalPostForm(NULL, $edit, $this
    ->getApplyActionsButtonLabel());
  $edit = [
    'table[system.site_information_settings]' => TRUE,
    $this
      ->getBulkOperationFormName() => 'request_translations',
  ];
  $this
    ->drupalPostForm(NULL, $edit, $this
    ->getApplyActionsButtonLabel());
  $edit = [
    'table[system.site_information_settings]' => TRUE,
    $this
      ->getBulkOperationFormName() => 'check_translations',
  ];
  $this
    ->drupalPostForm(NULL, $edit, $this
    ->getApplyActionsButtonLabel());
  $edit = [
    'table[system.site_information_settings]' => TRUE,
    $this
      ->getBulkOperationFormName() => 'download',
  ];
  $this
    ->drupalPostForm(NULL, $edit, $this
    ->getApplyActionsButtonLabel());
  $edit = [
    'table[system.site_information_settings]' => TRUE,
    $this
      ->getBulkOperationFormName() => 'cancel',
  ];
  $this
    ->drupalPostForm(NULL, $edit, $this
    ->getApplyActionsButtonLabel());
  $this
    ->assertSourceStatus('EN', Lingotek::STATUS_CANCELLED);
  $this
    ->assertTargetStatus('ES', Lingotek::STATUS_CANCELLED);
  $edit = [
    'table[system.site_information_settings]' => TRUE,
    $this
      ->getBulkOperationFormName() => 'upload',
  ];
  $this
    ->drupalPostForm(NULL, $edit, $this
    ->getApplyActionsButtonLabel());
  $this
    ->assertSourceStatus('EN', Lingotek::STATUS_IMPORTING);
  $this
    ->assertTargetStatus('ES', Lingotek::STATUS_UNTRACKED);
  $edit = [
    'table[system.site_information_settings]' => TRUE,
    $this
      ->getBulkOperationFormName() => 'change_profile:disabled',
  ];
  $this
    ->drupalPostForm(NULL, $edit, $this
    ->getApplyActionsButtonLabel());
  drupal_static_reset();
  \Drupal::entityTypeManager()
    ->clearCachedDefinitions();
  $this
    ->applyEntityUpdates();

  // Rebuild the container so that the new languages are picked up by services
  // that hold a list of languages.
  $this
    ->rebuildContainer();

  /** @var \Drupal\lingotek\LingotekConfigTranslationServiceInterface $config_translation_service */
  $config_translation_service = \Drupal::service('lingotek.config_translation');
  $mappers = \Drupal::service('plugin.manager.config_translation.mapper')
    ->getMappers();
  $mapper = $mappers['system.site_information_settings'];
  $this
    ->assertIdentical(Lingotek::STATUS_DISABLED, $config_translation_service
    ->getConfigSourceStatus($mapper));
  $this
    ->assertIdentical(Lingotek::STATUS_DISABLED, $config_translation_service
    ->getConfigTargetStatus($mapper, 'es'));
  $this
    ->drupalGet('admin/config/system/site-information/translate');
  $this
    ->clickLink('Edit');
  $edit = [
    'site_name' => 'llamas are cool',
  ];
  $this
    ->drupalPostForm(NULL, $edit, t('Save configuration'));

  // Go to the bulk config management page.
  $this
    ->goToConfigBulkManagementForm();
  drupal_static_reset();
  \Drupal::entityTypeManager()
    ->clearCachedDefinitions();
  $this
    ->applyEntityUpdates();

  // Rebuild the container so that the new languages are picked up by services
  // that hold a list of languages.
  $this
    ->rebuildContainer();
  $this
    ->assertIdentical(Lingotek::STATUS_DISABLED, $config_translation_service
    ->getConfigSourceStatus($mapper));
  $this
    ->assertIdentical(Lingotek::STATUS_DISABLED, $config_translation_service
    ->getConfigTargetStatus($mapper, 'es'));
}