class FormElementMaxlengthTest
Same name and namespace in other branches
- 11.x core/modules/system/tests/src/Kernel/Form/FormElementMaxlengthTest.php \Drupal\Tests\system\Kernel\Form\FormElementMaxlengthTest
- 10 core/modules/system/tests/src/Kernel/Form/FormElementMaxlengthTest.php \Drupal\Tests\system\Kernel\Form\FormElementMaxlengthTest
- 8.9.x core/modules/system/tests/src/Kernel/Form/FormElementMaxlengthTest.php \Drupal\Tests\system\Kernel\Form\FormElementMaxlengthTest
Tests the maxlength HTML attribute on form elements.
@group Form
Hierarchy
- class \Drupal\KernelTests\KernelTestBase extends \Drupal\Core\DependencyInjection\ServiceProviderInterface uses \Drupal\KernelTests\AssertLegacyTrait, \Drupal\KernelTests\AssertContentTrait, \Drupal\Tests\RandomGeneratorTrait, \Drupal\Tests\ConfigTestTrait, \Drupal\Tests\ExtensionListTestTrait, \Drupal\Tests\TestRequirementsTrait, \Drupal\Tests\Traits\PhpUnitWarnings, \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait implements \PHPUnit\Framework\TestCase
- class \Drupal\Tests\system\Kernel\Form\FormElementMaxlengthTest extends \Drupal\Core\Form\FormInterface implements \Drupal\KernelTests\KernelTestBase
Expanded class hierarchy of FormElementMaxlengthTest
File
-
core/
modules/ system/ tests/ src/ Kernel/ Form/ FormElementMaxlengthTest.php, line 16
Namespace
Drupal\Tests\system\Kernel\FormView source
class FormElementMaxlengthTest extends KernelTestBase implements FormInterface {
/**
* {@inheritdoc}
*/
protected static $modules = [
'system',
];
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'form_test_maxlength';
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$form['title'] = [
'#type' => 'textfield',
'#maxlength' => 255,
];
$form['description'] = [
'#type' => 'textarea',
'#maxlength' => 255,
];
$form['submit'] = [
'#type' => 'submit',
'#value' => 'Submit',
];
return $form;
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
}
/**
* {@inheritdoc}
*/
public function validateForm(array &$form, FormStateInterface $form_state) {
}
/**
* Ensures maxlength attribute can be used in compatible elements.
*/
public function testAttributes() {
/** @var \Drupal\Core\Form\FormBuilderInterface $form_builder */
$form_builder = $this->container
->get('form_builder');
$form_state = new FormState();
$elements = $form_builder->buildForm($this, $form_state);
$this->render($elements);
$css_selector_converter = new CssSelectorConverter();
$elements = $this->xpath($css_selector_converter->toXPath('input[name=title][maxlength=255]'));
$this->assertCount(1, $elements, 'Text field has correct maxlength in form.');
$elements = $this->xpath($css_selector_converter->toXPath('textarea[name=description][maxlength=255]'));
$this->assertCount(1, $elements, 'Textarea field has correct maxlength in form.');
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.