FormElementLabelTest.php

Same filename and directory in other branches
  1. 9 core/modules/system/tests/src/Kernel/Form/FormElementLabelTest.php
  2. 10 core/modules/system/tests/src/Kernel/Form/FormElementLabelTest.php
  3. 11.x core/modules/system/tests/src/Kernel/Form/FormElementLabelTest.php

Namespace

Drupal\Tests\system\Kernel\Form

File

core/modules/system/tests/src/Kernel/Form/FormElementLabelTest.php

View source
<?php

namespace Drupal\Tests\system\Kernel\Form;

use Drupal\KernelTests\KernelTestBase;
use Symfony\Component\CssSelector\CssSelectorConverter;

/**
 * Tests for form_element_label theme hook.
 *
 * @group Form
 */
class FormElementLabelTest extends KernelTestBase {
    
    /**
     * {@inheritdoc}
     */
    public static $modules = [
        'system',
    ];
    
    /**
     * Ensures that attributes can be placed for form element label.
     */
    public function testAttributes() {
        $render_array = [
            '#type' => 'label',
            '#attributes' => [
                'class' => [
                    'kitten',
                ],
            ],
            '#title' => 'Kittens',
            '#title_display' => 'above',
        ];
        $css_selector_converter = new CssSelectorConverter();
        $this->render($render_array);
        $elements = $this->xpath($css_selector_converter->toXPath('.kitten'));
        $this->assertCount(1, $elements);
        // Add label attributes to a form element.
        $render_array = [
            '#type' => 'textfield',
            '#label_attributes' => [
                'class' => [
                    'meow',
                ],
            ],
            '#title' => 'Kitten sounds',
        ];
        $this->render($render_array);
        $elements = $this->xpath($css_selector_converter->toXPath('label.meow'));
        $this->assertCount(1, $elements);
    }

}

Classes

Title Deprecated Summary
FormElementLabelTest Tests for form_element_label theme hook.

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