You are here

public function SummaryLengthTest::testSummaryLength in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/node/tests/src/Kernel/SummaryLengthTest.php \Drupal\Tests\node\Kernel\SummaryLengthTest::testSummaryLength()

Tests the node summary length functionality.

File

core/modules/node/tests/src/Kernel/SummaryLengthTest.php, line 79

Class

SummaryLengthTest
Tests summary length.

Namespace

Drupal\Tests\node\Kernel

Code

public function testSummaryLength() {

  /** @var \Drupal\Core\Render\RendererInterface $renderer */
  $renderer = $this->container
    ->get('renderer');

  // Create a node to view.
  $settings = [
    // cSpell:disable-next-line
    'body' => [
      [
        'value' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam vitae arcu at leo cursus laoreet. Curabitur dui tortor, adipiscing malesuada tempor in, bibendum ac diam. Cras non tellus a libero pellentesque condimentum. What is a Drupalism? Suspendisse ac lacus libero. Ut non est vel nisl faucibus interdum nec sed leo. Pellentesque sem risus, vulputate eu semper eget, auctor in libero. Ut fermentum est vitae metus convallis scelerisque. Phasellus pellentesque rhoncus tellus, eu dignissim purus posuere id. Quisque eu fringilla ligula. Morbi ullamcorper, lorem et mattis egestas, tortor neque pretium velit, eget eleifend odio turpis eu purus. Donec vitae metus quis leo pretium tincidunt a pulvinar sem. Morbi adipiscing laoreet mauris vel placerat. Nullam elementum, nisl sit amet scelerisque malesuada, dolor nunc hendrerit quam, eu ultrices erat est in orci. Curabitur feugiat egestas nisl sed accumsan.',
      ],
    ],
    'promote' => 1,
  ];
  $node = $this
    ->drupalCreateNode($settings);
  $this
    ->assertNotEmpty(Node::load($node
    ->id()), 'Node created.');

  // Render the node as a teaser.
  $content = $this
    ->drupalBuildEntityView($node, 'teaser');
  $this
    ->assertLessThan(600, strlen($content['body'][0]['#markup']));
  $this
    ->setRawContent($renderer
    ->renderRoot($content));

  // The string 'What is a Drupalism?' is between the 200th and 600th
  // characters of the node body, so it should be included if the summary is
  // 600 characters long.
  $expected = 'What is a Drupalism?';
  $this
    ->assertRaw($expected);

  // Change the teaser length for "Basic page" content type.
  $display = \Drupal::service('entity_display.repository')
    ->getViewDisplay('node', $node
    ->getType(), 'teaser');
  $display_options = $display
    ->getComponent('body');
  $display_options['settings']['trim_length'] = 200;
  $display
    ->setComponent('body', $display_options)
    ->save();

  // Render the node as a teaser again and check that the summary is now only
  // 200 characters in length and so does not include 'What is a Drupalism?'.
  $content = $this
    ->drupalBuildEntityView($node, 'teaser');
  $this
    ->assertLessThan(200, strlen($content['body'][0]['#markup']));
  $this
    ->setRawContent($renderer
    ->renderRoot($content));
  $this
    ->assertText($node
    ->label());
  $this
    ->assertNoRaw($expected);
}