protected function EntityValidationTest::checkValidation in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/system/src/Tests/Entity/EntityValidationTest.php \Drupal\system\Tests\Entity\EntityValidationTest::checkValidation()
Executes the validation test set for a defined entity type.
Parameters
string $entity_type: The entity type to run the tests with.
1 call to EntityValidationTest::checkValidation()
- EntityValidationTest::testValidation in core/
modules/ system/ src/ Tests/ Entity/ EntityValidationTest.php - Tests validating test entity types.
File
- core/
modules/ system/ src/ Tests/ Entity/ EntityValidationTest.php, line 119 - Contains \Drupal\system\Tests\Entity\EntityValidationTest.
Class
- EntityValidationTest
- Tests the Entity Validation API.
Namespace
Drupal\system\Tests\EntityCode
protected function checkValidation($entity_type) {
$entity = $this
->createTestEntity($entity_type);
$violations = $entity
->validate();
$this
->assertEqual($violations
->count(), 0, 'Validation passes.');
// Test triggering a fail for each of the constraints specified.
$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 should fail on AllowedValues and Length constraints.
$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,
)));
// Make sure the information provided by a violation is correct.
$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.'));
// Make sure the information provided by a violation is correct.
$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.');
}