public function LingotekNodeBulkTranslationTest::testCheckTranslationsAction in Lingotek Translation 3.5.x
Same name and namespace in other branches
- 8.2 tests/src/Functional/LingotekNodeBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeBulkTranslationTest::testCheckTranslationsAction()
- 4.0.x tests/src/Functional/LingotekNodeBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeBulkTranslationTest::testCheckTranslationsAction()
- 3.0.x tests/src/Functional/LingotekNodeBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeBulkTranslationTest::testCheckTranslationsAction()
- 3.1.x tests/src/Functional/LingotekNodeBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeBulkTranslationTest::testCheckTranslationsAction()
- 3.2.x tests/src/Functional/LingotekNodeBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeBulkTranslationTest::testCheckTranslationsAction()
- 3.3.x tests/src/Functional/LingotekNodeBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeBulkTranslationTest::testCheckTranslationsAction()
- 3.4.x tests/src/Functional/LingotekNodeBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeBulkTranslationTest::testCheckTranslationsAction()
- 3.6.x tests/src/Functional/LingotekNodeBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeBulkTranslationTest::testCheckTranslationsAction()
- 3.7.x tests/src/Functional/LingotekNodeBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeBulkTranslationTest::testCheckTranslationsAction()
- 3.8.x tests/src/Functional/LingotekNodeBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeBulkTranslationTest::testCheckTranslationsAction()
Tests that all the statuses are set when using the Check Translations action.
File
- tests/
src/ Functional/ LingotekNodeBulkTranslationTest.php, line 1437
Class
- LingotekNodeBulkTranslationTest
- Tests translating a node using the bulk management form.
Namespace
Drupal\Tests\lingotek\FunctionalCode
public function testCheckTranslationsAction() {
// Add a couple of languages.
ConfigurableLanguage::create([
'id' => 'de_AT',
'label' => 'German (Austria)',
])
->setThirdPartySetting('lingotek', 'locale', 'de_AT')
->save();
ConfigurableLanguage::createFromLangcode('ca')
->setThirdPartySetting('lingotek', 'locale', 'ca_ES')
->save();
ConfigurableLanguage::createFromLangcode('it')
->setThirdPartySetting('lingotek', 'locale', 'it_IT')
->save();
// Create a node.
$edit = [];
$edit['title[0][value]'] = 'Llamas are cool';
$edit['body[0][value]'] = 'Llamas are very cool';
$edit['langcode[0][value]'] = 'en';
$edit['lingotek_translation_management[lingotek_translation_profile]'] = 'manual';
$this
->saveAndPublishNodeForm($edit);
$this
->goToContentBulkManagementForm();
// I can init the upload of content.
$this
->assertLingotekUploadLink();
$key = $this
->getBulkSelectionKey('en', 1);
$edit = [
$key => TRUE,
$this
->getBulkOperationFormName() => $this
->getBulkOperationNameForUpload('node'),
];
$this
->drupalPostForm(NULL, $edit, $this
->getApplyActionsButtonLabel());
$this
->assertIdentical('en_US', \Drupal::state()
->get('lingotek.uploaded_locale'));
// I can check current status.
$this
->assertLingotekCheckSourceStatusLink();
$key = $this
->getBulkSelectionKey('en', 1);
$edit = [
$key => TRUE,
$this
->getBulkOperationFormName() => $this
->getBulkOperationNameForCheckUpload('node'),
];
$this
->drupalPostForm(NULL, $edit, $this
->getApplyActionsButtonLabel());
// Assert that I could request translations.
$this
->assertLingotekRequestTranslationLink('de_AT', 'dummy-document-hash-id');
// Check statuses, that may been requested externally.
$key = $this
->getBulkSelectionKey('en', 1);
$edit = [
$key => TRUE,
$this
->getBulkOperationFormName() => $this
->getBulkOperationNameForCheckTranslations('node'),
];
$this
->drupalPostForm(NULL, $edit, $this
->getApplyActionsButtonLabel());
// Now Drupal knows that there are translations ready.
$this
->assertLingotekDownloadTargetLink('de_AT');
$this
->assertLingotekDownloadTargetLink('es_MX');
// Even if I just add a new language.
ConfigurableLanguage::createFromLangcode('de')
->setThirdPartySetting('lingotek', 'locale', 'de_DE')
->save();
$this
->drupalPostForm(NULL, $edit, $this
->getApplyActionsButtonLabel());
$this
->assertLingotekDownloadTargetLink('de_DE');
// Ensure locales are handled correctly by setting manual values.
\Drupal::state()
->set('lingotek.document_completion_statuses', [
'de-AT' => 50,
'de-DE' => 100,
'es-MX' => 10,
]);
$this
->drupalPostForm(NULL, $edit, $this
->getApplyActionsButtonLabel());
// Now Drupal knows which translations are ready.
$this
->assertNoLingotekDownloadTargetLink('de_AT');
$this
->assertLingotekDownloadTargetLink('de_DE');
$this
->assertNoLingotekDownloadTargetLink('es_MX');
$this
->assertLingotekRequestTranslationLink('ca_ES');
$this
->assertLingotekRequestTranslationLink('it_IT');
\Drupal::state()
->set('lingotek.document_completion_statuses', [
'it-IT' => 100,
'de-DE' => 50,
'es-MX' => 10,
]);
// Check all statuses again.
$this
->drupalPostForm(NULL, $edit, $this
->getApplyActionsButtonLabel());
// All translations must be updated according exclusively with the
// information from the TMS.
$this
->assertLingotekRequestTranslationLink('de_AT');
$this
->assertLingotekCheckTargetStatusLink('de_DE');
$this
->assertLingotekCheckTargetStatusLink('es_MX');
$this
->assertLingotekRequestTranslationLink('ca_ES');
$this
->assertLingotekDownloadTargetLink('it_IT');
// Source status must be kept too.
$this
->assertSourceStatus('EN', Lingotek::STATUS_CURRENT);
$this
->assertSourceStatusStateCount(Lingotek::STATUS_CURRENT, 'EN', 1);
}