protected function LingotekNodeWorkbenchModerationTranslationTest::setUp in Lingotek Translation 3.7.x
Same name and namespace in other branches
- 8.2 tests/src/Functional/LingotekNodeWorkbenchModerationTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeWorkbenchModerationTranslationTest::setUp()
- 4.0.x tests/src/Functional/LingotekNodeWorkbenchModerationTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeWorkbenchModerationTranslationTest::setUp()
- 3.1.x tests/src/Functional/LingotekNodeWorkbenchModerationTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeWorkbenchModerationTranslationTest::setUp()
- 3.2.x tests/src/Functional/LingotekNodeWorkbenchModerationTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeWorkbenchModerationTranslationTest::setUp()
- 3.3.x tests/src/Functional/LingotekNodeWorkbenchModerationTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeWorkbenchModerationTranslationTest::setUp()
- 3.4.x tests/src/Functional/LingotekNodeWorkbenchModerationTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeWorkbenchModerationTranslationTest::setUp()
- 3.5.x tests/src/Functional/LingotekNodeWorkbenchModerationTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeWorkbenchModerationTranslationTest::setUp()
- 3.6.x tests/src/Functional/LingotekNodeWorkbenchModerationTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeWorkbenchModerationTranslationTest::setUp()
- 3.8.x tests/src/Functional/LingotekNodeWorkbenchModerationTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeWorkbenchModerationTranslationTest::setUp()
Overrides LingotekTestBase::setUp
File
- tests/
src/ Functional/ LingotekNodeWorkbenchModerationTranslationTest.php, line 24
Class
- LingotekNodeWorkbenchModerationTranslationTest
- Tests translating a node with workbench moderation enabled.
Namespace
Drupal\Tests\lingotek\FunctionalCode
protected function setUp() : void {
parent::setUp();
// Place the actions and title block.
$this
->drupalPlaceBlock('page_title_block', [
'region' => 'content',
'weight' => -5,
]);
$this
->drupalPlaceBlock('local_tasks_block', [
'region' => 'content',
'weight' => -10,
]);
// Create Article node types.
$this
->drupalCreateContentType([
'type' => 'article',
'name' => 'Article',
]);
$this
->drupalCreateContentType([
'type' => 'page',
'name' => 'Page',
'new_revision' => FALSE,
]);
// Add a language.
ConfigurableLanguage::createFromLangcode('es')
->setThirdPartySetting('lingotek', 'locale', 'es_MX')
->save();
// Enable translation for the current entity type and ensure the change is
// picked up.
ContentLanguageSettings::loadByEntityTypeBundle('node', 'article')
->setLanguageAlterable(TRUE)
->save();
\Drupal::service('content_translation.manager')
->setEnabled('node', 'article', TRUE);
ContentLanguageSettings::loadByEntityTypeBundle('node', 'page')
->setLanguageAlterable(TRUE)
->save();
\Drupal::service('content_translation.manager')
->setEnabled('node', 'page', TRUE);
drupal_static_reset();
\Drupal::entityTypeManager()
->clearCachedDefinitions();
$this
->applyEntityUpdates();
// Rebuild the container so that the new languages are picked up by services
// that hold a list of languages.
$this
->rebuildContainer();
// Enable content moderation for articles.
// Enable workbench moderation.
$this
->enableModerationThroughUI('article', [
'draft',
'needs_review',
'published',
], 'draft');
$this
->saveLingotekContentTranslationSettings([
'node' => [
'article' => [
'profiles' => 'automatic',
'fields' => [
'title' => 1,
'body' => 1,
],
'moderation' => [
'upload_status' => 'draft',
'download_transition' => 'draft_needs_review',
],
],
'page' => [
'profiles' => 'automatic',
'fields' => [
'title' => 1,
'body' => 1,
],
],
],
]);
}