TextFormatterTest.php

Same filename and directory in other branches
  1. 8.9.x core/modules/text/tests/src/Kernel/TextFormatterTest.php
  2. 10 core/modules/text/tests/src/Kernel/TextFormatterTest.php
  3. 11.x core/modules/text/tests/src/Kernel/TextFormatterTest.php

Namespace

Drupal\Tests\text\Kernel

File

core/modules/text/tests/src/Kernel/TextFormatterTest.php

View source
<?php

namespace Drupal\Tests\text\Kernel;

use Drupal\Component\Render\FormattableMarkup;
use Drupal\field\Entity\FieldConfig;
use Drupal\filter\Entity\FilterFormat;
use Drupal\KernelTests\Core\Entity\EntityKernelTestBase;
use Drupal\field\Entity\FieldStorageConfig;

/**
 * Tests the text formatters functionality.
 *
 * @group text
 */
class TextFormatterTest extends EntityKernelTestBase {
    
    /**
     * The entity type used in this test.
     *
     * @var string
     */
    protected $entityType = 'entity_test';
    
    /**
     * The bundle used in this test.
     *
     * @var string
     */
    protected $bundle = 'entity_test';
    
    /**
     * Modules to enable.
     *
     * @var array
     */
    protected static $modules = [
        'text',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() : void {
        parent::setUp();
        FilterFormat::create([
            'format' => 'my_text_format',
            'name' => 'My text format',
            'filters' => [
                'filter_autop' => [
                    'module' => 'filter',
                    'status' => TRUE,
                ],
            ],
        ])->save();
        FieldStorageConfig::create([
            'field_name' => 'formatted_text',
            'entity_type' => $this->entityType,
            'type' => 'text',
            'settings' => [],
        ])
            ->save();
        FieldConfig::create([
            'entity_type' => $this->entityType,
            'bundle' => $this->bundle,
            'field_name' => 'formatted_text',
            'label' => 'Filtered text',
        ])
            ->save();
    }
    
    /**
     * Tests all text field formatters.
     */
    public function testFormatters() {
        $formatters = [
            'text_default',
            'text_trimmed',
            'text_summary_or_trimmed',
        ];
        // Create the entity to be referenced.
        $entity = $this->container
            ->get('entity_type.manager')
            ->getStorage($this->entityType)
            ->create([
            'name' => $this->randomMachineName(),
        ]);
        $entity->formatted_text = [
            'value' => 'Hello, world!',
            'format' => 'my_text_format',
        ];
        $entity->save();
        foreach ($formatters as $formatter) {
            // Verify the text field formatter's render array.
            $build = $entity->get('formatted_text')
                ->view([
                'type' => $formatter,
            ]);
            \Drupal::service('renderer')->renderRoot($build[0]);
            $this->assertEquals("<p>Hello, world!</p>\n", $build[0]['#markup']);
            $this->assertEquals(FilterFormat::load('my_text_format')->getCacheTags(), $build[0]['#cache']['tags'], new FormattableMarkup('The @formatter formatter has the expected cache tags when formatting a formatted text field.', [
                '@formatter' => $formatter,
            ]));
        }
    }

}

Classes

Title Deprecated Summary
TextFormatterTest Tests the text formatters functionality.

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