You are here

public function ContentTranslationStandardFieldsTest::testFieldTranslatableArticle in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/content_translation/tests/src/Functional/ContentTranslationStandardFieldsTest.php \Drupal\Tests\content_translation\Functional\ContentTranslationStandardFieldsTest::testFieldTranslatableArticle()
  2. 9 core/modules/content_translation/tests/src/Functional/ContentTranslationStandardFieldsTest.php \Drupal\Tests\content_translation\Functional\ContentTranslationStandardFieldsTest::testFieldTranslatableArticle()

Tests that translatable fields are being rendered.

File

core/modules/content_translation/tests/src/Functional/ContentTranslationStandardFieldsTest.php, line 55

Class

ContentTranslationStandardFieldsTest
Tests the Content translation settings using the standard profile.

Namespace

Drupal\Tests\content_translation\Functional

Code

public function testFieldTranslatableArticle() {
  $path = 'admin/config/regional/content-language';
  $this
    ->drupalGet($path);

  // Check content block fields.
  $this
    ->assertSession()
    ->checkboxChecked('edit-settings-block-content-basic-fields-body');

  // Check comment fields.
  $this
    ->assertSession()
    ->checkboxChecked('edit-settings-comment-comment-fields-comment-body');

  // Check node fields.
  $this
    ->assertSession()
    ->checkboxChecked('edit-settings-node-article-fields-comment');
  $this
    ->assertSession()
    ->checkboxChecked('edit-settings-node-article-fields-field-image');
  $this
    ->assertSession()
    ->checkboxChecked('edit-settings-node-article-fields-field-tags');

  // Check user fields.
  $this
    ->assertSession()
    ->checkboxChecked('edit-settings-user-user-fields-user-picture');
}