You are here

public function LingotekFieldBodyNotificationCallbackTest::testProfileTargetOverridesNotificationContentTypeTranslation in Lingotek Translation 3.4.x

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

Tests that a node can be translated using the links on the management page.

File

tests/src/Functional/LingotekFieldBodyNotificationCallbackTest.php, line 272

Class

LingotekFieldBodyNotificationCallbackTest
Tests translating a content type using the notification callback.

Namespace

Drupal\Tests\lingotek\Functional

Code

public function testProfileTargetOverridesNotificationContentTypeTranslation() {
  $profile = LingotekProfile::create([
    'id' => 'profile2',
    'label' => 'Profile with overrides',
    'auto_upload' => TRUE,
    'auto_download' => TRUE,
    'auto_request' => TRUE,
    'auto_download_worker' => FALSE,
    'language_overrides' => [
      'es' => [
        'overrides' => 'custom',
        'custom' => [
          'auto_request' => FALSE,
          'auto_download' => FALSE,
        ],
      ],
    ],
  ]);
  $profile
    ->save();
  ConfigurableLanguage::createFromLangcode('de')
    ->save();
  ConfigurableLanguage::createFromLangcode('it')
    ->save();

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

  // Enable translation for the current entity type and ensure the change is
  // picked up.
  $this
    ->saveLingotekConfigTranslationSettings([
    'node_fields' => 'profile2',
  ]);

  // Create Article node types.
  // We cannot use drupalCreateContentType(), as it asserts that the last entity
  // created returns SAVED_NEW, but it will return SAVED_UPDATED as we will
  // save the third party settings.
  $type = \Drupal::entityTypeManager()
    ->getStorage('node_type')
    ->create([
    'type' => 'article',
    'name' => 'Article',
  ]);
  $type
    ->save();
  node_add_body_field($type);
  \Drupal::service('router.builder')
    ->rebuild();

  /** @var \Drupal\Core\Config\Entity\ConfigEntityStorageInterface $field_storage */
  $field_storage = $this->container
    ->get('entity_type.manager')
    ->getStorage('field_config');

  /** @var \Drupal\lingotek\LingotekConfigTranslationServiceInterface $config_translation_service */
  $config_translation_service = \Drupal::service('lingotek.config_translation');
  $entity = \Drupal::entityTypeManager()
    ->getStorage('field_config')
    ->load('node.article.body');

  // Assert the content is importing.
  $this
    ->assertIdentical(Lingotek::STATUS_IMPORTING, $config_translation_service
    ->getSourceStatus($entity));

  // Go to the bulk config management page.
  $this
    ->goToConfigBulkManagementForm('node_fields');

  // Simulate the notification of content successfully uploaded.
  $url = Url::fromRoute('lingotek.notify', [], [
    'query' => [
      'project_id' => 'test_project',
      'document_id' => 'dummy-document-hash-id',
      'complete' => 'false',
      'type' => 'document_uploaded',
      'progress' => '0',
    ],
  ])
    ->setAbsolute()
    ->toString();
  $request = $this->client
    ->post($url, [
    'cookies' => $this->cookies,
    'headers' => [
      'Accept' => 'application/json',
      'Content-Type' => 'application/json',
    ],
    'http_errors' => FALSE,
  ]);
  $response = json_decode($request
    ->getBody(), TRUE);
  $this
    ->assertIdentical([
    'de',
    'it',
  ], $response['result']['request_translations'], 'German and Italian languages has been requested after notification automatically.');

  // Go to the bulk config management page.
  $this
    ->goToConfigBulkManagementForm();

  // The node cache needs to be reset before reload.
  $field_storage
    ->resetCache();
  $entity = $field_storage
    ->load('node.article.body');

  // Assert the content is imported.
  $this
    ->assertIdentical(Lingotek::STATUS_CURRENT, $config_translation_service
    ->getSourceStatus($entity));

  // Assert the target is pending.
  $this
    ->assertIdentical(Lingotek::STATUS_REQUEST, $config_translation_service
    ->getTargetStatus($entity, 'es'));
  $this
    ->assertIdentical(Lingotek::STATUS_PENDING, $config_translation_service
    ->getTargetStatus($entity, 'de'));

  // Go to the bulk config management page.
  $this
    ->goToConfigBulkManagementForm();

  // Request Spanish manually.
  $this
    ->clickLink('ES');

  // Simulate the notification of content successfully translated.
  $url = Url::fromRoute('lingotek.notify', [], [
    'query' => [
      'project_id' => 'test_project',
      'document_id' => 'dummy-document-hash-id',
      'locale_code' => 'es-ES',
      'locale' => 'es_ES',
      'complete' => 'true',
      'type' => 'target',
      'progress' => '100',
    ],
  ])
    ->setAbsolute()
    ->toString();
  $request = $this->client
    ->post($url, [
    'cookies' => $this->cookies,
    'headers' => [
      'Accept' => 'application/json',
      'Content-Type' => 'application/json',
    ],
    'http_errors' => FALSE,
  ]);
  $response = json_decode($request
    ->getBody(), TRUE);
  $this
    ->assertEmpty($response['result']['download'], 'No translations has been downloaded after notification automatically.');
  $url = Url::fromRoute('lingotek.notify', [], [
    'query' => [
      'project_id' => 'test_project',
      'document_id' => 'dummy-document-hash-id',
      'locale_code' => 'de-DE',
      'locale' => 'de_DE',
      'complete' => 'true',
      'type' => 'target',
      'progress' => '100',
    ],
  ])
    ->setAbsolute()
    ->toString();
  $request = $this->client
    ->post($url, [
    'cookies' => $this->cookies,
    'headers' => [
      'Accept' => 'application/json',
      'Content-Type' => 'application/json',
    ],
    'http_errors' => FALSE,
  ]);
  $response = json_decode($request
    ->getBody(), TRUE);
  $this
    ->assertTrue($response['result']['download'], 'German language has been downloaded after notification automatically.');

  // Go to the bulk config management page.
  $this
    ->goToConfigBulkManagementForm();

  // The node cache needs to be reset before reload.
  $field_storage
    ->resetCache();
  $entity = $field_storage
    ->load('node.article.body');

  // Assert the target is ready.
  $this
    ->assertIdentical(Lingotek::STATUS_READY, $config_translation_service
    ->getTargetStatus($entity, 'es'));
  $this
    ->assertIdentical(Lingotek::STATUS_CURRENT, $config_translation_service
    ->getTargetStatus($entity, 'de'));

  // Go to the bulk config management page.
  $this
    ->goToConfigBulkManagementForm();
  $this
    ->clickLink('ES');

  // The node cache needs to be reset before reload.
  $field_storage
    ->resetCache();
  $entity = $field_storage
    ->load('node.article.body');

  // Assert the target is current.
  $this
    ->assertIdentical(Lingotek::STATUS_CURRENT, $config_translation_service
    ->getTargetStatus($entity, 'es'));
  $this
    ->assertIdentical(Lingotek::STATUS_CURRENT, $config_translation_service
    ->getTargetStatus($entity, 'de'));
}