protected function DisplayFeedTranslationTest::setUp in Drupal 9
Same name and namespace in other branches
- 8 core/modules/views/tests/src/Functional/Plugin/DisplayFeedTranslationTest.php \Drupal\Tests\views\Functional\Plugin\DisplayFeedTranslationTest::setUp()
Overrides ViewTestBase::setUp
File
- core/
modules/ views/ tests/ src/ Functional/ Plugin/ DisplayFeedTranslationTest.php, line 51
Class
- DisplayFeedTranslationTest
- Tests the feed display plugin with translated content.
Namespace
Drupal\Tests\views\Functional\PluginCode
protected function setUp($import_test_views = TRUE) : void {
parent::setUp($import_test_views);
$this
->enableViewsTestModule();
$this->langcodes = [
'es',
'pt-br',
];
foreach ($this->langcodes as $langcode) {
ConfigurableLanguage::createFromLangcode($langcode)
->save();
}
$admin_user = $this
->drupalCreateUser([
'administer site configuration',
'administer nodes',
'administer content translation',
'translate any entity',
'create content translations',
'administer languages',
]);
$this
->drupalLogin($admin_user);
$this
->drupalCreateContentType([
'type' => 'page',
]);
// Enable translation for page.
$edit = [
'entity_types[node]' => TRUE,
'settings[node][page][translatable]' => TRUE,
'settings[node][page][settings][language][language_alterable]' => TRUE,
];
$this
->drupalGet('admin/config/regional/content-language');
$this
->submitForm($edit, 'Save configuration');
// Rebuild the container so that the new languages are picked up by services
// that hold a list of languages.
$this
->rebuildContainer();
}