public function LingotekNodeBulkFormTest::testDisabledLanguage in Lingotek Translation 3.4.x
Same name and namespace in other branches
- 8.2 tests/src/Functional/Form/LingotekNodeBulkFormTest.php \Drupal\Tests\lingotek\Functional\Form\LingotekNodeBulkFormTest::testDisabledLanguage()
- 4.0.x tests/src/Functional/Form/LingotekNodeBulkFormTest.php \Drupal\Tests\lingotek\Functional\Form\LingotekNodeBulkFormTest::testDisabledLanguage()
- 3.0.x tests/src/Functional/Form/LingotekNodeBulkFormTest.php \Drupal\Tests\lingotek\Functional\Form\LingotekNodeBulkFormTest::testDisabledLanguage()
- 3.1.x tests/src/Functional/Form/LingotekNodeBulkFormTest.php \Drupal\Tests\lingotek\Functional\Form\LingotekNodeBulkFormTest::testDisabledLanguage()
- 3.2.x tests/src/Functional/Form/LingotekNodeBulkFormTest.php \Drupal\Tests\lingotek\Functional\Form\LingotekNodeBulkFormTest::testDisabledLanguage()
- 3.3.x tests/src/Functional/Form/LingotekNodeBulkFormTest.php \Drupal\Tests\lingotek\Functional\Form\LingotekNodeBulkFormTest::testDisabledLanguage()
- 3.5.x tests/src/Functional/Form/LingotekNodeBulkFormTest.php \Drupal\Tests\lingotek\Functional\Form\LingotekNodeBulkFormTest::testDisabledLanguage()
- 3.6.x tests/src/Functional/Form/LingotekNodeBulkFormTest.php \Drupal\Tests\lingotek\Functional\Form\LingotekNodeBulkFormTest::testDisabledLanguage()
- 3.7.x tests/src/Functional/Form/LingotekNodeBulkFormTest.php \Drupal\Tests\lingotek\Functional\Form\LingotekNodeBulkFormTest::testDisabledLanguage()
- 3.8.x tests/src/Functional/Form/LingotekNodeBulkFormTest.php \Drupal\Tests\lingotek\Functional\Form\LingotekNodeBulkFormTest::testDisabledLanguage()
Tests that the node bulk form doesn't show a language if it's disabled.
File
- tests/
src/ Functional/ Form/ LingotekNodeBulkFormTest.php, line 625
Class
- LingotekNodeBulkFormTest
- Tests the bulk management form.
Namespace
Drupal\Tests\lingotek\Functional\FormCode
public function testDisabledLanguage() {
// Create an article.
$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);
// Go and upload this node.
$this
->goToContentBulkManagementForm();
// Clicking English must init the upload of content.
$this
->assertLingotekUploadLink();
// And we cannot request yet a translation.
$this
->assertNoLingotekRequestTranslationLink('es_MX');
$this
->clickLink('EN');
// There is a link for checking status.
$this
->assertLingotekCheckSourceStatusLink();
// And we can already request a translation for Spanish.
$this
->assertLingotekRequestTranslationLink('es_MX');
// Then we disable the Spanish language.
\Drupal::service('lingotek.configuration')
->disableLanguage(ConfigurableLanguage::load('es'));
// And we check that Spanish is not there anymore.
$this
->goToContentBulkManagementForm();
$this
->assertNoLingotekRequestTranslationLink('es_MX');
// We re-enable Spanish.
/** @var \Drupal\lingotek\LingotekConfigurationServiceInterface $lingotekConfig */
$lingotekConfig = \Drupal::service('lingotek.configuration');
$language = ConfigurableLanguage::load('es');
$lingotekConfig
->enableLanguage($language);
// And Spanish should be back in the management form.
$this
->goToContentBulkManagementForm();
$this
->assertLingotekRequestTranslationLink('es_MX');
}