You are here

public function LingotekConfigObjectTranslationDocumentUploadHookTest::testConfigObjectTranslation in Lingotek Translation 3.7.x

Same name and namespace in other branches
  1. 4.0.x tests/src/Functional/LingotekConfigObjectTranslationDocumentUploadHookTest.php \Drupal\Tests\lingotek\Functional\LingotekConfigObjectTranslationDocumentUploadHookTest::testConfigObjectTranslation()
  2. 3.3.x tests/src/Functional/LingotekConfigObjectTranslationDocumentUploadHookTest.php \Drupal\Tests\lingotek\Functional\LingotekConfigObjectTranslationDocumentUploadHookTest::testConfigObjectTranslation()
  3. 3.4.x tests/src/Functional/LingotekConfigObjectTranslationDocumentUploadHookTest.php \Drupal\Tests\lingotek\Functional\LingotekConfigObjectTranslationDocumentUploadHookTest::testConfigObjectTranslation()
  4. 3.5.x tests/src/Functional/LingotekConfigObjectTranslationDocumentUploadHookTest.php \Drupal\Tests\lingotek\Functional\LingotekConfigObjectTranslationDocumentUploadHookTest::testConfigObjectTranslation()
  5. 3.6.x tests/src/Functional/LingotekConfigObjectTranslationDocumentUploadHookTest.php \Drupal\Tests\lingotek\Functional\LingotekConfigObjectTranslationDocumentUploadHookTest::testConfigObjectTranslation()
  6. 3.8.x tests/src/Functional/LingotekConfigObjectTranslationDocumentUploadHookTest.php \Drupal\Tests\lingotek\Functional\LingotekConfigObjectTranslationDocumentUploadHookTest::testConfigObjectTranslation()

Tests that account config object settings can be translated.

File

tests/src/Functional/LingotekConfigObjectTranslationDocumentUploadHookTest.php, line 35

Class

LingotekConfigObjectTranslationDocumentUploadHookTest
Tests the Lingotek config translation document upload hook.

Namespace

Drupal\Tests\lingotek\Functional

Code

public function testConfigObjectTranslation() {

  // Login as admin.
  $this
    ->drupalLogin($this->rootUser);
  $this
    ->drupalGet('/admin/config/lingotek/lingotek_test_config_object');
  $edit = [
    'property_1' => 'Llamas feed description',
    'property_2' => 'Llamas feed description',
    'property_3' => 'Llamas feed description',
    'property_4' => 'Llamas feed description',
    'property_5' => 'Llamas feed description',
    'property_6' => 'Llamas feed description',
  ];
  $this
    ->submitForm($edit, 'Save configuration');
  $this
    ->goToConfigBulkManagementForm();

  // In Drupal 9.2 the order of the elements changed, so we need to find it.
  $label = "Lingotek Test Config Object";
  $enLink = $this
    ->xpath("//td[contains(text(), :label)]/following-sibling::td//a", [
    ':label' => $label,
  ]);
  $enLink[0]
    ->click();

  // Check that Llamas is replaced via hook_lingotek_config_object_document_upload().
  // @see lingotek_test_lingotek_config_object_document_upload()
  $data = json_decode(\Drupal::state()
    ->get('lingotek.uploaded_content', '[]'), TRUE);

  // Only the proper translatable typed properties are being uploaded.
  $this
    ->assertFalse(isset($data['lingotek_test_config_object.settings']['property_1']));
  $this
    ->assertFalse(isset($data['lingotek_test_config_object.settings']['property_2']));
  $this
    ->assertEqual($data['lingotek_test_config_object.settings']['property_3'], 'Cats feed description');
  $this
    ->assertEqual($data['lingotek_test_config_object.settings']['property_4'], 'Llamas feed description');
  $this
    ->assertEqual($data['lingotek_test_config_object.settings']['property_5'], 'Cats feed description');
  $this
    ->assertEqual($data['lingotek_test_config_object.settings']['property_6'], 'Llamas feed description');
}