You are here

public function LingotekContentTypeBulkTranslationTest::testEditedConfigTranslationUsingLinks in Lingotek Translation 8

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

File

src/Tests/LingotekContentTypeBulkTranslationTest.php, line 248

Class

LingotekContentTypeBulkTranslationTest
Tests translating a config entity using the bulk management form.

Namespace

Drupal\lingotek\Tests

Code

public function testEditedConfigTranslationUsingLinks() {

  // We need a node with translations first.
  $this
    ->testContentTypeTranslationUsingLinks();

  // Set upload as manual.
  $edit = [
    'table[node_type][enabled]' => 1,
    'table[node_type][profile]' => 'manual',
  ];
  $this
    ->drupalPostForm('admin/lingotek/settings', $edit, 'Save', [], [], 'lingoteksettings-tab-configuration-form');

  // Add a language so we can check that it's not marked as dirty if there are
  // no translations.
  ConfigurableLanguage::createFromLangcode('eu')
    ->setThirdPartySetting('lingotek', 'locale', 'eu_ES')
    ->save();

  // Add a language so we can check that it's not marked as for requesting if
  // it was already requested.
  ConfigurableLanguage::createFromLangcode('ko')
    ->setThirdPartySetting('lingotek', 'locale', 'ko_KR')
    ->save();

  // Edit the object
  $this
    ->drupalPostForm('/admin/structure/types/manage/article', [
    'name' => 'Article EDITED',
  ], t('Save content type'));

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

  // Check the status is edited for Spanish.
  $untracked = $this
    ->xpath("//a[contains(@class,'language-icon') and contains(@class, 'target-edited')  and contains(text(), 'ES')]");
  $this
    ->assertEqual(count($untracked), 1, 'Edited translation is shown.');

  // Check the status is not edited for Vasque, but available to request
  // translation.
  $eu_edited = $this
    ->xpath("//a[contains(@class,'language-icon') and contains(@class, 'target-edited')  and contains(text(), 'EU')]");
  $this
    ->assertEqual(count($eu_edited), 0, 'Vasque is not marked as edited.');
  $eu_request = $this
    ->xpath("//a[contains(@class,'language-icon') and contains(@class, 'target-request')  and contains(text(), 'EU')]");
  $this
    ->assertEqual(count($eu_request), 1, 'Vasque is ready for request.');

  // Request korean, with outdated content available.
  $this
    ->clickLink('KO');
  $this
    ->assertText("Translation to ko_KR requested successfully");

  // Reupload the content.
  $this
    ->clickLink('EN');
  $this
    ->assertText('Article EDITED has been updated.');

  // Recheck status.
  $this
    ->clickLink('EN');
  $this
    ->assertText('Article EDITED status checked successfully');

  // Korean should still be marked as requested, so we can check target.
  $status = $this
    ->xpath("//a[contains(@class,'language-icon') and contains(@class, 'target-pending')  and contains(text(), 'KO')]");
  $this
    ->assertEqual(count($status), 1, 'Korean is still requested, so we can still check the progress status of the translation');

  // Check the translation after having been edited.
  $edit = [
    'table[article]' => TRUE,
    'operation' => 'check_translations',
  ];
  $this
    ->drupalPostForm(NULL, $edit, t('Execute'));
  $this
    ->assertText('Operations completed.');

  // Download the translation.
  $this
    ->clickLink('ES');
  $this
    ->assertText('Translation to es_MX downloaded successfully');
}