Skip to content
Snippets Groups Projects
Commit cb41c8cf authored by Angie Byron's avatar Angie Byron
Browse files

Issue #2142989 by fago, stefan.r: Test for BundleConstraintValidator.

parent e210e085
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -20,7 +20,7 @@ class BundleConstraintValidator extends ConstraintValidator { ...@@ -20,7 +20,7 @@ class BundleConstraintValidator extends ConstraintValidator {
*/ */
public function validate($entity, Constraint $constraint) { public function validate($entity, Constraint $constraint) {
if (!empty($entity) && !in_array($entity->bundle(), $constraint->getBundleOption())) { if (!empty($entity) && !in_array($entity->bundle(), $constraint->getBundleOption())) {
$this->context->addViolation($constraint->message, array('%bundle', implode(', ', $constraint->getBundleOption()))); $this->context->addViolation($constraint->message, array('%bundle' => implode(', ', $constraint->getBundleOption())));
} }
} }
} }
<?php
/**
* @file
* Contains Drupal\system\Tests\Entity\BundleConstraintValidatorTest.
*/
namespace Drupal\system\Tests\Entity;
use Drupal\Core\TypedData\DataDefinition;
use Drupal\simpletest\DrupalUnitTestBase;
use Drupal\system\Tests\TypedData;
/**
* Tests validation constraints for BundleConstraintValidator.
*/
class BundleConstraintValidatorTest extends DrupalUnitTestBase {
/**
* The typed data manager to use.
*
* @var \Drupal\Core\TypedData\TypedDataManager
*/
protected $typedData;
public static $modules = array('entity', 'node', 'field', 'text');
public static function getInfo() {
return array(
'name' => 'Entity bundle constraint',
'description' => 'Tests validation constraints for BundleConstraintValidator.',
'group' => 'Validation',
);
}
public function setUp() {
parent::setUp();
$this->typedData = $this->container->get('typed_data_manager');
}
/**
* Tests bundle constraint validation.
*/
public function testValidation() {
// Test with multiple values.
$this->assertValidation(array('foo', 'bar'));
// Test with a single string value as well.
$this->assertValidation('foo');
}
/**
* Executes the BundleConstraintValidator test for a given bundle.
*
* @param string|array $bundle
* Bundle/bundles to use as constraint option.
*/
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.manager')->getStorageController('node')->create(array('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.manager')->getStorageController('node')->create(array('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.', array('%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.');
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment