function EntityAutocompleteTest::testEntityReferenceAutocompletion
Same name in other branches
- 9 core/tests/Drupal/KernelTests/Core/Entity/EntityAutocompleteTest.php \Drupal\KernelTests\Core\Entity\EntityAutocompleteTest::testEntityReferenceAutocompletion()
- 10 core/tests/Drupal/KernelTests/Core/Entity/EntityAutocompleteTest.php \Drupal\KernelTests\Core\Entity\EntityAutocompleteTest::testEntityReferenceAutocompletion()
- 11.x core/tests/Drupal/KernelTests/Core/Entity/EntityAutocompleteTest.php \Drupal\KernelTests\Core\Entity\EntityAutocompleteTest::testEntityReferenceAutocompletion()
Tests autocompletion edge cases with slashes in the names.
File
-
core/
tests/ Drupal/ KernelTests/ Core/ Entity/ EntityAutocompleteTest.php, line 46
Class
- EntityAutocompleteTest
- Tests the autocomplete functionality.
Namespace
Drupal\KernelTests\Core\EntityCode
public function testEntityReferenceAutocompletion() {
// Add an entity with a slash in its name.
$entity_1 = $this->container
->get('entity_type.manager')
->getStorage($this->entityType)
->create([
'name' => '10/16/2011',
]);
$entity_1->save();
// Add another entity that differs after the slash character.
$entity_2 = $this->container
->get('entity_type.manager')
->getStorage($this->entityType)
->create([
'name' => '10/17/2011',
]);
$entity_2->save();
// Add another entity that has both a comma, a slash and markup.
$entity_3 = $this->container
->get('entity_type.manager')
->getStorage($this->entityType)
->create([
'name' => 'label with, and / test',
]);
$entity_3->save();
// Try to autocomplete a entity label that matches both entities.
// We should get both entities in a JSON encoded string.
$input = '10/';
$data = $this->getAutocompleteResult($input);
$this->assertIdentical($data[0]['label'], Html::escape($entity_1->name->value), 'Autocomplete returned the first matching entity');
$this->assertIdentical($data[1]['label'], Html::escape($entity_2->name->value), 'Autocomplete returned the second matching entity');
// Try to autocomplete a entity label that matches the first entity.
// We should only get the first entity in a JSON encoded string.
$input = '10/16';
$data = $this->getAutocompleteResult($input);
$target = [
'value' => $entity_1->name->value . ' (1)',
'label' => Html::escape($entity_1->name->value),
];
$this->assertIdentical(reset($data), $target, 'Autocomplete returns only the expected matching entity.');
// Try to autocomplete a entity label that matches the second entity, and
// the first entity is already typed in the autocomplete (tags) widget.
$input = $entity_1->name->value . ' (1), 10/17';
$data = $this->getAutocompleteResult($input);
$this->assertIdentical($data[0]['label'], Html::escape($entity_2->name->value), 'Autocomplete returned the second matching entity');
// Try to autocomplete a entity label with both a comma, a slash and markup.
$input = '"label with, and /"';
$data = $this->getAutocompleteResult($input);
$n = $entity_3->name->value . ' (3)';
// Entity labels containing commas or quotes must be wrapped in quotes.
$n = Tags::encode($n);
$target = [
'value' => $n,
'label' => Html::escape($entity_3->name->value),
];
$this->assertIdentical(reset($data), $target, 'Autocomplete returns an entity label containing a comma and a slash.');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.