Chris@17: drupalPlaceBlock('local_actions_block'); Chris@17: $this->drupalPlaceBlock('local_tasks_block'); Chris@17: $this->drupalPlaceBlock('page_title_block'); Chris@17: Chris@17: $this->drupalLogin($this->drupalCreateUser(['administer taxonomy', 'bypass node access'])); Chris@17: $this->vocabulary = $this->createVocabulary(); Chris@17: Chris@17: $field_name = 'taxonomy_' . $this->vocabulary->id(); Chris@17: Chris@17: $handler_settings = [ Chris@17: 'target_bundles' => [ Chris@17: $this->vocabulary->id() => $this->vocabulary->id(), Chris@17: ], Chris@17: 'auto_create' => TRUE, Chris@17: ]; Chris@17: $this->createEntityReferenceField('node', 'article', $field_name, NULL, 'taxonomy_term', 'default', $handler_settings, FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED); Chris@17: $this->field = FieldConfig::loadByName('node', 'article', $field_name); Chris@17: Chris@17: entity_get_form_display('node', 'article', 'default') Chris@17: ->setComponent($field_name, [ Chris@17: 'type' => 'options_select', Chris@17: ]) Chris@17: ->save(); Chris@17: entity_get_display('node', 'article', 'default') Chris@17: ->setComponent($field_name, [ Chris@17: 'type' => 'entity_reference_label', Chris@17: ]) Chris@17: ->save(); Chris@17: } Chris@17: Chris@17: /** Chris@17: * The "parent" field must restrict references to the same vocabulary. Chris@17: */ Chris@17: public function testParentHandlerSettings() { Chris@17: $vocabulary_fields = \Drupal::service('entity_field.manager')->getFieldDefinitions('taxonomy_term', $this->vocabulary->id()); Chris@17: $parent_target_bundles = $vocabulary_fields['parent']->getSetting('handler_settings')['target_bundles']; Chris@17: $this->assertIdentical([$this->vocabulary->id() => $this->vocabulary->id()], $parent_target_bundles); Chris@17: } Chris@17: Chris@17: /** Chris@17: * Test terms in a single and multiple hierarchy. Chris@17: */ Chris@17: public function testTaxonomyTermHierarchy() { Chris@17: // Create two taxonomy terms. Chris@17: $term1 = $this->createTerm($this->vocabulary); Chris@17: $term2 = $this->createTerm($this->vocabulary); Chris@17: Chris@17: // Get the taxonomy storage. Chris@18: /** @var \Drupal\taxonomy\TermStorageInterface $taxonomy_storage */ Chris@18: $taxonomy_storage = $this->container->get('entity_type.manager')->getStorage('taxonomy_term'); Chris@17: Chris@17: // Check that hierarchy is flat. Chris@18: $this->assertEquals(0, $taxonomy_storage->getVocabularyHierarchyType($this->vocabulary->id()), 'Vocabulary is flat.'); Chris@17: Chris@17: // Edit $term2, setting $term1 as parent. Chris@17: $edit = []; Chris@17: $edit['parent[]'] = [$term1->id()]; Chris@17: $this->drupalPostForm('taxonomy/term/' . $term2->id() . '/edit', $edit, t('Save')); Chris@17: Chris@17: // Check the hierarchy. Chris@17: $children = $taxonomy_storage->loadChildren($term1->id()); Chris@17: $parents = $taxonomy_storage->loadParents($term2->id()); Chris@17: $this->assertTrue(isset($children[$term2->id()]), 'Child found correctly.'); Chris@17: $this->assertTrue(isset($parents[$term1->id()]), 'Parent found correctly.'); Chris@17: Chris@17: // Load and save a term, confirming that parents are still set. Chris@17: $term = Term::load($term2->id()); Chris@17: $term->save(); Chris@17: $parents = $taxonomy_storage->loadParents($term2->id()); Chris@17: $this->assertTrue(isset($parents[$term1->id()]), 'Parent found correctly.'); Chris@17: Chris@17: // Create a third term and save this as a parent of term2. Chris@17: $term3 = $this->createTerm($this->vocabulary); Chris@17: $term2->parent = [$term1->id(), $term3->id()]; Chris@17: $term2->save(); Chris@17: $parents = $taxonomy_storage->loadParents($term2->id()); Chris@17: $this->assertTrue(isset($parents[$term1->id()]) && isset($parents[$term3->id()]), 'Both parents found successfully.'); Chris@17: } Chris@17: Chris@17: /** Chris@17: * Tests that many terms with parents show on each page Chris@17: */ Chris@17: public function testTaxonomyTermChildTerms() { Chris@17: // Set limit to 10 terms per page. Set variable to 9 so 10 terms appear. Chris@17: $this->config('taxonomy.settings')->set('terms_per_page_admin', '9')->save(); Chris@17: $term1 = $this->createTerm($this->vocabulary); Chris@17: $terms_array = []; Chris@17: Chris@17: $taxonomy_storage = $this->container->get('entity.manager')->getStorage('taxonomy_term'); Chris@17: Chris@17: // Create 40 terms. Terms 1-12 get parent of $term1. All others are Chris@17: // individual terms. Chris@17: for ($x = 1; $x <= 40; $x++) { Chris@17: $edit = []; Chris@17: // Set terms in order so we know which terms will be on which pages. Chris@17: $edit['weight'] = $x; Chris@17: Chris@17: // Set terms 1-20 to be children of first term created. Chris@17: if ($x <= 12) { Chris@17: $edit['parent'] = $term1->id(); Chris@17: } Chris@17: $term = $this->createTerm($this->vocabulary, $edit); Chris@17: $children = $taxonomy_storage->loadChildren($term1->id()); Chris@17: $parents = $taxonomy_storage->loadParents($term->id()); Chris@17: $terms_array[$x] = Term::load($term->id()); Chris@17: } Chris@17: Chris@17: // Get Page 1. Chris@17: $this->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary->id() . '/overview'); Chris@17: $this->assertText($term1->getName(), 'Parent Term is displayed on Page 1'); Chris@17: for ($x = 1; $x <= 13; $x++) { Chris@17: $this->assertText($terms_array[$x]->getName(), $terms_array[$x]->getName() . ' found on Page 1'); Chris@17: } Chris@17: Chris@17: // Get Page 2. Chris@17: $this->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary->id() . '/overview', ['query' => ['page' => 1]]); Chris@17: $this->assertText($term1->getName(), 'Parent Term is displayed on Page 2'); Chris@17: for ($x = 1; $x <= 18; $x++) { Chris@17: $this->assertText($terms_array[$x]->getName(), $terms_array[$x]->getName() . ' found on Page 2'); Chris@17: } Chris@17: Chris@17: // Get Page 3. Chris@17: $this->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary->id() . '/overview', ['query' => ['page' => 2]]); Chris@17: $this->assertNoText($term1->getName(), 'Parent Term is not displayed on Page 3'); Chris@17: for ($x = 1; $x <= 17; $x++) { Chris@17: $this->assertNoText($terms_array[$x]->getName(), $terms_array[$x]->getName() . ' not found on Page 3'); Chris@17: } Chris@17: for ($x = 18; $x <= 25; $x++) { Chris@17: $this->assertText($terms_array[$x]->getName(), $terms_array[$x]->getName() . ' found on Page 3'); Chris@17: } Chris@17: } Chris@17: Chris@17: /** Chris@17: * Test that hook_node_$op implementations work correctly. Chris@17: * Chris@17: * Save & edit a node and assert that taxonomy terms are saved/loaded properly. Chris@17: */ Chris@17: public function testTaxonomyNode() { Chris@17: // Create two taxonomy terms. Chris@17: $term1 = $this->createTerm($this->vocabulary); Chris@17: $term2 = $this->createTerm($this->vocabulary); Chris@17: Chris@17: // Post an article. Chris@17: $edit = []; Chris@17: $edit['title[0][value]'] = $this->randomMachineName(); Chris@17: $edit['body[0][value]'] = $this->randomMachineName(); Chris@17: $edit[$this->field->getName() . '[]'] = $term1->id(); Chris@17: $this->drupalPostForm('node/add/article', $edit, t('Save')); Chris@17: Chris@17: // Check that the term is displayed when the node is viewed. Chris@17: $node = $this->drupalGetNodeByTitle($edit['title[0][value]']); Chris@17: $this->drupalGet('node/' . $node->id()); Chris@17: $this->assertText($term1->getName(), 'Term is displayed when viewing the node.'); Chris@17: Chris@17: $this->clickLink(t('Edit')); Chris@17: $this->assertText($term1->getName(), 'Term is displayed when editing the node.'); Chris@17: $this->drupalPostForm(NULL, [], t('Save')); Chris@17: $this->assertText($term1->getName(), 'Term is displayed after saving the node with no changes.'); Chris@17: Chris@17: // Edit the node with a different term. Chris@17: $edit[$this->field->getName() . '[]'] = $term2->id(); Chris@17: $this->drupalPostForm('node/' . $node->id() . '/edit', $edit, t('Save')); Chris@17: Chris@17: $this->drupalGet('node/' . $node->id()); Chris@17: $this->assertText($term2->getName(), 'Term is displayed when viewing the node.'); Chris@17: Chris@17: // Preview the node. Chris@17: $this->drupalPostForm('node/' . $node->id() . '/edit', $edit, t('Preview')); Chris@17: $this->assertUniqueText($term2->getName(), 'Term is displayed when previewing the node.'); Chris@17: $this->drupalPostForm('node/' . $node->id() . '/edit', NULL, t('Preview')); Chris@17: $this->assertUniqueText($term2->getName(), 'Term is displayed when previewing the node again.'); Chris@17: } Chris@17: Chris@17: /** Chris@17: * Test term creation with a free-tagging vocabulary from the node form. Chris@17: */ Chris@17: public function testNodeTermCreationAndDeletion() { Chris@17: // Enable tags in the vocabulary. Chris@17: $field = $this->field; Chris@17: entity_get_form_display($field->getTargetEntityTypeId(), $field->getTargetBundle(), 'default') Chris@17: ->setComponent($field->getName(), [ Chris@17: 'type' => 'entity_reference_autocomplete_tags', Chris@17: 'settings' => [ Chris@17: 'placeholder' => 'Start typing here.', Chris@17: ], Chris@17: ]) Chris@17: ->save(); Chris@17: // Prefix the terms with a letter to ensure there is no clash in the first Chris@17: // three letters. Chris@17: // @see https://www.drupal.org/node/2397691 Chris@17: $terms = [ Chris@17: 'term1' => 'a' . $this->randomMachineName(), Chris@17: 'term2' => 'b' . $this->randomMachineName(), Chris@17: 'term3' => 'c' . $this->randomMachineName() . ', ' . $this->randomMachineName(), Chris@17: 'term4' => 'd' . $this->randomMachineName(), Chris@17: ]; Chris@17: Chris@17: $edit = []; Chris@17: $edit['title[0][value]'] = $this->randomMachineName(); Chris@17: $edit['body[0][value]'] = $this->randomMachineName(); Chris@17: // Insert the terms in a comma separated list. Vocabulary 1 is a Chris@17: // free-tagging field created by the default profile. Chris@17: $edit[$field->getName() . '[target_id]'] = Tags::implode($terms); Chris@17: Chris@17: // Verify the placeholder is there. Chris@17: $this->drupalGet('node/add/article'); Chris@17: $this->assertRaw('placeholder="Start typing here."', 'Placeholder is present.'); Chris@17: Chris@17: // Preview and verify the terms appear but are not created. Chris@17: $this->drupalPostForm(NULL, $edit, t('Preview')); Chris@17: foreach ($terms as $term) { Chris@17: $this->assertText($term, 'The term appears on the node preview.'); Chris@17: } Chris@17: $tree = $this->container->get('entity.manager')->getStorage('taxonomy_term')->loadTree($this->vocabulary->id()); Chris@17: $this->assertTrue(empty($tree), 'The terms are not created on preview.'); Chris@17: Chris@17: // taxonomy.module does not maintain its static caches. Chris@17: taxonomy_terms_static_reset(); Chris@17: Chris@17: // Save, creating the terms. Chris@17: $this->drupalPostForm('node/add/article', $edit, t('Save')); Chris@17: $this->assertText(t('@type @title has been created.', ['@type' => t('Article'), '@title' => $edit['title[0][value]']]), 'The node was created successfully.'); Chris@17: Chris@17: // Verify that the creation message contains a link to a node. Chris@17: $view_link = $this->xpath('//div[@class="messages"]//a[contains(@href, :href)]', [':href' => 'node/']); Chris@17: $this->assert(isset($view_link), 'The message area contains a link to a node'); Chris@17: Chris@17: foreach ($terms as $term) { Chris@17: $this->assertText($term, 'The term was saved and appears on the node page.'); Chris@17: } Chris@17: Chris@17: // Get the created terms. Chris@17: $term_objects = []; Chris@17: foreach ($terms as $key => $term) { Chris@17: $term_objects[$key] = taxonomy_term_load_multiple_by_name($term); Chris@17: $term_objects[$key] = reset($term_objects[$key]); Chris@17: } Chris@17: Chris@17: // Get the node. Chris@17: $node = $this->drupalGetNodeByTitle($edit['title[0][value]']); Chris@17: Chris@17: // Test editing the node. Chris@17: $this->drupalPostForm('node/' . $node->id() . '/edit', $edit, t('Save')); Chris@17: foreach ($terms as $term) { Chris@17: $this->assertText($term, 'The term was retained after edit and still appears on the node page.'); Chris@17: } Chris@17: Chris@17: // Delete term 1 from the term edit page. Chris@17: $this->drupalGet('taxonomy/term/' . $term_objects['term1']->id() . '/edit'); Chris@17: $this->clickLink(t('Delete')); Chris@17: $this->drupalPostForm(NULL, NULL, t('Delete')); Chris@17: Chris@17: // Delete term 2 from the term delete page. Chris@17: $this->drupalGet('taxonomy/term/' . $term_objects['term2']->id() . '/delete'); Chris@17: $this->drupalPostForm(NULL, [], t('Delete')); Chris@17: $term_names = [$term_objects['term3']->getName(), $term_objects['term4']->getName()]; Chris@17: Chris@17: $this->drupalGet('node/' . $node->id()); Chris@17: Chris@17: foreach ($term_names as $term_name) { Chris@17: $this->assertText($term_name, format_string('The term %name appears on the node page after two terms, %deleted1 and %deleted2, were deleted.', ['%name' => $term_name, '%deleted1' => $term_objects['term1']->getName(), '%deleted2' => $term_objects['term2']->getName()])); Chris@17: } Chris@17: $this->assertNoText($term_objects['term1']->getName(), format_string('The deleted term %name does not appear on the node page.', ['%name' => $term_objects['term1']->getName()])); Chris@17: $this->assertNoText($term_objects['term2']->getName(), format_string('The deleted term %name does not appear on the node page.', ['%name' => $term_objects['term2']->getName()])); Chris@17: } Chris@17: Chris@17: /** Chris@17: * Save, edit and delete a term using the user interface. Chris@17: */ Chris@17: public function testTermInterface() { Chris@17: \Drupal::service('module_installer')->install(['views']); Chris@17: $edit = [ Chris@17: 'name[0][value]' => $this->randomMachineName(12), Chris@17: 'description[0][value]' => $this->randomMachineName(100), Chris@17: ]; Chris@17: // Explicitly set the parents field to 'root', to ensure that Chris@17: // TermForm::save() handles the invalid term ID correctly. Chris@17: $edit['parent[]'] = [0]; Chris@17: Chris@17: // Create the term to edit. Chris@17: $this->drupalPostForm('admin/structure/taxonomy/manage/' . $this->vocabulary->id() . '/add', $edit, t('Save')); Chris@17: Chris@17: $terms = taxonomy_term_load_multiple_by_name($edit['name[0][value]']); Chris@17: $term = reset($terms); Chris@17: $this->assertNotNull($term, 'Term found in database.'); Chris@17: Chris@17: // Submitting a term takes us to the add page; we need the List page. Chris@17: $this->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary->id() . '/overview'); Chris@17: Chris@17: $this->clickLink(t('Edit')); Chris@17: Chris@17: $this->assertRaw($edit['name[0][value]'], 'The randomly generated term name is present.'); Chris@17: $this->assertText($edit['description[0][value]'], 'The randomly generated term description is present.'); Chris@17: Chris@17: $edit = [ Chris@17: 'name[0][value]' => $this->randomMachineName(14), Chris@17: 'description[0][value]' => $this->randomMachineName(102), Chris@17: ]; Chris@17: Chris@17: // Edit the term. Chris@17: $this->drupalPostForm('taxonomy/term/' . $term->id() . '/edit', $edit, t('Save')); Chris@17: Chris@17: // Check that the term is still present at admin UI after edit. Chris@17: $this->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary->id() . '/overview'); Chris@17: $this->assertText($edit['name[0][value]'], 'The randomly generated term name is present.'); Chris@17: $this->assertLink(t('Edit')); Chris@17: Chris@17: // Check the term link can be clicked through to the term page. Chris@17: $this->clickLink($edit['name[0][value]']); Chris@17: $this->assertResponse(200, 'Term page can be accessed via the listing link.'); Chris@17: Chris@17: // View the term and check that it is correct. Chris@17: $this->drupalGet('taxonomy/term/' . $term->id()); Chris@17: $this->assertText($edit['name[0][value]'], 'The randomly generated term name is present.'); Chris@17: $this->assertText($edit['description[0][value]'], 'The randomly generated term description is present.'); Chris@17: Chris@17: // Did this page request display a 'term-listing-heading'? Chris@17: $this->assertTrue($this->xpath('//div[contains(@class, "field--name-description")]'), 'Term page displayed the term description element.'); Chris@17: // Check that it does NOT show a description when description is blank. Chris@17: $term->setDescription(NULL); Chris@17: $term->save(); Chris@17: $this->drupalGet('taxonomy/term/' . $term->id()); Chris@17: $this->assertFalse($this->xpath('//div[contains(@class, "field--entity-taxonomy-term--description")]'), 'Term page did not display the term description when description was blank.'); Chris@17: Chris@17: // Check that the description value is processed. Chris@17: $value = $this->randomMachineName(); Chris@17: $term->setDescription($value); Chris@17: $term->save(); Chris@17: $this->assertEqual($term->description->processed, "

$value

\n"); Chris@17: Chris@17: // Check that the term feed page is working. Chris@17: $this->drupalGet('taxonomy/term/' . $term->id() . '/feed'); Chris@17: Chris@17: // Delete the term. Chris@17: $this->drupalGet('taxonomy/term/' . $term->id() . '/edit'); Chris@17: $this->clickLink(t('Delete')); Chris@17: $this->drupalPostForm(NULL, NULL, t('Delete')); Chris@17: Chris@17: // Assert that the term no longer exists. Chris@17: $this->drupalGet('taxonomy/term/' . $term->id()); Chris@17: $this->assertResponse(404, 'The taxonomy term page was not found.'); Chris@17: } Chris@17: Chris@17: /** Chris@17: * Save, edit and delete a term using the user interface. Chris@17: */ Chris@17: public function testTermReorder() { Chris@17: $assert = $this->assertSession(); Chris@17: $this->createTerm($this->vocabulary); Chris@17: $this->createTerm($this->vocabulary); Chris@17: $this->createTerm($this->vocabulary); Chris@17: Chris@17: $taxonomy_storage = $this->container->get('entity.manager')->getStorage('taxonomy_term'); Chris@17: Chris@17: // Fetch the created terms in the default alphabetical order, i.e. term1 Chris@17: // precedes term2 alphabetically, and term2 precedes term3. Chris@17: $taxonomy_storage->resetCache(); Chris@17: list($term1, $term2, $term3) = $taxonomy_storage->loadTree($this->vocabulary->id(), 0, NULL, TRUE); Chris@17: Chris@17: $this->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary->id() . '/overview'); Chris@17: Chris@17: // Each term has four hidden fields, "tid:1:0[tid]", "tid:1:0[parent]", Chris@17: // "tid:1:0[depth]", and "tid:1:0[weight]". Change the order to term2, Chris@17: // term3, term1 by setting weight property, make term3 a child of term2 by Chris@17: // setting the parent and depth properties, and update all hidden fields. Chris@17: $hidden_edit = [ Chris@17: 'terms[tid:' . $term2->id() . ':0][term][tid]' => $term2->id(), Chris@17: 'terms[tid:' . $term2->id() . ':0][term][parent]' => 0, Chris@17: 'terms[tid:' . $term2->id() . ':0][term][depth]' => 0, Chris@17: 'terms[tid:' . $term3->id() . ':0][term][tid]' => $term3->id(), Chris@17: 'terms[tid:' . $term3->id() . ':0][term][parent]' => $term2->id(), Chris@17: 'terms[tid:' . $term3->id() . ':0][term][depth]' => 1, Chris@17: 'terms[tid:' . $term1->id() . ':0][term][tid]' => $term1->id(), Chris@17: 'terms[tid:' . $term1->id() . ':0][term][parent]' => 0, Chris@17: 'terms[tid:' . $term1->id() . ':0][term][depth]' => 0, Chris@17: ]; Chris@17: // Because we can't post hidden form elements, we have to change them in Chris@17: // code here, and then submit. Chris@17: foreach ($hidden_edit as $field => $value) { Chris@17: $node = $assert->hiddenFieldExists($field); Chris@17: $node->setValue($value); Chris@17: } Chris@17: // Edit non-hidden elements within drupalPostForm(). Chris@17: $edit = [ Chris@17: 'terms[tid:' . $term2->id() . ':0][weight]' => 0, Chris@17: 'terms[tid:' . $term3->id() . ':0][weight]' => 1, Chris@17: 'terms[tid:' . $term1->id() . ':0][weight]' => 2, Chris@17: ]; Chris@17: $this->drupalPostForm(NULL, $edit, 'Save'); Chris@17: Chris@17: $taxonomy_storage->resetCache(); Chris@17: $terms = $taxonomy_storage->loadTree($this->vocabulary->id()); Chris@17: $this->assertEqual($terms[0]->tid, $term2->id(), 'Term 2 was moved above term 1.'); Chris@17: $this->assertEqual($terms[1]->parents, [$term2->id()], 'Term 3 was made a child of term 2.'); Chris@17: $this->assertEqual($terms[2]->tid, $term1->id(), 'Term 1 was moved below term 2.'); Chris@17: Chris@17: $this->drupalPostForm('admin/structure/taxonomy/manage/' . $this->vocabulary->id() . '/overview', [], t('Reset to alphabetical')); Chris@17: // Submit confirmation form. Chris@17: $this->drupalPostForm(NULL, [], t('Reset to alphabetical')); Chris@17: // Ensure form redirected back to overview. Chris@17: $this->assertUrl('admin/structure/taxonomy/manage/' . $this->vocabulary->id() . '/overview'); Chris@17: Chris@17: $taxonomy_storage->resetCache(); Chris@17: $terms = $taxonomy_storage->loadTree($this->vocabulary->id(), 0, NULL, TRUE); Chris@17: $this->assertEqual($terms[0]->id(), $term1->id(), 'Term 1 was moved to back above term 2.'); Chris@17: $this->assertEqual($terms[1]->id(), $term2->id(), 'Term 2 was moved to back below term 1.'); Chris@17: $this->assertEqual($terms[2]->id(), $term3->id(), 'Term 3 is still below term 2.'); Chris@17: $this->assertEqual($terms[2]->parents, [$term2->id()], 'Term 3 is still a child of term 2.'); Chris@17: } Chris@17: Chris@17: /** Chris@17: * Test saving a term with multiple parents through the UI. Chris@17: */ Chris@17: public function testTermMultipleParentsInterface() { Chris@17: // Add a new term to the vocabulary so that we can have multiple parents. Chris@17: $parent = $this->createTerm($this->vocabulary); Chris@17: Chris@17: // Add a new term with multiple parents. Chris@17: $edit = [ Chris@17: 'name[0][value]' => $this->randomMachineName(12), Chris@17: 'description[0][value]' => $this->randomMachineName(100), Chris@17: 'parent[]' => [0, $parent->id()], Chris@17: ]; Chris@17: // Save the new term. Chris@17: $this->drupalPostForm('admin/structure/taxonomy/manage/' . $this->vocabulary->id() . '/add', $edit, t('Save')); Chris@17: Chris@17: // Check that the term was successfully created. Chris@17: $terms = taxonomy_term_load_multiple_by_name($edit['name[0][value]']); Chris@17: $term = reset($terms); Chris@17: $this->assertNotNull($term, 'Term found in database.'); Chris@17: $this->assertEqual($edit['name[0][value]'], $term->getName(), 'Term name was successfully saved.'); Chris@17: $this->assertEqual($edit['description[0][value]'], $term->getDescription(), 'Term description was successfully saved.'); Chris@17: // Check that the parent tid is still there. The other parent () is Chris@17: // not added by \Drupal\taxonomy\TermStorageInterface::loadParents(). Chris@17: $parents = $this->container->get('entity.manager')->getStorage('taxonomy_term')->loadParents($term->id()); Chris@17: $parent = reset($parents); Chris@17: $this->assertEqual($edit['parent[]'][1], $parent->id(), 'Term parents were successfully saved.'); Chris@17: } Chris@17: Chris@17: /** Chris@17: * Test taxonomy_term_load_multiple_by_name(). Chris@17: */ Chris@17: public function testTaxonomyGetTermByName() { Chris@17: $term = $this->createTerm($this->vocabulary); Chris@17: Chris@17: // Load the term with the exact name. Chris@17: $terms = taxonomy_term_load_multiple_by_name($term->getName()); Chris@17: $this->assertTrue(isset($terms[$term->id()]), 'Term loaded using exact name.'); Chris@17: Chris@17: // Load the term with space concatenated. Chris@17: $terms = taxonomy_term_load_multiple_by_name(' ' . $term->getName() . ' '); Chris@17: $this->assertTrue(isset($terms[$term->id()]), 'Term loaded with extra whitespace.'); Chris@17: Chris@17: // Load the term with name uppercased. Chris@17: $terms = taxonomy_term_load_multiple_by_name(strtoupper($term->getName())); Chris@17: $this->assertTrue(isset($terms[$term->id()]), 'Term loaded with uppercased name.'); Chris@17: Chris@17: // Load the term with name lowercased. Chris@17: $terms = taxonomy_term_load_multiple_by_name(strtolower($term->getName())); Chris@17: $this->assertTrue(isset($terms[$term->id()]), 'Term loaded with lowercased name.'); Chris@17: Chris@17: // Try to load an invalid term name. Chris@17: $terms = taxonomy_term_load_multiple_by_name('Banana'); Chris@17: $this->assertFalse($terms, 'No term loaded with an invalid name.'); Chris@17: Chris@17: // Try to load the term using a substring of the name. Chris@17: $terms = taxonomy_term_load_multiple_by_name(mb_substr($term->getName(), 2), 'No term loaded with a substring of the name.'); Chris@17: $this->assertFalse($terms); Chris@17: Chris@17: // Create a new term in a different vocabulary with the same name. Chris@17: $new_vocabulary = $this->createVocabulary(); Chris@17: $new_term = Term::create([ Chris@17: 'name' => $term->getName(), Chris@17: 'vid' => $new_vocabulary->id(), Chris@17: ]); Chris@17: $new_term->save(); Chris@17: Chris@17: // Load multiple terms with the same name. Chris@17: $terms = taxonomy_term_load_multiple_by_name($term->getName()); Chris@17: $this->assertEqual(count($terms), 2, 'Two terms loaded with the same name.'); Chris@17: Chris@17: // Load single term when restricted to one vocabulary. Chris@17: $terms = taxonomy_term_load_multiple_by_name($term->getName(), $this->vocabulary->id()); Chris@17: $this->assertEqual(count($terms), 1, 'One term loaded when restricted by vocabulary.'); Chris@17: $this->assertTrue(isset($terms[$term->id()]), 'Term loaded using exact name and vocabulary machine name.'); Chris@17: Chris@17: // Create a new term with another name. Chris@17: $term2 = $this->createTerm($this->vocabulary); Chris@17: Chris@17: // Try to load a term by name that doesn't exist in this vocabulary but Chris@17: // exists in another vocabulary. Chris@17: $terms = taxonomy_term_load_multiple_by_name($term2->getName(), $new_vocabulary->id()); Chris@17: $this->assertFalse($terms, 'Invalid term name restricted by vocabulary machine name not loaded.'); Chris@17: Chris@17: // Try to load terms filtering by a non-existing vocabulary. Chris@17: $terms = taxonomy_term_load_multiple_by_name($term2->getName(), 'non_existing_vocabulary'); Chris@17: $this->assertEqual(count($terms), 0, 'No terms loaded when restricted by a non-existing vocabulary.'); Chris@17: } Chris@17: Chris@17: /** Chris@17: * Tests that editing and saving a node with no changes works correctly. Chris@17: */ Chris@17: public function testReSavingTags() { Chris@17: // Enable tags in the vocabulary. Chris@17: $field = $this->field; Chris@17: entity_get_form_display($field->getTargetEntityTypeId(), $field->getTargetBundle(), 'default') Chris@17: ->setComponent($field->getName(), [ Chris@17: 'type' => 'entity_reference_autocomplete_tags', Chris@17: ]) Chris@17: ->save(); Chris@17: Chris@17: // Create a term and a node using it. Chris@17: $term = $this->createTerm($this->vocabulary); Chris@17: $edit = []; Chris@17: $edit['title[0][value]'] = $this->randomMachineName(8); Chris@17: $edit['body[0][value]'] = $this->randomMachineName(16); Chris@17: $edit[$this->field->getName() . '[target_id]'] = $term->getName(); Chris@17: $this->drupalPostForm('node/add/article', $edit, t('Save')); Chris@17: Chris@17: // Check that the term is displayed when editing and saving the node with no Chris@17: // changes. Chris@17: $this->clickLink(t('Edit')); Chris@17: $this->assertRaw($term->getName(), 'Term is displayed when editing the node.'); Chris@17: $this->drupalPostForm(NULL, [], t('Save')); Chris@17: $this->assertRaw($term->getName(), 'Term is displayed after saving the node with no changes.'); Chris@17: } Chris@17: Chris@17: /** Chris@17: * Check the breadcrumb on edit and delete a term page. Chris@17: */ Chris@17: public function testTermBreadcrumbs() { Chris@17: $edit = [ Chris@17: 'name[0][value]' => $this->randomMachineName(14), Chris@17: 'description[0][value]' => $this->randomMachineName(100), Chris@17: 'parent[]' => [0], Chris@17: ]; Chris@17: Chris@17: // Create the term. Chris@17: $this->drupalPostForm('admin/structure/taxonomy/manage/' . $this->vocabulary->id() . '/add', $edit, 'Save'); Chris@17: Chris@17: $terms = taxonomy_term_load_multiple_by_name($edit['name[0][value]']); Chris@17: $term = reset($terms); Chris@17: $this->assertNotNull($term, 'Term found in database.'); Chris@17: Chris@17: // Check the breadcrumb on the term edit page. Chris@17: $this->drupalGet('taxonomy/term/' . $term->id() . '/edit'); Chris@17: $breadcrumbs = $this->getSession()->getPage()->findAll('css', 'nav.breadcrumb ol li a'); Chris@17: $this->assertIdentical(count($breadcrumbs), 2, 'The breadcrumbs are present on the page.'); Chris@17: $this->assertIdentical($breadcrumbs[0]->getText(), 'Home', 'First breadcrumb text is Home'); Chris@17: $this->assertIdentical($breadcrumbs[1]->getText(), $term->label(), 'Second breadcrumb text is term name on term edit page.'); Chris@17: $this->assertEscaped($breadcrumbs[1]->getText(), 'breadcrumbs displayed and escaped.'); Chris@17: Chris@17: // Check the breadcrumb on the term delete page. Chris@17: $this->drupalGet('taxonomy/term/' . $term->id() . '/delete'); Chris@17: $breadcrumbs = $this->getSession()->getPage()->findAll('css', 'nav.breadcrumb ol li a'); Chris@17: $this->assertIdentical(count($breadcrumbs), 2, 'The breadcrumbs are present on the page.'); Chris@17: $this->assertIdentical($breadcrumbs[0]->getText(), 'Home', 'First breadcrumb text is Home'); Chris@17: $this->assertIdentical($breadcrumbs[1]->getText(), $term->label(), 'Second breadcrumb text is term name on term delete page.'); Chris@17: $this->assertEscaped($breadcrumbs[1]->getText(), 'breadcrumbs displayed and escaped.'); Chris@17: } Chris@17: Chris@17: }