View source
<?php
namespace Drupal\system\Tests\Entity;
use Drupal\Core\Entity\Plugin\Validation\Constraint\CompositeConstraintBase;
class EntityValidationTest extends EntityUnitTestBase {
public static $modules = array(
'filter',
'text',
);
protected $entityName;
protected $entityUser;
protected $entityFieldText;
protected function setUp() {
parent::setUp();
module_load_install('entity_test');
entity_test_install();
$this
->installConfig(array(
'system',
'filter',
));
}
protected function createTestEntity($entity_type) {
$this->entityName = $this
->randomMachineName();
$this->entityUser = $this
->createUser();
$entity = entity_create($entity_type);
$entity->user_id->target_id = $this->entityUser
->id();
$entity->name->value = $this->entityName;
if ($entity
->hasField('field_test_text')) {
$this->entityFieldText = $this
->randomMachineName();
$entity->field_test_text->value = $this->entityFieldText;
}
return $entity;
}
public function testValidation() {
\Drupal::service('plugin.cache_clearer');
$plugin_cache_clearer = \Drupal::service('drupal.proxy_original_service.plugin.cache_clearer');
$get_cached_discoveries = function () {
return $this->cachedDiscoveries;
};
$get_cached_discoveries = $get_cached_discoveries
->bindTo($plugin_cache_clearer, $plugin_cache_clearer);
$cached_discoveries = $get_cached_discoveries();
$cached_discovery_classes = [];
foreach ($cached_discoveries as $cached_discovery) {
$cached_discovery_classes[] = get_class($cached_discovery);
}
$this
->assertTrue(in_array('Drupal\\Core\\Validation\\ConstraintManager', $cached_discovery_classes));
foreach (entity_test_entity_types() as $entity_type) {
$this
->checkValidation($entity_type);
}
}
protected function checkValidation($entity_type) {
$entity = $this
->createTestEntity($entity_type);
$violations = $entity
->validate();
$this
->assertEqual($violations
->count(), 0, 'Validation passes.');
$test_entity = clone $entity;
$test_entity->id->value = -1;
$violations = $test_entity
->validate();
$this
->assertEqual($violations
->count(), 1, 'Validation failed.');
$this
->assertEqual($violations[0]
->getMessage(), t('%name: The integer must be larger or equal to %min.', array(
'%name' => 'ID',
'%min' => 0,
)));
$test_entity = clone $entity;
$test_entity->uuid->value = $this
->randomString(129);
$violations = $test_entity
->validate();
$this
->assertEqual($violations
->count(), 1, 'Validation failed.');
$this
->assertEqual($violations[0]
->getMessage(), t('%name: may not be longer than @max characters.', array(
'%name' => 'UUID',
'@max' => 128,
)));
$test_entity = clone $entity;
$langcode_key = $this->entityManager
->getDefinition($entity_type)
->getKey('langcode');
$test_entity->{$langcode_key}->value = $this
->randomString(13);
$violations = $test_entity
->validate();
$this
->assertEqual($violations
->count(), 2, 'Validation failed.');
$this
->assertEqual($violations[0]
->getMessage(), t('This value is too long. It should have %limit characters or less.', array(
'%limit' => '12',
)));
$this
->assertEqual($violations[1]
->getMessage(), t('The value you selected is not a valid choice.'));
$test_entity = clone $entity;
$test_entity->type->value = NULL;
$violations = $test_entity
->validate();
$this
->assertEqual($violations
->count(), 1, 'Validation failed.');
$this
->assertEqual($violations[0]
->getMessage(), t('This value should not be null.'));
$test_entity = clone $entity;
$test_entity->name->value = $this
->randomString(33);
$violations = $test_entity
->validate();
$this
->assertEqual($violations
->count(), 1, 'Validation failed.');
$this
->assertEqual($violations[0]
->getMessage(), t('%name: may not be longer than @max characters.', array(
'%name' => 'Name',
'@max' => 32,
)));
$violation = $violations[0];
$this
->assertEqual($violation
->getRoot()
->getValue(), $test_entity, 'Violation root is entity.');
$this
->assertEqual($violation
->getPropertyPath(), 'name.0.value', 'Violation property path is correct.');
$this
->assertEqual($violation
->getInvalidValue(), $test_entity->name->value, 'Violation contains invalid value.');
$test_entity = clone $entity;
$test_entity
->set('user_id', 9999);
$violations = $test_entity
->validate();
$this
->assertEqual($violations
->count(), 1, 'Validation failed.');
$this
->assertEqual($violations[0]
->getMessage(), t('The referenced entity (%type: %id) does not exist.', array(
'%type' => 'user',
'%id' => 9999,
)));
$test_entity = clone $entity;
$test_entity->field_test_text->format = $this
->randomString(33);
$violations = $test_entity
->validate();
$this
->assertEqual($violations
->count(), 1, 'Validation failed.');
$this
->assertEqual($violations[0]
->getMessage(), t('The value you selected is not a valid choice.'));
$violation = $violations[0];
$this
->assertEqual($violation
->getRoot()
->getValue(), $test_entity, 'Violation root is entity.');
$this
->assertEqual($violation
->getPropertyPath(), 'field_test_text.0.format', 'Violation property path is correct.');
$this
->assertEqual($violation
->getInvalidValue(), $test_entity->field_test_text->format, 'Violation contains invalid value.');
}
public function testCompositeConstraintValidation() {
$entity = $this
->createTestEntity('entity_test_composite_constraint');
$violations = $entity
->validate();
$this
->assertEqual($violations
->count(), 0);
$entity->name->value = 'test';
$entity->type->value = 'test2';
$violations = $entity
->validate();
$this
->assertEqual($violations
->count(), 1);
$constraint = $violations[0]
->getConstraint();
$this
->assertTrue($constraint instanceof CompositeConstraintBase, 'Constraint is composite constraint.');
$this
->assertEqual('type', $violations[0]
->getPropertyPath());
$this
->assertEqual($constraint
->coversFields(), [
'name',
'type',
], 'Information about covered fields can be retrieved.');
}
}