FormValidationMessageOrderTest.php

Same filename and directory in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/Form/FormValidationMessageOrderTest.php
  2. 8.9.x core/tests/Drupal/KernelTests/Core/Form/FormValidationMessageOrderTest.php
  3. 10 core/tests/Drupal/KernelTests/Core/Form/FormValidationMessageOrderTest.php

Namespace

Drupal\KernelTests\Core\Form

File

core/tests/Drupal/KernelTests/Core/Form/FormValidationMessageOrderTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\KernelTests\Core\Form;

use Drupal\Core\Form\FormInterface;
use Drupal\Core\Form\FormState;
use Drupal\Core\Form\FormStateInterface;
use Drupal\KernelTests\KernelTestBase;

/**
 * Tests form validation messages are displayed in the same order as the fields.
 *
 * @group Form
 */
class FormValidationMessageOrderTest extends KernelTestBase implements FormInterface {
    
    /**
     * {@inheritdoc}
     */
    public function getFormId() {
        return 'form_validation_error_message_order_test';
    }
    
    /**
     * {@inheritdoc}
     */
    public function buildForm(array $form, FormStateInterface $form_state) {
        // Prepare fields with weights specified.
        $form['one'] = [
            '#type' => 'textfield',
            '#title' => 'One',
            '#required' => TRUE,
            '#weight' => 40,
        ];
        $form['two'] = [
            '#type' => 'textfield',
            '#title' => 'Two',
            '#required' => TRUE,
            '#weight' => 30,
        ];
        $form['three'] = [
            '#type' => 'textfield',
            '#title' => 'Three',
            '#required' => TRUE,
            '#weight' => 10,
        ];
        $form['four'] = [
            '#type' => 'textfield',
            '#title' => 'Four',
            '#required' => TRUE,
            '#weight' => 20,
        ];
        $form['actions'] = [
            '#type' => 'actions',
            'submit' => [
                '#type' => 'submit',
                '#value' => 'Submit',
            ],
        ];
        return $form;
    }
    
    /**
     * {@inheritdoc}
     */
    public function validateForm(array &$form, FormStateInterface $form_state) {
    }
    
    /**
     * {@inheritdoc}
     */
    public function submitForm(array &$form, FormStateInterface $form_state) {
    }
    
    /**
     * Tests that fields validation messages are sorted in the fields order.
     */
    public function testValidationErrorMessagesSortedWithWeight() : void {
        $form_state = new FormState();
        $form_builder = $this->container
            ->get('form_builder');
        $form_builder->submitForm($this, $form_state);
        $messages = \Drupal::messenger()->all();
        \Drupal::messenger()->deleteAll();
        $this->assertTrue(isset($messages['error']));
        $error_messages = $messages['error'];
        $this->assertEquals('Three field is required.', $error_messages[0]);
        $this->assertEquals('Four field is required.', $error_messages[1]);
        $this->assertEquals('Two field is required.', $error_messages[2]);
        $this->assertEquals('One field is required.', $error_messages[3]);
    }

}

Classes

Title Deprecated Summary
FormValidationMessageOrderTest Tests form validation messages are displayed in the same order as the fields.

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