Version 1
[yaffs-website] / web / core / tests / Drupal / KernelTests / Core / Entity / ValidReferenceConstraintValidatorTest.php
diff --git a/web/core/tests/Drupal/KernelTests/Core/Entity/ValidReferenceConstraintValidatorTest.php b/web/core/tests/Drupal/KernelTests/Core/Entity/ValidReferenceConstraintValidatorTest.php
new file mode 100644 (file)
index 0000000..a365ea5
--- /dev/null
@@ -0,0 +1,69 @@
+<?php
+
+namespace Drupal\KernelTests\Core\Entity;
+
+use Drupal\Core\Field\BaseFieldDefinition;
+
+/**
+ * Tests validation constraints for ValidReferenceConstraintValidator.
+ *
+ * @group Validation
+ */
+class ValidReferenceConstraintValidatorTest extends EntityKernelTestBase {
+
+  /**
+   * The typed data manager to use.
+   *
+   * @var \Drupal\Core\TypedData\TypedDataManager
+   */
+  protected $typedData;
+
+  /**
+   * {@inheritdoc}
+   */
+  public static $modules = ['field', 'user'];
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp() {
+    parent::setUp();
+    $this->installSchema('user', ['users_data']);
+    $this->typedData = $this->container->get('typed_data_manager');
+  }
+
+  /**
+   * Tests the ValidReferenceConstraintValidator.
+   */
+  public function testValidation() {
+    // Create a test entity to be referenced.
+    $entity = $this->createUser();
+    // By default entity references already have the ValidReference constraint.
+    $definition = BaseFieldDefinition::create('entity_reference')
+      ->setSettings(['target_type' => 'user']);
+
+    $typed_data = $this->typedData->create($definition, ['target_id' => $entity->id()]);
+    $violations = $typed_data->validate();
+    $this->assertFalse($violations->count(), 'Validation passed for correct value.');
+
+    // NULL is also considered a valid reference.
+    $typed_data = $this->typedData->create($definition, ['target_id' => NULL]);
+    $violations = $typed_data->validate();
+    $this->assertFalse($violations->count(), 'Validation passed for correct value.');
+
+    $typed_data = $this->typedData->create($definition, ['target_id' => $entity->id()]);
+    // Delete the referenced entity.
+    $entity->delete();
+    $violations = $typed_data->validate();
+    $this->assertTrue($violations->count(), 'Validation failed for incorrect value.');
+
+    // Make sure the information provided by a violation is correct.
+    $violation = $violations[0];
+    $this->assertEqual($violation->getMessage(), t('The referenced entity (%type: %id) does not exist.', [
+      '%type' => 'user',
+      '%id' => $entity->id(),
+    ]), 'The message for invalid value is correct.');
+    $this->assertEqual($violation->getRoot(), $typed_data, 'Violation root is correct.');
+  }
+
+}