
| Current Path : /var/www/html/strat/web/core/modules/taxonomy/tests/src/Kernel/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/strat/web/core/modules/taxonomy/tests/src/Kernel/TermValidationTest.php |
<?php
declare(strict_types=1);
namespace Drupal\Tests\taxonomy\Kernel;
use Drupal\Component\Render\FormattableMarkup;
use Drupal\KernelTests\Core\Entity\EntityKernelTestBase;
/**
* Tests term validation constraints.
*
* @group taxonomy
*/
class TermValidationTest extends EntityKernelTestBase {
/**
* {@inheritdoc}
*/
protected static $modules = ['taxonomy'];
/**
* {@inheritdoc}
*/
protected function setUp(): void {
parent::setUp();
$this->installEntitySchema('taxonomy_term');
}
/**
* Tests the term validation constraints.
*/
public function testValidation(): void {
$this->entityTypeManager->getStorage('taxonomy_vocabulary')->create([
'vid' => 'tags',
'name' => 'Tags',
])->save();
$term = $this->entityTypeManager->getStorage('taxonomy_term')->create([
'name' => 'test',
'vid' => 'tags',
]);
$violations = $term->validate();
$this->assertCount(0, $violations, 'No violations when validating a default term.');
$term->set('name', $this->randomString(256));
$violations = $term->validate();
$this->assertCount(1, $violations, 'Violation found when name is too long.');
$this->assertEquals('name.0.value', $violations[0]->getPropertyPath());
$field_label = $term->get('name')->getFieldDefinition()->getLabel();
$this->assertEquals(sprintf('%s: may not be longer than 255 characters.', $field_label), $violations[0]->getMessage());
$term->set('name', NULL);
$violations = $term->validate();
$this->assertCount(1, $violations, 'Violation found when name is NULL.');
$this->assertEquals('name', $violations[0]->getPropertyPath());
$this->assertEquals('This value should not be null.', $violations[0]->getMessage());
$term->set('name', 'test');
$term->set('parent', 9999);
$violations = $term->validate();
$this->assertCount(1, $violations, 'Violation found when term parent is invalid.');
$this->assertEquals(new FormattableMarkup('The referenced entity (%type: %id) does not exist.', ['%type' => 'taxonomy_term', '%id' => 9999]), $violations[0]->getMessage());
$term->set('parent', 0);
$violations = $term->validate();
$this->assertCount(0, $violations, 'No violations for parent id 0.');
}
}