You are here

public function TermValidationTest::testValidation in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/taxonomy/src/Tests/TermValidationTest.php \Drupal\taxonomy\Tests\TermValidationTest::testValidation()

Tests the term validation constraints.

File

core/modules/taxonomy/src/Tests/TermValidationTest.php, line 37
Contains \Drupal\taxonomy\Tests\TermValidationTest.

Class

TermValidationTest
Tests term validation constraints.

Namespace

Drupal\taxonomy\Tests

Code

public function testValidation() {
  $this->entityManager
    ->getStorage('taxonomy_vocabulary')
    ->create(array(
    'vid' => 'tags',
    'name' => 'Tags',
  ))
    ->save();
  $term = $this->entityManager
    ->getStorage('taxonomy_term')
    ->create(array(
    'name' => 'test',
    'vid' => 'tags',
  ));
  $violations = $term
    ->validate();
  $this
    ->assertEqual(count($violations), 0, 'No violations when validating a default term.');
  $term
    ->set('name', $this
    ->randomString(256));
  $violations = $term
    ->validate();
  $this
    ->assertEqual(count($violations), 1, 'Violation found when name is too long.');
  $this
    ->assertEqual($violations[0]
    ->getPropertyPath(), 'name.0.value');
  $field_label = $term
    ->get('name')
    ->getFieldDefinition()
    ->getLabel();
  $this
    ->assertEqual($violations[0]
    ->getMessage(), t('%name: may not be longer than @max characters.', array(
    '%name' => $field_label,
    '@max' => 255,
  )));
  $term
    ->set('name', NULL);
  $violations = $term
    ->validate();
  $this
    ->assertEqual(count($violations), 1, 'Violation found when name is NULL.');
  $this
    ->assertEqual($violations[0]
    ->getPropertyPath(), 'name');
  $this
    ->assertEqual($violations[0]
    ->getMessage(), t('This value should not be null.'));
  $term
    ->set('name', 'test');
  $term
    ->set('parent', 9999);
  $violations = $term
    ->validate();
  $this
    ->assertEqual(count($violations), 1, 'Violation found when term parent is invalid.');
  $this
    ->assertEqual($violations[0]
    ->getMessage(), format_string('The referenced entity (%type: %id) does not exist.', array(
    '%type' => 'taxonomy_term',
    '%id' => 9999,
  )));
  $term
    ->set('parent', 0);
  $violations = $term
    ->validate();
  $this
    ->assertEqual(count($violations), 0, 'No violations for parent id 0.');
}