class ContentTranslationEntityBundleUITest in Drupal 10
Same name and namespace in other branches
- 8 core/modules/content_translation/tests/src/Functional/ContentTranslationEntityBundleUITest.php \Drupal\Tests\content_translation\Functional\ContentTranslationEntityBundleUITest
- 9 core/modules/content_translation/tests/src/Functional/ContentTranslationEntityBundleUITest.php \Drupal\Tests\content_translation\Functional\ContentTranslationEntityBundleUITest
Tests the content translation behaviors on entity bundle UI.
@group content_translation
Hierarchy
- class \Drupal\Tests\BrowserTestBase extends \PHPUnit\Framework\TestCase uses \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait, \Drupal\Tests\PhpUnitCompatibilityTrait, FunctionalTestSetupTrait, TestSetupTrait, BlockCreationTrait, ConfigTestTrait, ExtensionListTestTrait, ContentTypeCreationTrait, NodeCreationTrait, RandomGeneratorTrait, TestRequirementsTrait, PhpUnitWarnings, UiHelperTrait, UserCreationTrait, XdebugRequestTrait
- class \Drupal\Tests\content_translation\Functional\ContentTranslationEntityBundleUITest
Expanded class hierarchy of ContentTranslationEntityBundleUITest
File
- core/
modules/ content_translation/ tests/ src/ Functional/ ContentTranslationEntityBundleUITest.php, line 12
Namespace
Drupal\Tests\content_translation\FunctionalView source
class ContentTranslationEntityBundleUITest extends BrowserTestBase {
protected static $modules = [
'language',
'content_translation',
'node',
'comment',
'field_ui',
];
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
protected function setUp() : void {
parent::setUp();
$user = $this
->drupalCreateUser([
'access administration pages',
'administer languages',
'administer content translation',
'administer content types',
]);
$this
->drupalLogin($user);
}
/**
* Tests content types default translation behavior.
*/
public function testContentTypeUI() {
// Create first content type.
$this
->drupalCreateContentType([
'type' => 'article',
]);
// Enable content translation.
$edit = [
'language_configuration[content_translation]' => TRUE,
];
$this
->drupalGet('admin/structure/types/manage/article');
$this
->submitForm($edit, 'Save content type');
// Make sure add page does not inherit translation configuration from first
// content type.
$this
->drupalGet('admin/structure/types/add');
$this
->assertSession()
->checkboxNotChecked('edit-language-configuration-content-translation');
// Create second content type and set content translation.
$edit = [
'name' => 'Page',
'type' => 'page',
'language_configuration[content_translation]' => TRUE,
];
$this
->drupalGet('admin/structure/types/add');
$this
->submitForm($edit, 'Save and manage fields');
// Make sure the settings are saved when creating the content type.
$this
->drupalGet('admin/structure/types/manage/page');
$this
->assertSession()
->checkboxChecked('edit-language-configuration-content-translation');
}
}