TextFormatElementFormTest.php

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

Namespace

Drupal\Tests\filter\Kernel

File

core/modules/filter/tests/src/Kernel/TextFormatElementFormTest.php

View source
<?php

namespace Drupal\Tests\filter\Kernel;

use Drupal\Core\Form\FormInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\filter\Entity\FilterFormat;
use Drupal\KernelTests\KernelTestBase;
use Drupal\user\Entity\Role;
use Drupal\user\Entity\User;

/**
 * Tests PathElement validation and conversion functionality.
 *
 * @group Form
 */
class TextFormatElementFormTest extends KernelTestBase implements FormInterface {
    
    /**
     * User for testing.
     *
     * @var \Drupal\user\UserInterface
     */
    protected $testUser;
    
    /**
     * Modules to enable.
     *
     * @var array
     */
    protected static $modules = [
        'system',
        'user',
        'filter',
        'filter_test',
        'editor',
    ];
    
    /**
     * Sets up the test.
     */
    protected function setUp() : void {
        parent::setUp();
        $this->installEntitySchema('user');
        $this->installSchema('system', [
            'sequences',
        ]);
        $this->installConfig([
            'filter',
            'filter_test',
        ]);
        // Create user 1 so that the user created later in the test has a different
        // user ID.
        // @todo Remove in https://www.drupal.org/node/540008.
        User::create([
            'uid' => 1,
            'name' => 'user1',
        ])->save();
        
        /** @var \Drupal\Core\Render\ElementInfoManager $manager */
        $manager = \Drupal::service('plugin.manager.element_info');
        $manager->clearCachedDefinitions();
        $manager->getDefinitions();
        
        /** @var \Drupal\filter\FilterFormatInterface $filter_test_format */
        $filter_test_format = FilterFormat::load('filter_test');
        $full_html_format = FilterFormat::load('full_html');
        $filtered_html_format = FilterFormat::load('filtered_html');
        
        /** @var \Drupal\user\RoleInterface $role */
        $role = Role::create([
            'id' => 'admin',
            'label' => 'admin',
        ]);
        $role->grantPermission($filter_test_format->getPermissionName());
        $role->grantPermission($full_html_format->getPermissionName());
        $role->grantPermission($filtered_html_format->getPermissionName());
        $role->save();
        $this->testUser = User::create([
            'name' => 'foobar',
            'mail' => 'foobar@example.com',
        ]);
        $this->testUser
            ->addRole($role->id());
        $this->testUser
            ->save();
        \Drupal::service('current_user')->setAccount($this->testUser);
    }
    
    /**
     * {@inheritdoc}
     */
    public function getFormId() {
        return 'test_text_area_element';
    }
    
    /**
     * {@inheritdoc}
     */
    public function buildForm(array $form, FormStateInterface $form_state) {
        // A textformat field.
        $form['textformat'] = [
            '#type' => 'text_format',
            '#required' => TRUE,
            '#title' => 'Text',
            '#base_type' => 'textfield',
            '#format' => NULL,
            '#default_value' => 'test value',
        ];
        return $form;
    }
    
    /**
     * {@inheritdoc}
     */
    public function submitForm(array &$form, FormStateInterface $form_state) {
    }
    
    /**
     * Form validation handler.
     *
     * @param array $form
     *   An associative array containing the structure of the form.
     * @param \Drupal\Core\Form\FormStateInterface $form_state
     *   The current state of the form.
     */
    public function validateForm(array &$form, FormStateInterface $form_state) {
    }
    
    /**
     * Tests that values are returned.
     */
    public function testTextFormatElement() {
        
        /** @var \Drupal\Core\Form\FormBuilder $form_builder */
        $form_builder = $this->container
            ->get('form_builder');
        $form = $form_builder->getForm($this);
        $output = $this->render($form);
        $this->setRawContent($output);
        $this->assertFieldByName('textformat[value]');
        $this->assertRaw('<h4>Full HTML</h4>');
        $this->assertRaw('<h4>Filtered HTML</h4>');
        $this->assertRaw('<h4>Test format</h4>');
        $this->assertNoPattern('|<h4[^>]*></h4>|', 'No empty H4 element found.');
    }
    
    /**
     * {@inheritdoc}
     */
    protected function getUrl() {
        // \Drupal\simpletest\AssertContentTrait needs this for ::assertFieldByName
        // to work.
        return 'Internal rendering';
    }

}

Classes

Title Deprecated Summary
TextFormatElementFormTest Tests PathElement validation and conversion functionality.

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