View source
<?php
namespace Drupal\Tests\taxonomy\Functional;
use Drupal\Component\Utility\Tags;
use Drupal\Core\Field\FieldStorageDefinitionInterface;
use Drupal\field\Entity\FieldConfig;
use Drupal\taxonomy\Entity\Term;
use Drupal\Tests\system\Functional\Menu\AssertBreadcrumbTrait;
class TermTest extends TaxonomyTestBase {
use AssertBreadcrumbTrait;
protected $vocabulary;
protected $field;
protected static $modules = [
'block',
];
protected $defaultTheme = 'stark';
protected function setUp() : void {
parent::setUp();
$this
->drupalPlaceBlock('local_actions_block');
$this
->drupalPlaceBlock('local_tasks_block');
$this
->drupalPlaceBlock('page_title_block');
$this
->drupalLogin($this
->drupalCreateUser([
'administer taxonomy',
'bypass node access',
]));
$this->vocabulary = $this
->createVocabulary();
$field_name = 'taxonomy_' . $this->vocabulary
->id();
$handler_settings = [
'target_bundles' => [
$this->vocabulary
->id() => $this->vocabulary
->id(),
],
'auto_create' => TRUE,
];
$this
->createEntityReferenceField('node', 'article', $field_name, NULL, 'taxonomy_term', 'default', $handler_settings, FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED);
$this->field = FieldConfig::loadByName('node', 'article', $field_name);
$display_repository = \Drupal::service('entity_display.repository');
$display_repository
->getFormDisplay('node', 'article')
->setComponent($field_name, [
'type' => 'options_select',
])
->save();
$display_repository
->getViewDisplay('node', 'article')
->setComponent($field_name, [
'type' => 'entity_reference_label',
])
->save();
}
public function testParentHandlerSettings() {
$vocabulary_fields = \Drupal::service('entity_field.manager')
->getFieldDefinitions('taxonomy_term', $this->vocabulary
->id());
$parent_target_bundles = $vocabulary_fields['parent']
->getSetting('handler_settings')['target_bundles'];
$this
->assertSame([
$this->vocabulary
->id() => $this->vocabulary
->id(),
], $parent_target_bundles);
}
public function testTaxonomyTermHierarchy() {
$term1 = $this
->createTerm($this->vocabulary);
$term2 = $this
->createTerm($this->vocabulary);
$taxonomy_storage = $this->container
->get('entity_type.manager')
->getStorage('taxonomy_term');
$this
->assertEquals(0, $taxonomy_storage
->getVocabularyHierarchyType($this->vocabulary
->id()), 'Vocabulary is flat.');
$edit = [];
$edit['parent[]'] = [
$term1
->id(),
];
$this
->drupalGet('taxonomy/term/' . $term2
->id() . '/edit');
$this
->submitForm($edit, 'Save');
$children = $taxonomy_storage
->loadChildren($term1
->id());
$parents = $taxonomy_storage
->loadParents($term2
->id());
$this
->assertTrue(isset($children[$term2
->id()]), 'Child found correctly.');
$this
->assertTrue(isset($parents[$term1
->id()]), 'Parent found correctly.');
$term = Term::load($term2
->id());
$term
->save();
$parents = $taxonomy_storage
->loadParents($term2
->id());
$this
->assertTrue(isset($parents[$term1
->id()]), 'Parent found correctly.');
$term3 = $this
->createTerm($this->vocabulary);
$term2->parent = [
$term1
->id(),
$term3
->id(),
];
$term2
->save();
$parents = $taxonomy_storage
->loadParents($term2
->id());
$this
->assertArrayHasKey($term1
->id(), $parents);
$this
->assertArrayHasKey($term3
->id(), $parents);
}
public function testTaxonomyTermChildTerms() {
$this
->config('taxonomy.settings')
->set('terms_per_page_admin', '9')
->save();
$term1 = $this
->createTerm($this->vocabulary);
$terms_array = [];
$taxonomy_storage = $this->container
->get('entity_type.manager')
->getStorage('taxonomy_term');
for ($x = 1; $x <= 40; $x++) {
$edit = [];
$edit['weight'] = $x;
if ($x <= 12) {
$edit['parent'] = $term1
->id();
}
$term = $this
->createTerm($this->vocabulary, $edit);
$children = $taxonomy_storage
->loadChildren($term1
->id());
$parents = $taxonomy_storage
->loadParents($term
->id());
$terms_array[$x] = Term::load($term
->id());
}
$this
->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary
->id() . '/overview');
$this
->assertSession()
->pageTextContains($term1
->getName());
for ($x = 1; $x <= 13; $x++) {
$this
->assertSession()
->pageTextContains($terms_array[$x]
->getName());
}
$this
->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary
->id() . '/overview', [
'query' => [
'page' => 1,
],
]);
$this
->assertSession()
->pageTextContains($term1
->getName());
for ($x = 1; $x <= 18; $x++) {
$this
->assertSession()
->pageTextContains($terms_array[$x]
->getName());
}
$this
->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary
->id() . '/overview', [
'query' => [
'page' => 2,
],
]);
$this
->assertSession()
->pageTextNotContains($term1
->getName());
for ($x = 1; $x <= 17; $x++) {
$this
->assertSession()
->pageTextNotContains($terms_array[$x]
->getName());
}
for ($x = 18; $x <= 25; $x++) {
$this
->assertSession()
->pageTextContains($terms_array[$x]
->getName());
}
}
public function testTaxonomyNode() {
$term1 = $this
->createTerm($this->vocabulary);
$term2 = $this
->createTerm($this->vocabulary);
$edit = [];
$edit['title[0][value]'] = $this
->randomMachineName();
$edit['body[0][value]'] = $this
->randomMachineName();
$edit[$this->field
->getName() . '[]'] = $term1
->id();
$this
->drupalGet('node/add/article');
$this
->submitForm($edit, 'Save');
$node = $this
->drupalGetNodeByTitle($edit['title[0][value]']);
$this
->drupalGet('node/' . $node
->id());
$this
->assertSession()
->pageTextContains($term1
->getName());
$this
->clickLink('Edit');
$this
->assertSession()
->pageTextContains($term1
->getName());
$this
->submitForm([], 'Save');
$this
->assertSession()
->pageTextContains($term1
->getName());
$edit[$this->field
->getName() . '[]'] = $term2
->id();
$this
->drupalGet('node/' . $node
->id() . '/edit');
$this
->submitForm($edit, 'Save');
$this
->drupalGet('node/' . $node
->id());
$this
->assertSession()
->pageTextContains($term2
->getName());
$this
->drupalGet('node/' . $node
->id() . '/edit');
$this
->submitForm($edit, 'Preview');
$this
->assertSession()
->pageTextContainsOnce($term2
->getName());
$this
->drupalGet('node/' . $node
->id() . '/edit');
$this
->submitForm([], 'Preview');
$this
->assertSession()
->pageTextContainsOnce($term2
->getName());
}
public function testNodeTermCreationAndDeletion() {
$field = $this->field;
\Drupal::service('entity_display.repository')
->getFormDisplay($field
->getTargetEntityTypeId(), $field
->getTargetBundle())
->setComponent($field
->getName(), [
'type' => 'entity_reference_autocomplete_tags',
'settings' => [
'placeholder' => 'Start typing here.',
],
])
->save();
$terms = [
'term1' => 'a' . $this
->randomMachineName(),
'term2' => 'b' . $this
->randomMachineName(),
'term3' => 'c' . $this
->randomMachineName() . ', ' . $this
->randomMachineName(),
'term4' => 'd' . $this
->randomMachineName(),
];
$edit = [];
$edit['title[0][value]'] = $this
->randomMachineName();
$edit['body[0][value]'] = $this
->randomMachineName();
$edit[$field
->getName() . '[target_id]'] = Tags::implode($terms);
$this
->drupalGet('node/add/article');
$this
->assertSession()
->responseContains('placeholder="Start typing here."');
$this
->submitForm($edit, 'Preview');
foreach ($terms as $term) {
$this
->assertSession()
->pageTextContains($term);
}
$tree = $this->container
->get('entity_type.manager')
->getStorage('taxonomy_term')
->loadTree($this->vocabulary
->id());
$this
->assertEmpty($tree, 'The terms are not created on preview.');
$this
->drupalGet('node/add/article');
$this
->submitForm($edit, 'Save');
$this
->assertSession()
->pageTextContains('Article ' . $edit['title[0][value]'] . ' has been created.');
$this
->assertSession()
->elementExists('xpath', '//div[@data-drupal-messages]//a[contains(@href, "node/")]');
foreach ($terms as $term) {
$this
->assertSession()
->pageTextContains($term);
}
$term_objects = [];
foreach ($terms as $key => $term) {
$term_objects[$key] = \Drupal::entityTypeManager()
->getStorage('taxonomy_term')
->loadByProperties([
'name' => $term,
]);
$term_objects[$key] = reset($term_objects[$key]);
}
$node = $this
->drupalGetNodeByTitle($edit['title[0][value]']);
$this
->drupalGet('node/' . $node
->id() . '/edit');
$this
->submitForm($edit, 'Save');
foreach ($terms as $term) {
$this
->assertSession()
->pageTextContains($term);
}
$this
->drupalGet('taxonomy/term/' . $term_objects['term1']
->id() . '/edit');
$this
->clickLink('Delete');
$this
->submitForm([], 'Delete');
$this
->drupalGet('taxonomy/term/' . $term_objects['term2']
->id() . '/delete');
$this
->submitForm([], 'Delete');
$term_names = [
$term_objects['term3']
->getName(),
$term_objects['term4']
->getName(),
];
$this
->drupalGet('node/' . $node
->id());
foreach ($term_names as $term_name) {
$this
->assertSession()
->pageTextContains($term_name);
}
$this
->assertSession()
->pageTextNotContains($term_objects['term1']
->getName());
$this
->assertSession()
->pageTextNotContains($term_objects['term2']
->getName());
}
public function testTermInterface() {
\Drupal::service('module_installer')
->install([
'views',
]);
$edit = [
'name[0][value]' => $this
->randomMachineName(12),
'description[0][value]' => $this
->randomMachineName(100),
];
$edit['parent[]'] = [
0,
];
$this
->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary
->id() . '/add');
$this
->submitForm($edit, 'Save');
$terms = \Drupal::entityTypeManager()
->getStorage('taxonomy_term')
->loadByProperties([
'name' => $edit['name[0][value]'],
]);
$term = reset($terms);
$this
->assertNotNull($term, 'Term found in database.');
$this
->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary
->id() . '/overview');
$this
->clickLink('Edit', 1);
$this
->assertSession()
->pageTextContains($edit['name[0][value]']);
$this
->assertSession()
->pageTextContains($edit['description[0][value]']);
$edit = [
'name[0][value]' => $this
->randomMachineName(14),
'description[0][value]' => $this
->randomMachineName(102),
];
$this
->drupalGet('taxonomy/term/' . $term
->id() . '/edit');
$this
->submitForm($edit, 'Save');
$this
->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary
->id() . '/overview');
$this
->assertSession()
->pageTextContains($edit['name[0][value]']);
$this
->assertSession()
->linkExists('Edit');
$this
->clickLink($edit['name[0][value]']);
$this
->assertSession()
->statusCodeEquals(200);
$this
->drupalGet('taxonomy/term/' . $term
->id());
$this
->assertSession()
->pageTextContains($edit['name[0][value]']);
$this
->assertSession()
->pageTextContains($edit['description[0][value]']);
$this
->assertSession()
->elementExists('xpath', '//div[@class="views-element-container"]/div/header/div/div/p');
$term
->setDescription(NULL);
$term
->save();
$this
->drupalGet('taxonomy/term/' . $term
->id());
$this
->assertSession()
->elementNotExists('xpath', '//div[@class="views-element-container"]/div/header/div/div/p');
$value = $this
->randomMachineName();
$term
->setDescription($value);
$term
->save();
$this
->assertEquals("<p>{$value}</p>\n", $term->description->processed);
$this
->drupalGet('taxonomy/term/' . $term
->id() . '/feed');
$this
->drupalGet('taxonomy/term/' . $term
->id() . '/edit');
$this
->clickLink('Delete');
$this
->submitForm([], 'Delete');
$this
->drupalGet('taxonomy/term/' . $term
->id());
$this
->assertSession()
->statusCodeEquals(404);
$this
->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary
->id() . '/add');
$edit = [
'name[0][value]' => $this
->randomMachineName(12),
'description[0][value]' => $this
->randomMachineName(100),
];
$this
->submitForm($edit, 'Save and go to list');
$this
->assertSession()
->statusCodeEquals(200);
$this
->assertSession()
->addressEquals('admin/structure/taxonomy/manage/' . $this->vocabulary
->id() . '/overview');
$this
->assertSession()
->pageTextContains($edit['name[0][value]']);
$this
->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary
->id() . '/add', [
'query' => [
'destination' => 'node/add',
],
]);
$this
->assertSession()
->pageTextNotContains('Save and go to list');
}
public function testTermSaveOverrideSelector() {
$this
->config('taxonomy.settings')
->set('override_selector', TRUE)
->save();
$edit = [
'name[0][value]' => $this
->randomMachineName(12),
'description[0][value]' => $this
->randomMachineName(100),
];
$this
->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary
->id() . '/add');
$this
->submitForm($edit, 'Save');
$terms = \Drupal::entityTypeManager()
->getStorage('taxonomy_term')
->loadByProperties([
'name' => $edit['name[0][value]'],
]);
$term = reset($terms);
$this
->assertNotNull($term, 'Term found in database.');
$this
->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary
->id() . '/overview');
$this
->assertSession()
->pageTextContains($term
->getName());
}
public function testTermReorder() {
$assert = $this
->assertSession();
$this
->createTerm($this->vocabulary);
$this
->createTerm($this->vocabulary);
$this
->createTerm($this->vocabulary);
$taxonomy_storage = $this->container
->get('entity_type.manager')
->getStorage('taxonomy_term');
$taxonomy_storage
->resetCache();
[
$term1,
$term2,
$term3,
] = $taxonomy_storage
->loadTree($this->vocabulary
->id(), 0, NULL, TRUE);
$this
->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary
->id() . '/overview');
$hidden_edit = [
'terms[tid:' . $term2
->id() . ':0][term][tid]' => $term2
->id(),
'terms[tid:' . $term2
->id() . ':0][term][parent]' => 0,
'terms[tid:' . $term2
->id() . ':0][term][depth]' => 0,
'terms[tid:' . $term3
->id() . ':0][term][tid]' => $term3
->id(),
'terms[tid:' . $term3
->id() . ':0][term][parent]' => $term2
->id(),
'terms[tid:' . $term3
->id() . ':0][term][depth]' => 1,
'terms[tid:' . $term1
->id() . ':0][term][tid]' => $term1
->id(),
'terms[tid:' . $term1
->id() . ':0][term][parent]' => 0,
'terms[tid:' . $term1
->id() . ':0][term][depth]' => 0,
];
foreach ($hidden_edit as $field => $value) {
$node = $assert
->hiddenFieldExists($field);
$node
->setValue($value);
}
$edit = [
'terms[tid:' . $term2
->id() . ':0][weight]' => 0,
'terms[tid:' . $term3
->id() . ':0][weight]' => 1,
'terms[tid:' . $term1
->id() . ':0][weight]' => 2,
];
$this
->submitForm($edit, 'Save');
$taxonomy_storage
->resetCache();
$terms = $taxonomy_storage
->loadTree($this->vocabulary
->id());
$this
->assertEquals($term2
->id(), $terms[0]->tid, 'Term 2 was moved above term 1.');
$this
->assertEquals([
$term2
->id(),
], $terms[1]->parents, 'Term 3 was made a child of term 2.');
$this
->assertEquals($term1
->id(), $terms[2]->tid, 'Term 1 was moved below term 2.');
$this
->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary
->id() . '/overview');
$this
->submitForm([], 'Reset to alphabetical');
$this
->submitForm([], 'Reset to alphabetical');
$this
->assertSession()
->addressEquals('admin/structure/taxonomy/manage/' . $this->vocabulary
->id() . '/overview');
$taxonomy_storage
->resetCache();
$terms = $taxonomy_storage
->loadTree($this->vocabulary
->id(), 0, NULL, TRUE);
$this
->assertEquals($term1
->id(), $terms[0]
->id(), 'Term 1 was moved to back above term 2.');
$this
->assertEquals($term2
->id(), $terms[1]
->id(), 'Term 2 was moved to back below term 1.');
$this
->assertEquals($term3
->id(), $terms[2]
->id(), 'Term 3 is still below term 2.');
$this
->assertEquals([
$term2
->id(),
], $terms[2]->parents, 'Term 3 is still a child of term 2.');
}
public function testTermMultipleParentsInterface() {
$parent = $this
->createTerm($this->vocabulary);
$edit = [
'name[0][value]' => $this
->randomMachineName(12),
'description[0][value]' => $this
->randomMachineName(100),
'parent[]' => [
0,
$parent
->id(),
],
];
$this
->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary
->id() . '/add');
$this
->submitForm($edit, 'Save');
$terms = \Drupal::entityTypeManager()
->getStorage('taxonomy_term')
->loadByProperties([
'name' => $edit['name[0][value]'],
]);
$term = reset($terms);
$this
->assertNotNull($term, 'Term found in database.');
$this
->assertEquals($edit['name[0][value]'], $term
->getName(), 'Term name was successfully saved.');
$this
->assertEquals($edit['description[0][value]'], $term
->getDescription(), 'Term description was successfully saved.');
$parents = $this->container
->get('entity_type.manager')
->getStorage('taxonomy_term')
->loadParents($term
->id());
$parent = reset($parents);
$this
->assertEquals($edit['parent[]'][1], $parent
->id(), 'Term parents were successfully saved.');
}
public function testReSavingTags() {
$field = $this->field;
\Drupal::service('entity_display.repository')
->getFormDisplay($field
->getTargetEntityTypeId(), $field
->getTargetBundle())
->setComponent($field
->getName(), [
'type' => 'entity_reference_autocomplete_tags',
])
->save();
$term = $this
->createTerm($this->vocabulary);
$edit = [];
$edit['title[0][value]'] = $this
->randomMachineName(8);
$edit['body[0][value]'] = $this
->randomMachineName(16);
$edit[$this->field
->getName() . '[target_id]'] = $term
->getName();
$this
->drupalGet('node/add/article');
$this
->submitForm($edit, 'Save');
$this
->clickLink('Edit');
$this
->assertSession()
->responseContains($term
->getName());
$this
->submitForm([], 'Save');
$this
->assertSession()
->responseContains($term
->getName());
}
public function testTermBreadcrumbs() {
$edit = [
'name[0][value]' => $this
->randomMachineName(14),
'description[0][value]' => $this
->randomMachineName(100),
'parent[]' => [
0,
],
];
$this
->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary
->id() . '/add');
$this
->submitForm($edit, 'Save');
$terms = \Drupal::entityTypeManager()
->getStorage('taxonomy_term')
->loadByProperties([
'name' => $edit['name[0][value]'],
]);
$term = reset($terms);
$this
->assertNotNull($term, 'Term found in database.');
$trail = [
'' => 'Home',
'taxonomy/term/' . $term
->id() => $term
->label(),
];
$this
->assertBreadcrumb('taxonomy/term/' . $term
->id() . '/edit', $trail);
$this
->assertSession()
->assertEscaped($term
->label());
$trail = [
'' => 'Home',
'taxonomy/term/' . $term
->id() => $term
->label(),
];
$this
->assertBreadcrumb('taxonomy/term/' . $term
->id() . '/delete', $trail);
$this
->assertSession()
->assertEscaped($term
->label());
}
}