You are here

protected function BundleConstraintValidatorTest::assertValidation in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/Entity/BundleConstraintValidatorTest.php \Drupal\KernelTests\Core\Entity\BundleConstraintValidatorTest::assertValidation()

Executes the BundleConstraintValidator test for a given bundle.

Parameters

string|array $bundle: Bundle/bundles to use as constraint option.

1 call to BundleConstraintValidatorTest::assertValidation()
BundleConstraintValidatorTest::testValidation in core/tests/Drupal/KernelTests/Core/Entity/BundleConstraintValidatorTest.php
Tests bundle constraint validation.

File

core/tests/Drupal/KernelTests/Core/Entity/BundleConstraintValidatorTest.php, line 46

Class

BundleConstraintValidatorTest
Tests validation constraints for BundleConstraintValidator.

Namespace

Drupal\KernelTests\Core\Entity

Code

protected function assertValidation($bundle) {

  // Create a typed data definition with a Bundle constraint.
  $definition = DataDefinition::create('entity_reference')
    ->addConstraint('Bundle', $bundle);

  // Test the validation.
  $node = $this->container
    ->get('entity_type.manager')
    ->getStorage('node')
    ->create([
    'type' => 'foo',
  ]);
  $typed_data = $this->typedData
    ->create($definition, $node);
  $violations = $typed_data
    ->validate();
  $this
    ->assertEqual($violations
    ->count(), 0, 'Validation passed for correct value.');

  // Test the validation when an invalid value is passed.
  $page_node = $this->container
    ->get('entity_type.manager')
    ->getStorage('node')
    ->create([
    'type' => 'baz',
  ]);
  $typed_data = $this->typedData
    ->create($definition, $page_node);
  $violations = $typed_data
    ->validate();
  $this
    ->assertEqual($violations
    ->count(), 1, 'Validation failed for incorrect value.');

  // Make sure the information provided by a violation is correct.
  $violation = $violations[0];
  $this
    ->assertEqual($violation
    ->getMessage(), t('The entity must be of bundle %bundle.', [
    '%bundle' => implode(', ', (array) $bundle),
  ]), 'The message for invalid value is correct.');
  $this
    ->assertEqual($violation
    ->getRoot(), $typed_data, 'Violation root is correct.');
  $this
    ->assertEqual($violation
    ->getInvalidValue(), $page_node, 'The invalid value is set correctly in the violation.');
}