function CommentDisplayConfigurableTest::testDisplayConfigurable

Same name and namespace in other branches
  1. 9 core/modules/comment/tests/src/Functional/CommentDisplayConfigurableTest.php \Drupal\Tests\comment\Functional\CommentDisplayConfigurableTest::testDisplayConfigurable()
  2. 11.x core/modules/comment/tests/src/Functional/CommentDisplayConfigurableTest.php \Drupal\Tests\comment\Functional\CommentDisplayConfigurableTest::testDisplayConfigurable()

Sets base fields to configurable display and check settings are respected.

File

core/modules/comment/tests/src/Functional/CommentDisplayConfigurableTest.php, line 41

Class

CommentDisplayConfigurableTest
Tests making comment base fields' displays configurable.

Namespace

Drupal\Tests\comment\Functional

Code

public function testDisplayConfigurable() : void {
  // Add a comment.
  $nid = $this->node
    ->id();
  /** @var \Drupal\comment\CommentInterface $comment */
  $comment = Comment::create([
    'entity_id' => $nid,
    'entity_type' => 'node',
    'field_name' => 'comment',
    'uid' => $this->webUser
      ->id(),
    'status' => CommentInterface::PUBLISHED,
    'subject' => $this->randomMachineName(),
    'language' => LanguageInterface::LANGCODE_NOT_SPECIFIED,
    'comment_body' => [
      LanguageInterface::LANGCODE_NOT_SPECIFIED => [
        $this->randomMachineName(),
      ],
    ],
  ]);
  $comment->save();
  $assert = $this->assertSession();
  // Check the comment author with Drupal default non-configurable display.
  $this->drupalGet('node/' . $nid);
  $assert->elementExists('css', 'p.comment__author span');
  // Enable module to make base fields' displays configurable.
  \Drupal::service('module_installer')->install([
    'comment_display_configurable_test',
  ]);
  // Configure display.
  $display = EntityViewDisplay::load('comment.comment.default');
  $display->setComponent('uid', [
    'type' => 'entity_reference_label',
    'label' => 'above',
    'settings' => [
      'link' => FALSE,
    ],
  ])
    ->save();
  // Recheck the comment author with configurable display.
  $this->drupalGet('node/' . $nid);
  $assert->elementExists('css', '.field--name-uid .field__item');
  // Remove from display.
  $display->removeComponent('uid')
    ->removeComponent('created')
    ->save();
  $this->drupalGet('node/' . $this->node
    ->id());
  $assert->elementNotExists('css', '.field--name-uid .field__item');
}

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