annotate core/modules/taxonomy/tests/src/Functional/TermTest.php @ 5:12f9dff5fda9 tip

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:34:47 +0100
parents a9cd425dd02b
children
rev   line source
Chris@4 1 <?php
Chris@4 2
Chris@4 3 namespace Drupal\Tests\taxonomy\Functional;
Chris@4 4
Chris@4 5 use Drupal\Component\Utility\Tags;
Chris@4 6 use Drupal\Core\Field\FieldStorageDefinitionInterface;
Chris@4 7 use Drupal\field\Entity\FieldConfig;
Chris@4 8 use Drupal\taxonomy\Entity\Term;
Chris@4 9 use Drupal\taxonomy\Entity\Vocabulary;
Chris@4 10
Chris@4 11 /**
Chris@4 12 * Tests load, save and delete for taxonomy terms.
Chris@4 13 *
Chris@4 14 * @group taxonomy
Chris@4 15 */
Chris@4 16 class TermTest extends TaxonomyTestBase {
Chris@4 17
Chris@4 18 /**
Chris@4 19 * Vocabulary for testing.
Chris@4 20 *
Chris@4 21 * @var \Drupal\taxonomy\VocabularyInterface
Chris@4 22 */
Chris@4 23 protected $vocabulary;
Chris@4 24
Chris@4 25 /**
Chris@4 26 * Taxonomy term reference field for testing.
Chris@4 27 *
Chris@4 28 * @var \Drupal\field\FieldConfigInterface
Chris@4 29 */
Chris@4 30 protected $field;
Chris@4 31
Chris@4 32 /**
Chris@4 33 * Modules to enable.
Chris@4 34 *
Chris@4 35 * @var string[]
Chris@4 36 */
Chris@4 37 public static $modules = ['block'];
Chris@4 38
Chris@4 39 /**
Chris@4 40 * {@inheritdoc}
Chris@4 41 */
Chris@4 42 protected function setUp() {
Chris@4 43 parent::setUp();
Chris@4 44
Chris@4 45 $this->drupalPlaceBlock('local_actions_block');
Chris@4 46 $this->drupalPlaceBlock('local_tasks_block');
Chris@4 47 $this->drupalPlaceBlock('page_title_block');
Chris@4 48
Chris@4 49 $this->drupalLogin($this->drupalCreateUser(['administer taxonomy', 'bypass node access']));
Chris@4 50 $this->vocabulary = $this->createVocabulary();
Chris@4 51
Chris@4 52 $field_name = 'taxonomy_' . $this->vocabulary->id();
Chris@4 53
Chris@4 54 $handler_settings = [
Chris@4 55 'target_bundles' => [
Chris@4 56 $this->vocabulary->id() => $this->vocabulary->id(),
Chris@4 57 ],
Chris@4 58 'auto_create' => TRUE,
Chris@4 59 ];
Chris@4 60 $this->createEntityReferenceField('node', 'article', $field_name, NULL, 'taxonomy_term', 'default', $handler_settings, FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED);
Chris@4 61 $this->field = FieldConfig::loadByName('node', 'article', $field_name);
Chris@4 62
Chris@4 63 entity_get_form_display('node', 'article', 'default')
Chris@4 64 ->setComponent($field_name, [
Chris@4 65 'type' => 'options_select',
Chris@4 66 ])
Chris@4 67 ->save();
Chris@4 68 entity_get_display('node', 'article', 'default')
Chris@4 69 ->setComponent($field_name, [
Chris@4 70 'type' => 'entity_reference_label',
Chris@4 71 ])
Chris@4 72 ->save();
Chris@4 73 }
Chris@4 74
Chris@4 75 /**
Chris@4 76 * The "parent" field must restrict references to the same vocabulary.
Chris@4 77 */
Chris@4 78 public function testParentHandlerSettings() {
Chris@4 79 $vocabulary_fields = \Drupal::service('entity_field.manager')->getFieldDefinitions('taxonomy_term', $this->vocabulary->id());
Chris@4 80 $parent_target_bundles = $vocabulary_fields['parent']->getSetting('handler_settings')['target_bundles'];
Chris@4 81 $this->assertIdentical([$this->vocabulary->id() => $this->vocabulary->id()], $parent_target_bundles);
Chris@4 82 }
Chris@4 83
Chris@4 84 /**
Chris@4 85 * Test terms in a single and multiple hierarchy.
Chris@4 86 */
Chris@4 87 public function testTaxonomyTermHierarchy() {
Chris@4 88 // Create two taxonomy terms.
Chris@4 89 $term1 = $this->createTerm($this->vocabulary);
Chris@4 90 $term2 = $this->createTerm($this->vocabulary);
Chris@4 91
Chris@4 92 // Get the taxonomy storage.
Chris@5 93 /** @var \Drupal\taxonomy\TermStorageInterface $taxonomy_storage */
Chris@5 94 $taxonomy_storage = $this->container->get('entity_type.manager')->getStorage('taxonomy_term');
Chris@4 95
Chris@4 96 // Check that hierarchy is flat.
Chris@5 97 $this->assertEquals(0, $taxonomy_storage->getVocabularyHierarchyType($this->vocabulary->id()), 'Vocabulary is flat.');
Chris@4 98
Chris@4 99 // Edit $term2, setting $term1 as parent.
Chris@4 100 $edit = [];
Chris@4 101 $edit['parent[]'] = [$term1->id()];
Chris@4 102 $this->drupalPostForm('taxonomy/term/' . $term2->id() . '/edit', $edit, t('Save'));
Chris@4 103
Chris@4 104 // Check the hierarchy.
Chris@4 105 $children = $taxonomy_storage->loadChildren($term1->id());
Chris@4 106 $parents = $taxonomy_storage->loadParents($term2->id());
Chris@4 107 $this->assertTrue(isset($children[$term2->id()]), 'Child found correctly.');
Chris@4 108 $this->assertTrue(isset($parents[$term1->id()]), 'Parent found correctly.');
Chris@4 109
Chris@4 110 // Load and save a term, confirming that parents are still set.
Chris@4 111 $term = Term::load($term2->id());
Chris@4 112 $term->save();
Chris@4 113 $parents = $taxonomy_storage->loadParents($term2->id());
Chris@4 114 $this->assertTrue(isset($parents[$term1->id()]), 'Parent found correctly.');
Chris@4 115
Chris@4 116 // Create a third term and save this as a parent of term2.
Chris@4 117 $term3 = $this->createTerm($this->vocabulary);
Chris@4 118 $term2->parent = [$term1->id(), $term3->id()];
Chris@4 119 $term2->save();
Chris@4 120 $parents = $taxonomy_storage->loadParents($term2->id());
Chris@4 121 $this->assertTrue(isset($parents[$term1->id()]) && isset($parents[$term3->id()]), 'Both parents found successfully.');
Chris@4 122 }
Chris@4 123
Chris@4 124 /**
Chris@4 125 * Tests that many terms with parents show on each page
Chris@4 126 */
Chris@4 127 public function testTaxonomyTermChildTerms() {
Chris@4 128 // Set limit to 10 terms per page. Set variable to 9 so 10 terms appear.
Chris@4 129 $this->config('taxonomy.settings')->set('terms_per_page_admin', '9')->save();
Chris@4 130 $term1 = $this->createTerm($this->vocabulary);
Chris@4 131 $terms_array = [];
Chris@4 132
Chris@4 133 $taxonomy_storage = $this->container->get('entity.manager')->getStorage('taxonomy_term');
Chris@4 134
Chris@4 135 // Create 40 terms. Terms 1-12 get parent of $term1. All others are
Chris@4 136 // individual terms.
Chris@4 137 for ($x = 1; $x <= 40; $x++) {
Chris@4 138 $edit = [];
Chris@4 139 // Set terms in order so we know which terms will be on which pages.
Chris@4 140 $edit['weight'] = $x;
Chris@4 141
Chris@4 142 // Set terms 1-20 to be children of first term created.
Chris@4 143 if ($x <= 12) {
Chris@4 144 $edit['parent'] = $term1->id();
Chris@4 145 }
Chris@4 146 $term = $this->createTerm($this->vocabulary, $edit);
Chris@4 147 $children = $taxonomy_storage->loadChildren($term1->id());
Chris@4 148 $parents = $taxonomy_storage->loadParents($term->id());
Chris@4 149 $terms_array[$x] = Term::load($term->id());
Chris@4 150 }
Chris@4 151
Chris@4 152 // Get Page 1.
Chris@4 153 $this->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary->id() . '/overview');
Chris@4 154 $this->assertText($term1->getName(), 'Parent Term is displayed on Page 1');
Chris@4 155 for ($x = 1; $x <= 13; $x++) {
Chris@4 156 $this->assertText($terms_array[$x]->getName(), $terms_array[$x]->getName() . ' found on Page 1');
Chris@4 157 }
Chris@4 158
Chris@4 159 // Get Page 2.
Chris@4 160 $this->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary->id() . '/overview', ['query' => ['page' => 1]]);
Chris@4 161 $this->assertText($term1->getName(), 'Parent Term is displayed on Page 2');
Chris@4 162 for ($x = 1; $x <= 18; $x++) {
Chris@4 163 $this->assertText($terms_array[$x]->getName(), $terms_array[$x]->getName() . ' found on Page 2');
Chris@4 164 }
Chris@4 165
Chris@4 166 // Get Page 3.
Chris@4 167 $this->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary->id() . '/overview', ['query' => ['page' => 2]]);
Chris@4 168 $this->assertNoText($term1->getName(), 'Parent Term is not displayed on Page 3');
Chris@4 169 for ($x = 1; $x <= 17; $x++) {
Chris@4 170 $this->assertNoText($terms_array[$x]->getName(), $terms_array[$x]->getName() . ' not found on Page 3');
Chris@4 171 }
Chris@4 172 for ($x = 18; $x <= 25; $x++) {
Chris@4 173 $this->assertText($terms_array[$x]->getName(), $terms_array[$x]->getName() . ' found on Page 3');
Chris@4 174 }
Chris@4 175 }
Chris@4 176
Chris@4 177 /**
Chris@4 178 * Test that hook_node_$op implementations work correctly.
Chris@4 179 *
Chris@4 180 * Save & edit a node and assert that taxonomy terms are saved/loaded properly.
Chris@4 181 */
Chris@4 182 public function testTaxonomyNode() {
Chris@4 183 // Create two taxonomy terms.
Chris@4 184 $term1 = $this->createTerm($this->vocabulary);
Chris@4 185 $term2 = $this->createTerm($this->vocabulary);
Chris@4 186
Chris@4 187 // Post an article.
Chris@4 188 $edit = [];
Chris@4 189 $edit['title[0][value]'] = $this->randomMachineName();
Chris@4 190 $edit['body[0][value]'] = $this->randomMachineName();
Chris@4 191 $edit[$this->field->getName() . '[]'] = $term1->id();
Chris@4 192 $this->drupalPostForm('node/add/article', $edit, t('Save'));
Chris@4 193
Chris@4 194 // Check that the term is displayed when the node is viewed.
Chris@4 195 $node = $this->drupalGetNodeByTitle($edit['title[0][value]']);
Chris@4 196 $this->drupalGet('node/' . $node->id());
Chris@4 197 $this->assertText($term1->getName(), 'Term is displayed when viewing the node.');
Chris@4 198
Chris@4 199 $this->clickLink(t('Edit'));
Chris@4 200 $this->assertText($term1->getName(), 'Term is displayed when editing the node.');
Chris@4 201 $this->drupalPostForm(NULL, [], t('Save'));
Chris@4 202 $this->assertText($term1->getName(), 'Term is displayed after saving the node with no changes.');
Chris@4 203
Chris@4 204 // Edit the node with a different term.
Chris@4 205 $edit[$this->field->getName() . '[]'] = $term2->id();
Chris@4 206 $this->drupalPostForm('node/' . $node->id() . '/edit', $edit, t('Save'));
Chris@4 207
Chris@4 208 $this->drupalGet('node/' . $node->id());
Chris@4 209 $this->assertText($term2->getName(), 'Term is displayed when viewing the node.');
Chris@4 210
Chris@4 211 // Preview the node.
Chris@4 212 $this->drupalPostForm('node/' . $node->id() . '/edit', $edit, t('Preview'));
Chris@4 213 $this->assertUniqueText($term2->getName(), 'Term is displayed when previewing the node.');
Chris@4 214 $this->drupalPostForm('node/' . $node->id() . '/edit', NULL, t('Preview'));
Chris@4 215 $this->assertUniqueText($term2->getName(), 'Term is displayed when previewing the node again.');
Chris@4 216 }
Chris@4 217
Chris@4 218 /**
Chris@4 219 * Test term creation with a free-tagging vocabulary from the node form.
Chris@4 220 */
Chris@4 221 public function testNodeTermCreationAndDeletion() {
Chris@4 222 // Enable tags in the vocabulary.
Chris@4 223 $field = $this->field;
Chris@4 224 entity_get_form_display($field->getTargetEntityTypeId(), $field->getTargetBundle(), 'default')
Chris@4 225 ->setComponent($field->getName(), [
Chris@4 226 'type' => 'entity_reference_autocomplete_tags',
Chris@4 227 'settings' => [
Chris@4 228 'placeholder' => 'Start typing here.',
Chris@4 229 ],
Chris@4 230 ])
Chris@4 231 ->save();
Chris@4 232 // Prefix the terms with a letter to ensure there is no clash in the first
Chris@4 233 // three letters.
Chris@4 234 // @see https://www.drupal.org/node/2397691
Chris@4 235 $terms = [
Chris@4 236 'term1' => 'a' . $this->randomMachineName(),
Chris@4 237 'term2' => 'b' . $this->randomMachineName(),
Chris@4 238 'term3' => 'c' . $this->randomMachineName() . ', ' . $this->randomMachineName(),
Chris@4 239 'term4' => 'd' . $this->randomMachineName(),
Chris@4 240 ];
Chris@4 241
Chris@4 242 $edit = [];
Chris@4 243 $edit['title[0][value]'] = $this->randomMachineName();
Chris@4 244 $edit['body[0][value]'] = $this->randomMachineName();
Chris@4 245 // Insert the terms in a comma separated list. Vocabulary 1 is a
Chris@4 246 // free-tagging field created by the default profile.
Chris@4 247 $edit[$field->getName() . '[target_id]'] = Tags::implode($terms);
Chris@4 248
Chris@4 249 // Verify the placeholder is there.
Chris@4 250 $this->drupalGet('node/add/article');
Chris@4 251 $this->assertRaw('placeholder="Start typing here."', 'Placeholder is present.');
Chris@4 252
Chris@4 253 // Preview and verify the terms appear but are not created.
Chris@4 254 $this->drupalPostForm(NULL, $edit, t('Preview'));
Chris@4 255 foreach ($terms as $term) {
Chris@4 256 $this->assertText($term, 'The term appears on the node preview.');
Chris@4 257 }
Chris@4 258 $tree = $this->container->get('entity.manager')->getStorage('taxonomy_term')->loadTree($this->vocabulary->id());
Chris@4 259 $this->assertTrue(empty($tree), 'The terms are not created on preview.');
Chris@4 260
Chris@4 261 // taxonomy.module does not maintain its static caches.
Chris@4 262 taxonomy_terms_static_reset();
Chris@4 263
Chris@4 264 // Save, creating the terms.
Chris@4 265 $this->drupalPostForm('node/add/article', $edit, t('Save'));
Chris@4 266 $this->assertText(t('@type @title has been created.', ['@type' => t('Article'), '@title' => $edit['title[0][value]']]), 'The node was created successfully.');
Chris@4 267
Chris@4 268 // Verify that the creation message contains a link to a node.
Chris@4 269 $view_link = $this->xpath('//div[@class="messages"]//a[contains(@href, :href)]', [':href' => 'node/']);
Chris@4 270 $this->assert(isset($view_link), 'The message area contains a link to a node');
Chris@4 271
Chris@4 272 foreach ($terms as $term) {
Chris@4 273 $this->assertText($term, 'The term was saved and appears on the node page.');
Chris@4 274 }
Chris@4 275
Chris@4 276 // Get the created terms.
Chris@4 277 $term_objects = [];
Chris@4 278 foreach ($terms as $key => $term) {
Chris@4 279 $term_objects[$key] = taxonomy_term_load_multiple_by_name($term);
Chris@4 280 $term_objects[$key] = reset($term_objects[$key]);
Chris@4 281 }
Chris@4 282
Chris@4 283 // Get the node.
Chris@4 284 $node = $this->drupalGetNodeByTitle($edit['title[0][value]']);
Chris@4 285
Chris@4 286 // Test editing the node.
Chris@4 287 $this->drupalPostForm('node/' . $node->id() . '/edit', $edit, t('Save'));
Chris@4 288 foreach ($terms as $term) {
Chris@4 289 $this->assertText($term, 'The term was retained after edit and still appears on the node page.');
Chris@4 290 }
Chris@4 291
Chris@4 292 // Delete term 1 from the term edit page.
Chris@4 293 $this->drupalGet('taxonomy/term/' . $term_objects['term1']->id() . '/edit');
Chris@4 294 $this->clickLink(t('Delete'));
Chris@4 295 $this->drupalPostForm(NULL, NULL, t('Delete'));
Chris@4 296
Chris@4 297 // Delete term 2 from the term delete page.
Chris@4 298 $this->drupalGet('taxonomy/term/' . $term_objects['term2']->id() . '/delete');
Chris@4 299 $this->drupalPostForm(NULL, [], t('Delete'));
Chris@4 300 $term_names = [$term_objects['term3']->getName(), $term_objects['term4']->getName()];
Chris@4 301
Chris@4 302 $this->drupalGet('node/' . $node->id());
Chris@4 303
Chris@4 304 foreach ($term_names as $term_name) {
Chris@4 305 $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@4 306 }
Chris@4 307 $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@4 308 $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@4 309 }
Chris@4 310
Chris@4 311 /**
Chris@4 312 * Save, edit and delete a term using the user interface.
Chris@4 313 */
Chris@4 314 public function testTermInterface() {
Chris@4 315 \Drupal::service('module_installer')->install(['views']);
Chris@4 316 $edit = [
Chris@4 317 'name[0][value]' => $this->randomMachineName(12),
Chris@4 318 'description[0][value]' => $this->randomMachineName(100),
Chris@4 319 ];
Chris@4 320 // Explicitly set the parents field to 'root', to ensure that
Chris@4 321 // TermForm::save() handles the invalid term ID correctly.
Chris@4 322 $edit['parent[]'] = [0];
Chris@4 323
Chris@4 324 // Create the term to edit.
Chris@4 325 $this->drupalPostForm('admin/structure/taxonomy/manage/' . $this->vocabulary->id() . '/add', $edit, t('Save'));
Chris@4 326
Chris@4 327 $terms = taxonomy_term_load_multiple_by_name($edit['name[0][value]']);
Chris@4 328 $term = reset($terms);
Chris@4 329 $this->assertNotNull($term, 'Term found in database.');
Chris@4 330
Chris@4 331 // Submitting a term takes us to the add page; we need the List page.
Chris@4 332 $this->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary->id() . '/overview');
Chris@4 333
Chris@4 334 $this->clickLink(t('Edit'));
Chris@4 335
Chris@4 336 $this->assertRaw($edit['name[0][value]'], 'The randomly generated term name is present.');
Chris@4 337 $this->assertText($edit['description[0][value]'], 'The randomly generated term description is present.');
Chris@4 338
Chris@4 339 $edit = [
Chris@4 340 'name[0][value]' => $this->randomMachineName(14),
Chris@4 341 'description[0][value]' => $this->randomMachineName(102),
Chris@4 342 ];
Chris@4 343
Chris@4 344 // Edit the term.
Chris@4 345 $this->drupalPostForm('taxonomy/term/' . $term->id() . '/edit', $edit, t('Save'));
Chris@4 346
Chris@4 347 // Check that the term is still present at admin UI after edit.
Chris@4 348 $this->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary->id() . '/overview');
Chris@4 349 $this->assertText($edit['name[0][value]'], 'The randomly generated term name is present.');
Chris@4 350 $this->assertLink(t('Edit'));
Chris@4 351
Chris@4 352 // Check the term link can be clicked through to the term page.
Chris@4 353 $this->clickLink($edit['name[0][value]']);
Chris@4 354 $this->assertResponse(200, 'Term page can be accessed via the listing link.');
Chris@4 355
Chris@4 356 // View the term and check that it is correct.
Chris@4 357 $this->drupalGet('taxonomy/term/' . $term->id());
Chris@4 358 $this->assertText($edit['name[0][value]'], 'The randomly generated term name is present.');
Chris@4 359 $this->assertText($edit['description[0][value]'], 'The randomly generated term description is present.');
Chris@4 360
Chris@4 361 // Did this page request display a 'term-listing-heading'?
Chris@4 362 $this->assertTrue($this->xpath('//div[contains(@class, "field--name-description")]'), 'Term page displayed the term description element.');
Chris@4 363 // Check that it does NOT show a description when description is blank.
Chris@4 364 $term->setDescription(NULL);
Chris@4 365 $term->save();
Chris@4 366 $this->drupalGet('taxonomy/term/' . $term->id());
Chris@4 367 $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@4 368
Chris@4 369 // Check that the description value is processed.
Chris@4 370 $value = $this->randomMachineName();
Chris@4 371 $term->setDescription($value);
Chris@4 372 $term->save();
Chris@4 373 $this->assertEqual($term->description->processed, "<p>$value</p>\n");
Chris@4 374
Chris@4 375 // Check that the term feed page is working.
Chris@4 376 $this->drupalGet('taxonomy/term/' . $term->id() . '/feed');
Chris@4 377
Chris@4 378 // Delete the term.
Chris@4 379 $this->drupalGet('taxonomy/term/' . $term->id() . '/edit');
Chris@4 380 $this->clickLink(t('Delete'));
Chris@4 381 $this->drupalPostForm(NULL, NULL, t('Delete'));
Chris@4 382
Chris@4 383 // Assert that the term no longer exists.
Chris@4 384 $this->drupalGet('taxonomy/term/' . $term->id());
Chris@4 385 $this->assertResponse(404, 'The taxonomy term page was not found.');
Chris@4 386 }
Chris@4 387
Chris@4 388 /**
Chris@4 389 * Save, edit and delete a term using the user interface.
Chris@4 390 */
Chris@4 391 public function testTermReorder() {
Chris@4 392 $assert = $this->assertSession();
Chris@4 393 $this->createTerm($this->vocabulary);
Chris@4 394 $this->createTerm($this->vocabulary);
Chris@4 395 $this->createTerm($this->vocabulary);
Chris@4 396
Chris@4 397 $taxonomy_storage = $this->container->get('entity.manager')->getStorage('taxonomy_term');
Chris@4 398
Chris@4 399 // Fetch the created terms in the default alphabetical order, i.e. term1
Chris@4 400 // precedes term2 alphabetically, and term2 precedes term3.
Chris@4 401 $taxonomy_storage->resetCache();
Chris@4 402 list($term1, $term2, $term3) = $taxonomy_storage->loadTree($this->vocabulary->id(), 0, NULL, TRUE);
Chris@4 403
Chris@4 404 $this->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary->id() . '/overview');
Chris@4 405
Chris@4 406 // Each term has four hidden fields, "tid:1:0[tid]", "tid:1:0[parent]",
Chris@4 407 // "tid:1:0[depth]", and "tid:1:0[weight]". Change the order to term2,
Chris@4 408 // term3, term1 by setting weight property, make term3 a child of term2 by
Chris@4 409 // setting the parent and depth properties, and update all hidden fields.
Chris@4 410 $hidden_edit = [
Chris@4 411 'terms[tid:' . $term2->id() . ':0][term][tid]' => $term2->id(),
Chris@4 412 'terms[tid:' . $term2->id() . ':0][term][parent]' => 0,
Chris@4 413 'terms[tid:' . $term2->id() . ':0][term][depth]' => 0,
Chris@4 414 'terms[tid:' . $term3->id() . ':0][term][tid]' => $term3->id(),
Chris@4 415 'terms[tid:' . $term3->id() . ':0][term][parent]' => $term2->id(),
Chris@4 416 'terms[tid:' . $term3->id() . ':0][term][depth]' => 1,
Chris@4 417 'terms[tid:' . $term1->id() . ':0][term][tid]' => $term1->id(),
Chris@4 418 'terms[tid:' . $term1->id() . ':0][term][parent]' => 0,
Chris@4 419 'terms[tid:' . $term1->id() . ':0][term][depth]' => 0,
Chris@4 420 ];
Chris@4 421 // Because we can't post hidden form elements, we have to change them in
Chris@4 422 // code here, and then submit.
Chris@4 423 foreach ($hidden_edit as $field => $value) {
Chris@4 424 $node = $assert->hiddenFieldExists($field);
Chris@4 425 $node->setValue($value);
Chris@4 426 }
Chris@4 427 // Edit non-hidden elements within drupalPostForm().
Chris@4 428 $edit = [
Chris@4 429 'terms[tid:' . $term2->id() . ':0][weight]' => 0,
Chris@4 430 'terms[tid:' . $term3->id() . ':0][weight]' => 1,
Chris@4 431 'terms[tid:' . $term1->id() . ':0][weight]' => 2,
Chris@4 432 ];
Chris@4 433 $this->drupalPostForm(NULL, $edit, 'Save');
Chris@4 434
Chris@4 435 $taxonomy_storage->resetCache();
Chris@4 436 $terms = $taxonomy_storage->loadTree($this->vocabulary->id());
Chris@4 437 $this->assertEqual($terms[0]->tid, $term2->id(), 'Term 2 was moved above term 1.');
Chris@4 438 $this->assertEqual($terms[1]->parents, [$term2->id()], 'Term 3 was made a child of term 2.');
Chris@4 439 $this->assertEqual($terms[2]->tid, $term1->id(), 'Term 1 was moved below term 2.');
Chris@4 440
Chris@4 441 $this->drupalPostForm('admin/structure/taxonomy/manage/' . $this->vocabulary->id() . '/overview', [], t('Reset to alphabetical'));
Chris@4 442 // Submit confirmation form.
Chris@4 443 $this->drupalPostForm(NULL, [], t('Reset to alphabetical'));
Chris@4 444 // Ensure form redirected back to overview.
Chris@4 445 $this->assertUrl('admin/structure/taxonomy/manage/' . $this->vocabulary->id() . '/overview');
Chris@4 446
Chris@4 447 $taxonomy_storage->resetCache();
Chris@4 448 $terms = $taxonomy_storage->loadTree($this->vocabulary->id(), 0, NULL, TRUE);
Chris@4 449 $this->assertEqual($terms[0]->id(), $term1->id(), 'Term 1 was moved to back above term 2.');
Chris@4 450 $this->assertEqual($terms[1]->id(), $term2->id(), 'Term 2 was moved to back below term 1.');
Chris@4 451 $this->assertEqual($terms[2]->id(), $term3->id(), 'Term 3 is still below term 2.');
Chris@4 452 $this->assertEqual($terms[2]->parents, [$term2->id()], 'Term 3 is still a child of term 2.');
Chris@4 453 }
Chris@4 454
Chris@4 455 /**
Chris@4 456 * Test saving a term with multiple parents through the UI.
Chris@4 457 */
Chris@4 458 public function testTermMultipleParentsInterface() {
Chris@4 459 // Add a new term to the vocabulary so that we can have multiple parents.
Chris@4 460 $parent = $this->createTerm($this->vocabulary);
Chris@4 461
Chris@4 462 // Add a new term with multiple parents.
Chris@4 463 $edit = [
Chris@4 464 'name[0][value]' => $this->randomMachineName(12),
Chris@4 465 'description[0][value]' => $this->randomMachineName(100),
Chris@4 466 'parent[]' => [0, $parent->id()],
Chris@4 467 ];
Chris@4 468 // Save the new term.
Chris@4 469 $this->drupalPostForm('admin/structure/taxonomy/manage/' . $this->vocabulary->id() . '/add', $edit, t('Save'));
Chris@4 470
Chris@4 471 // Check that the term was successfully created.
Chris@4 472 $terms = taxonomy_term_load_multiple_by_name($edit['name[0][value]']);
Chris@4 473 $term = reset($terms);
Chris@4 474 $this->assertNotNull($term, 'Term found in database.');
Chris@4 475 $this->assertEqual($edit['name[0][value]'], $term->getName(), 'Term name was successfully saved.');
Chris@4 476 $this->assertEqual($edit['description[0][value]'], $term->getDescription(), 'Term description was successfully saved.');
Chris@4 477 // Check that the parent tid is still there. The other parent (<root>) is
Chris@4 478 // not added by \Drupal\taxonomy\TermStorageInterface::loadParents().
Chris@4 479 $parents = $this->container->get('entity.manager')->getStorage('taxonomy_term')->loadParents($term->id());
Chris@4 480 $parent = reset($parents);
Chris@4 481 $this->assertEqual($edit['parent[]'][1], $parent->id(), 'Term parents were successfully saved.');
Chris@4 482 }
Chris@4 483
Chris@4 484 /**
Chris@4 485 * Test taxonomy_term_load_multiple_by_name().
Chris@4 486 */
Chris@4 487 public function testTaxonomyGetTermByName() {
Chris@4 488 $term = $this->createTerm($this->vocabulary);
Chris@4 489
Chris@4 490 // Load the term with the exact name.
Chris@4 491 $terms = taxonomy_term_load_multiple_by_name($term->getName());
Chris@4 492 $this->assertTrue(isset($terms[$term->id()]), 'Term loaded using exact name.');
Chris@4 493
Chris@4 494 // Load the term with space concatenated.
Chris@4 495 $terms = taxonomy_term_load_multiple_by_name(' ' . $term->getName() . ' ');
Chris@4 496 $this->assertTrue(isset($terms[$term->id()]), 'Term loaded with extra whitespace.');
Chris@4 497
Chris@4 498 // Load the term with name uppercased.
Chris@4 499 $terms = taxonomy_term_load_multiple_by_name(strtoupper($term->getName()));
Chris@4 500 $this->assertTrue(isset($terms[$term->id()]), 'Term loaded with uppercased name.');
Chris@4 501
Chris@4 502 // Load the term with name lowercased.
Chris@4 503 $terms = taxonomy_term_load_multiple_by_name(strtolower($term->getName()));
Chris@4 504 $this->assertTrue(isset($terms[$term->id()]), 'Term loaded with lowercased name.');
Chris@4 505
Chris@4 506 // Try to load an invalid term name.
Chris@4 507 $terms = taxonomy_term_load_multiple_by_name('Banana');
Chris@4 508 $this->assertFalse($terms, 'No term loaded with an invalid name.');
Chris@4 509
Chris@4 510 // Try to load the term using a substring of the name.
Chris@4 511 $terms = taxonomy_term_load_multiple_by_name(mb_substr($term->getName(), 2), 'No term loaded with a substring of the name.');
Chris@4 512 $this->assertFalse($terms);
Chris@4 513
Chris@4 514 // Create a new term in a different vocabulary with the same name.
Chris@4 515 $new_vocabulary = $this->createVocabulary();
Chris@4 516 $new_term = Term::create([
Chris@4 517 'name' => $term->getName(),
Chris@4 518 'vid' => $new_vocabulary->id(),
Chris@4 519 ]);
Chris@4 520 $new_term->save();
Chris@4 521
Chris@4 522 // Load multiple terms with the same name.
Chris@4 523 $terms = taxonomy_term_load_multiple_by_name($term->getName());
Chris@4 524 $this->assertEqual(count($terms), 2, 'Two terms loaded with the same name.');
Chris@4 525
Chris@4 526 // Load single term when restricted to one vocabulary.
Chris@4 527 $terms = taxonomy_term_load_multiple_by_name($term->getName(), $this->vocabulary->id());
Chris@4 528 $this->assertEqual(count($terms), 1, 'One term loaded when restricted by vocabulary.');
Chris@4 529 $this->assertTrue(isset($terms[$term->id()]), 'Term loaded using exact name and vocabulary machine name.');
Chris@4 530
Chris@4 531 // Create a new term with another name.
Chris@4 532 $term2 = $this->createTerm($this->vocabulary);
Chris@4 533
Chris@4 534 // Try to load a term by name that doesn't exist in this vocabulary but
Chris@4 535 // exists in another vocabulary.
Chris@4 536 $terms = taxonomy_term_load_multiple_by_name($term2->getName(), $new_vocabulary->id());
Chris@4 537 $this->assertFalse($terms, 'Invalid term name restricted by vocabulary machine name not loaded.');
Chris@4 538
Chris@4 539 // Try to load terms filtering by a non-existing vocabulary.
Chris@4 540 $terms = taxonomy_term_load_multiple_by_name($term2->getName(), 'non_existing_vocabulary');
Chris@4 541 $this->assertEqual(count($terms), 0, 'No terms loaded when restricted by a non-existing vocabulary.');
Chris@4 542 }
Chris@4 543
Chris@4 544 /**
Chris@4 545 * Tests that editing and saving a node with no changes works correctly.
Chris@4 546 */
Chris@4 547 public function testReSavingTags() {
Chris@4 548 // Enable tags in the vocabulary.
Chris@4 549 $field = $this->field;
Chris@4 550 entity_get_form_display($field->getTargetEntityTypeId(), $field->getTargetBundle(), 'default')
Chris@4 551 ->setComponent($field->getName(), [
Chris@4 552 'type' => 'entity_reference_autocomplete_tags',
Chris@4 553 ])
Chris@4 554 ->save();
Chris@4 555
Chris@4 556 // Create a term and a node using it.
Chris@4 557 $term = $this->createTerm($this->vocabulary);
Chris@4 558 $edit = [];
Chris@4 559 $edit['title[0][value]'] = $this->randomMachineName(8);
Chris@4 560 $edit['body[0][value]'] = $this->randomMachineName(16);
Chris@4 561 $edit[$this->field->getName() . '[target_id]'] = $term->getName();
Chris@4 562 $this->drupalPostForm('node/add/article', $edit, t('Save'));
Chris@4 563
Chris@4 564 // Check that the term is displayed when editing and saving the node with no
Chris@4 565 // changes.
Chris@4 566 $this->clickLink(t('Edit'));
Chris@4 567 $this->assertRaw($term->getName(), 'Term is displayed when editing the node.');
Chris@4 568 $this->drupalPostForm(NULL, [], t('Save'));
Chris@4 569 $this->assertRaw($term->getName(), 'Term is displayed after saving the node with no changes.');
Chris@4 570 }
Chris@4 571
Chris@4 572 /**
Chris@4 573 * Check the breadcrumb on edit and delete a term page.
Chris@4 574 */
Chris@4 575 public function testTermBreadcrumbs() {
Chris@4 576 $edit = [
Chris@4 577 'name[0][value]' => $this->randomMachineName(14),
Chris@4 578 'description[0][value]' => $this->randomMachineName(100),
Chris@4 579 'parent[]' => [0],
Chris@4 580 ];
Chris@4 581
Chris@4 582 // Create the term.
Chris@4 583 $this->drupalPostForm('admin/structure/taxonomy/manage/' . $this->vocabulary->id() . '/add', $edit, 'Save');
Chris@4 584
Chris@4 585 $terms = taxonomy_term_load_multiple_by_name($edit['name[0][value]']);
Chris@4 586 $term = reset($terms);
Chris@4 587 $this->assertNotNull($term, 'Term found in database.');
Chris@4 588
Chris@4 589 // Check the breadcrumb on the term edit page.
Chris@4 590 $this->drupalGet('taxonomy/term/' . $term->id() . '/edit');
Chris@4 591 $breadcrumbs = $this->getSession()->getPage()->findAll('css', 'nav.breadcrumb ol li a');
Chris@4 592 $this->assertIdentical(count($breadcrumbs), 2, 'The breadcrumbs are present on the page.');
Chris@4 593 $this->assertIdentical($breadcrumbs[0]->getText(), 'Home', 'First breadcrumb text is Home');
Chris@4 594 $this->assertIdentical($breadcrumbs[1]->getText(), $term->label(), 'Second breadcrumb text is term name on term edit page.');
Chris@4 595 $this->assertEscaped($breadcrumbs[1]->getText(), 'breadcrumbs displayed and escaped.');
Chris@4 596
Chris@4 597 // Check the breadcrumb on the term delete page.
Chris@4 598 $this->drupalGet('taxonomy/term/' . $term->id() . '/delete');
Chris@4 599 $breadcrumbs = $this->getSession()->getPage()->findAll('css', 'nav.breadcrumb ol li a');
Chris@4 600 $this->assertIdentical(count($breadcrumbs), 2, 'The breadcrumbs are present on the page.');
Chris@4 601 $this->assertIdentical($breadcrumbs[0]->getText(), 'Home', 'First breadcrumb text is Home');
Chris@4 602 $this->assertIdentical($breadcrumbs[1]->getText(), $term->label(), 'Second breadcrumb text is term name on term delete page.');
Chris@4 603 $this->assertEscaped($breadcrumbs[1]->getText(), 'breadcrumbs displayed and escaped.');
Chris@4 604 }
Chris@4 605
Chris@4 606 }