function ContentTranslationStandardFieldsTest::testFieldTranslatableArticle

Same name and namespace in other branches
  1. 8.9.x core/modules/content_translation/tests/src/Functional/ContentTranslationStandardFieldsTest.php \Drupal\Tests\content_translation\Functional\ContentTranslationStandardFieldsTest::testFieldTranslatableArticle()
  2. 10 core/modules/content_translation/tests/src/Functional/ContentTranslationStandardFieldsTest.php \Drupal\Tests\content_translation\Functional\ContentTranslationStandardFieldsTest::testFieldTranslatableArticle()
  3. 11.x 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');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.