You are here

class TermTest in Zircon Profile 8

Same name in this branch
  1. 8 core/modules/taxonomy/src/Tests/TermTest.php \Drupal\taxonomy\Tests\TermTest
  2. 8 core/modules/taxonomy/tests/src/Unit/Migrate/TermTest.php \Drupal\Tests\taxonomy\Unit\Migrate\TermTest
Same name and namespace in other branches
  1. 8.0 core/modules/taxonomy/src/Tests/TermTest.php \Drupal\taxonomy\Tests\TermTest

Tests load, save and delete for taxonomy terms.

@group taxonomy

Hierarchy

Expanded class hierarchy of TermTest

File

core/modules/taxonomy/src/Tests/TermTest.php, line 22
Contains \Drupal\taxonomy\Tests\TermTest.

Namespace

Drupal\taxonomy\Tests
View source
class TermTest extends TaxonomyTestBase {

  /**
   * Vocabulary for testing.
   *
   * @var \Drupal\taxonomy\VocabularyInterface
   */
  protected $vocabulary;

  /**
   * Taxonomy term reference field for testing.
   *
   * @var \Drupal\field\FieldConfigInterface
   */
  protected $field;

  /**
   * Modules to enable.
   *
   * @var string[]
   */
  public static $modules = [
    'block',
  ];

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    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 = array(
      'target_bundles' => array(
        $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);
    entity_get_form_display('node', 'article', 'default')
      ->setComponent($field_name, array(
      'type' => 'options_select',
    ))
      ->save();
    entity_get_display('node', 'article', 'default')
      ->setComponent($field_name, array(
      'type' => 'entity_reference_label',
    ))
      ->save();
  }

  /**
   * Test terms in a single and multiple hierarchy.
   */
  function testTaxonomyTermHierarchy() {

    // Create two taxonomy terms.
    $term1 = $this
      ->createTerm($this->vocabulary);
    $term2 = $this
      ->createTerm($this->vocabulary);

    // Get the taxonomy storage.
    $taxonomy_storage = $this->container
      ->get('entity.manager')
      ->getStorage('taxonomy_term');

    // Check that hierarchy is flat.
    $vocabulary = Vocabulary::load($this->vocabulary
      ->id());
    $this
      ->assertEqual(0, $vocabulary
      ->getHierarchy(), 'Vocabulary is flat.');

    // Edit $term2, setting $term1 as parent.
    $edit = array();
    $edit['parent[]'] = array(
      $term1
        ->id(),
    );
    $this
      ->drupalPostForm('taxonomy/term/' . $term2
      ->id() . '/edit', $edit, t('Save'));

    // Check the hierarchy.
    $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.');

    // Load and save a term, confirming that parents are still set.
    $term = Term::load($term2
      ->id());
    $term
      ->save();
    $parents = $taxonomy_storage
      ->loadParents($term2
      ->id());
    $this
      ->assertTrue(isset($parents[$term1
      ->id()]), 'Parent found correctly.');

    // Create a third term and save this as a parent of term2.
    $term3 = $this
      ->createTerm($this->vocabulary);
    $term2->parent = array(
      $term1
        ->id(),
      $term3
        ->id(),
    );
    $term2
      ->save();
    $parents = $taxonomy_storage
      ->loadParents($term2
      ->id());
    $this
      ->assertTrue(isset($parents[$term1
      ->id()]) && isset($parents[$term3
      ->id()]), 'Both parents found successfully.');
  }

  /**
   * Tests that many terms with parents show on each page
   */
  function testTaxonomyTermChildTerms() {

    // Set limit to 10 terms per page. Set variable to 9 so 10 terms appear.
    $this
      ->config('taxonomy.settings')
      ->set('terms_per_page_admin', '9')
      ->save();
    $term1 = $this
      ->createTerm($this->vocabulary);
    $terms_array = '';
    $taxonomy_storage = $this->container
      ->get('entity.manager')
      ->getStorage('taxonomy_term');

    // Create 40 terms. Terms 1-12 get parent of $term1. All others are
    // individual terms.
    for ($x = 1; $x <= 40; $x++) {
      $edit = array();

      // Set terms in order so we know which terms will be on which pages.
      $edit['weight'] = $x;

      // Set terms 1-20 to be children of first term created.
      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());
    }

    // Get Page 1.
    $this
      ->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary
      ->id() . '/overview');
    $this
      ->assertText($term1
      ->getName(), 'Parent Term is displayed on Page 1');
    for ($x = 1; $x <= 13; $x++) {
      $this
        ->assertText($terms_array[$x]
        ->getName(), $terms_array[$x]
        ->getName() . ' found on Page 1');
    }

    // Get Page 2.
    $this
      ->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary
      ->id() . '/overview', array(
      'query' => array(
        'page' => 1,
      ),
    ));
    $this
      ->assertText($term1
      ->getName(), 'Parent Term is displayed on Page 2');
    for ($x = 1; $x <= 18; $x++) {
      $this
        ->assertText($terms_array[$x]
        ->getName(), $terms_array[$x]
        ->getName() . ' found on Page 2');
    }

    // Get Page 3.
    $this
      ->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary
      ->id() . '/overview', array(
      'query' => array(
        'page' => 2,
      ),
    ));
    $this
      ->assertNoText($term1
      ->getName(), 'Parent Term is not displayed on Page 3');
    for ($x = 1; $x <= 17; $x++) {
      $this
        ->assertNoText($terms_array[$x]
        ->getName(), $terms_array[$x]
        ->getName() . ' not found on Page 3');
    }
    for ($x = 18; $x <= 25; $x++) {
      $this
        ->assertText($terms_array[$x]
        ->getName(), $terms_array[$x]
        ->getName() . ' found on Page 3');
    }
  }

  /**
   * Test that hook_node_$op implementations work correctly.
   *
   * Save & edit a node and assert that taxonomy terms are saved/loaded properly.
   */
  function testTaxonomyNode() {

    // Create two taxonomy terms.
    $term1 = $this
      ->createTerm($this->vocabulary);
    $term2 = $this
      ->createTerm($this->vocabulary);

    // Post an article.
    $edit = array();
    $edit['title[0][value]'] = $this
      ->randomMachineName();
    $edit['body[0][value]'] = $this
      ->randomMachineName();
    $edit[$this->field
      ->getName() . '[]'] = $term1
      ->id();
    $this
      ->drupalPostForm('node/add/article', $edit, t('Save'));

    // Check that the term is displayed when the node is viewed.
    $node = $this
      ->drupalGetNodeByTitle($edit['title[0][value]']);
    $this
      ->drupalGet('node/' . $node
      ->id());
    $this
      ->assertText($term1
      ->getName(), 'Term is displayed when viewing the node.');
    $this
      ->clickLink(t('Edit'));
    $this
      ->assertText($term1
      ->getName(), 'Term is displayed when editing the node.');
    $this
      ->drupalPostForm(NULL, array(), t('Save'));
    $this
      ->assertText($term1
      ->getName(), 'Term is displayed after saving the node with no changes.');

    // Edit the node with a different term.
    $edit[$this->field
      ->getName() . '[]'] = $term2
      ->id();
    $this
      ->drupalPostForm('node/' . $node
      ->id() . '/edit', $edit, t('Save'));
    $this
      ->drupalGet('node/' . $node
      ->id());
    $this
      ->assertText($term2
      ->getName(), 'Term is displayed when viewing the node.');

    // Preview the node.
    $this
      ->drupalPostForm('node/' . $node
      ->id() . '/edit', $edit, t('Preview'));
    $this
      ->assertUniqueText($term2
      ->getName(), 'Term is displayed when previewing the node.');
    $this
      ->drupalPostForm('node/' . $node
      ->id() . '/edit', NULL, t('Preview'));
    $this
      ->assertUniqueText($term2
      ->getName(), 'Term is displayed when previewing the node again.');
  }

  /**
   * Test term creation with a free-tagging vocabulary from the node form.
   */
  function testNodeTermCreationAndDeletion() {

    // Enable tags in the vocabulary.
    $field = $this->field;
    entity_get_form_display($field
      ->getTargetEntityTypeId(), $field
      ->getTargetBundle(), 'default')
      ->setComponent($field
      ->getName(), array(
      'type' => 'entity_reference_autocomplete_tags',
      'settings' => array(
        'placeholder' => 'Start typing here.',
      ),
    ))
      ->save();

    // Prefix the terms with a letter to ensure there is no clash in the first
    // three letters.
    // @see https://www.drupal.org/node/2397691
    $terms = array(
      'term1' => 'a' . $this
        ->randomMachineName(),
      'term2' => 'b' . $this
        ->randomMachineName(),
      'term3' => 'c' . $this
        ->randomMachineName() . ', ' . $this
        ->randomMachineName(),
      'term4' => 'd' . $this
        ->randomMachineName(),
    );
    $edit = array();
    $edit['title[0][value]'] = $this
      ->randomMachineName();
    $edit['body[0][value]'] = $this
      ->randomMachineName();

    // Insert the terms in a comma separated list. Vocabulary 1 is a
    // free-tagging field created by the default profile.
    $edit[$field
      ->getName() . '[target_id]'] = Tags::implode($terms);

    // Verify the placeholder is there.
    $this
      ->drupalGet('node/add/article');
    $this
      ->assertRaw('placeholder="Start typing here."', 'Placeholder is present.');

    // Preview and verify the terms appear but are not created.
    $this
      ->drupalPostForm(NULL, $edit, t('Preview'));
    foreach ($terms as $term) {
      $this
        ->assertText($term, 'The term appears on the node preview.');
    }
    $tree = $this->container
      ->get('entity.manager')
      ->getStorage('taxonomy_term')
      ->loadTree($this->vocabulary
      ->id());
    $this
      ->assertTrue(empty($tree), 'The terms are not created on preview.');

    // taxonomy.module does not maintain its static caches.
    taxonomy_terms_static_reset();

    // Save, creating the terms.
    $this
      ->drupalPostForm('node/add/article', $edit, t('Save'));
    $this
      ->assertRaw(t('@type %title has been created.', array(
      '@type' => t('Article'),
      '%title' => $edit['title[0][value]'],
    )), 'The node was created successfully.');
    foreach ($terms as $term) {
      $this
        ->assertText($term, 'The term was saved and appears on the node page.');
    }

    // Get the created terms.
    $term_objects = array();
    foreach ($terms as $key => $term) {
      $term_objects[$key] = taxonomy_term_load_multiple_by_name($term);
      $term_objects[$key] = reset($term_objects[$key]);
    }

    // Get the node.
    $node = $this
      ->drupalGetNodeByTitle($edit['title[0][value]']);

    // Test editing the node.
    $this
      ->drupalPostForm('node/' . $node
      ->id() . '/edit', $edit, t('Save'));
    foreach ($terms as $term) {
      $this
        ->assertText($term, 'The term was retained after edit and still appears on the node page.');
    }

    // Delete term 1 from the term edit page.
    $this
      ->drupalGet('taxonomy/term/' . $term_objects['term1']
      ->id() . '/edit');
    $this
      ->clickLink(t('Delete'));
    $this
      ->drupalPostForm(NULL, NULL, t('Delete'));

    // Delete term 2 from the term delete page.
    $this
      ->drupalGet('taxonomy/term/' . $term_objects['term2']
      ->id() . '/delete');
    $this
      ->drupalPostForm(NULL, array(), t('Delete'));
    $term_names = array(
      $term_objects['term3']
        ->getName(),
      $term_objects['term4']
        ->getName(),
    );
    $this
      ->drupalGet('node/' . $node
      ->id());
    foreach ($term_names as $term_name) {
      $this
        ->assertText($term_name, format_string('The term %name appears on the node page after two terms, %deleted1 and %deleted2, were deleted.', array(
        '%name' => $term_name,
        '%deleted1' => $term_objects['term1']
          ->getName(),
        '%deleted2' => $term_objects['term2']
          ->getName(),
      )));
    }
    $this
      ->assertNoText($term_objects['term1']
      ->getName(), format_string('The deleted term %name does not appear on the node page.', array(
      '%name' => $term_objects['term1']
        ->getName(),
    )));
    $this
      ->assertNoText($term_objects['term2']
      ->getName(), format_string('The deleted term %name does not appear on the node page.', array(
      '%name' => $term_objects['term2']
        ->getName(),
    )));
  }

  /**
   * Save, edit and delete a term using the user interface.
   */
  function testTermInterface() {
    \Drupal::service('module_installer')
      ->install(array(
      'views',
    ));
    $edit = array(
      'name[0][value]' => $this
        ->randomMachineName(12),
      'description[0][value]' => $this
        ->randomMachineName(100),
    );

    // Explicitly set the parents field to 'root', to ensure that
    // TermForm::save() handles the invalid term ID correctly.
    $edit['parent[]'] = array(
      0,
    );

    // Create the term to edit.
    $this
      ->drupalPostForm('admin/structure/taxonomy/manage/' . $this->vocabulary
      ->id() . '/add', $edit, t('Save'));
    $terms = taxonomy_term_load_multiple_by_name($edit['name[0][value]']);
    $term = reset($terms);
    $this
      ->assertNotNull($term, 'Term found in database.');

    // Submitting a term takes us to the add page; we need the List page.
    $this
      ->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary
      ->id() . '/overview');
    $this
      ->clickLink(t('Edit'));
    $this
      ->assertRaw($edit['name[0][value]'], 'The randomly generated term name is present.');
    $this
      ->assertText($edit['description[0][value]'], 'The randomly generated term description is present.');
    $edit = array(
      'name[0][value]' => $this
        ->randomMachineName(14),
      'description[0][value]' => $this
        ->randomMachineName(102),
    );

    // Edit the term.
    $this
      ->drupalPostForm('taxonomy/term/' . $term
      ->id() . '/edit', $edit, t('Save'));

    // Check that the term is still present at admin UI after edit.
    $this
      ->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary
      ->id() . '/overview');
    $this
      ->assertText($edit['name[0][value]'], 'The randomly generated term name is present.');
    $this
      ->assertLink(t('Edit'));

    // Check the term link can be clicked through to the term page.
    $this
      ->clickLink($edit['name[0][value]']);
    $this
      ->assertResponse(200, 'Term page can be accessed via the listing link.');

    // View the term and check that it is correct.
    $this
      ->drupalGet('taxonomy/term/' . $term
      ->id());
    $this
      ->assertText($edit['name[0][value]'], 'The randomly generated term name is present.');
    $this
      ->assertText($edit['description[0][value]'], 'The randomly generated term description is present.');

    // Did this page request display a 'term-listing-heading'?
    $this
      ->assertTrue($this
      ->xpath('//div[contains(@class, "field--name-description")]'), 'Term page displayed the term description element.');

    // Check that it does NOT show a description when description is blank.
    $term
      ->setDescription(NULL);
    $term
      ->save();
    $this
      ->drupalGet('taxonomy/term/' . $term
      ->id());
    $this
      ->assertFalse($this
      ->xpath('//div[contains(@class, "field--entity-taxonomy-term--description")]'), 'Term page did not display the term description when description was blank.');

    // Check that the description value is processed.
    $value = $this
      ->randomMachineName();
    $term
      ->setDescription($value);
    $term
      ->save();
    $this
      ->assertEqual($term->description->processed, "<p>{$value}</p>\n");

    // Check that the term feed page is working.
    $this
      ->drupalGet('taxonomy/term/' . $term
      ->id() . '/feed');

    // Delete the term.
    $this
      ->drupalGet('taxonomy/term/' . $term
      ->id() . '/edit');
    $this
      ->clickLink(t('Delete'));
    $this
      ->drupalPostForm(NULL, NULL, t('Delete'));

    // Assert that the term no longer exists.
    $this
      ->drupalGet('taxonomy/term/' . $term
      ->id());
    $this
      ->assertResponse(404, 'The taxonomy term page was not found.');
  }

  /**
   * Save, edit and delete a term using the user interface.
   */
  function testTermReorder() {
    $this
      ->createTerm($this->vocabulary);
    $this
      ->createTerm($this->vocabulary);
    $this
      ->createTerm($this->vocabulary);
    $taxonomy_storage = $this->container
      ->get('entity.manager')
      ->getStorage('taxonomy_term');

    // Fetch the created terms in the default alphabetical order, i.e. term1
    // precedes term2 alphabetically, and term2 precedes term3.
    $taxonomy_storage
      ->resetCache();
    list($term1, $term2, $term3) = $taxonomy_storage
      ->loadTree($this->vocabulary
      ->id(), 0, NULL, TRUE);
    $this
      ->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary
      ->id() . '/overview');

    // Each term has four hidden fields, "tid:1:0[tid]", "tid:1:0[parent]",
    // "tid:1:0[depth]", and "tid:1:0[weight]". Change the order to term2,
    // term3, term1 by setting weight property, make term3 a child of term2 by
    // setting the parent and depth properties, and update all hidden fields.
    $edit = array(
      '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:' . $term2
        ->id() . ':0][weight]' => 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:' . $term3
        ->id() . ':0][weight]' => 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,
      'terms[tid:' . $term1
        ->id() . ':0][weight]' => 2,
    );
    $this
      ->drupalPostForm(NULL, $edit, t('Save'));
    $taxonomy_storage
      ->resetCache();
    $terms = $taxonomy_storage
      ->loadTree($this->vocabulary
      ->id());
    $this
      ->assertEqual($terms[0]->tid, $term2
      ->id(), 'Term 2 was moved above term 1.');
    $this
      ->assertEqual($terms[1]->parents, array(
      $term2
        ->id(),
    ), 'Term 3 was made a child of term 2.');
    $this
      ->assertEqual($terms[2]->tid, $term1
      ->id(), 'Term 1 was moved below term 2.');
    $this
      ->drupalPostForm('admin/structure/taxonomy/manage/' . $this->vocabulary
      ->id() . '/overview', array(), t('Reset to alphabetical'));

    // Submit confirmation form.
    $this
      ->drupalPostForm(NULL, array(), t('Reset to alphabetical'));

    // Ensure form redirected back to overview.
    $this
      ->assertUrl('admin/structure/taxonomy/manage/' . $this->vocabulary
      ->id() . '/overview');
    $taxonomy_storage
      ->resetCache();
    $terms = $taxonomy_storage
      ->loadTree($this->vocabulary
      ->id(), 0, NULL, TRUE);
    $this
      ->assertEqual($terms[0]
      ->id(), $term1
      ->id(), 'Term 1 was moved to back above term 2.');
    $this
      ->assertEqual($terms[1]
      ->id(), $term2
      ->id(), 'Term 2 was moved to back below term 1.');
    $this
      ->assertEqual($terms[2]
      ->id(), $term3
      ->id(), 'Term 3 is still below term 2.');
    $this
      ->assertEqual($terms[2]->parents, array(
      $term2
        ->id(),
    ), 'Term 3 is still a child of term 2.');
  }

  /**
   * Test saving a term with multiple parents through the UI.
   */
  function testTermMultipleParentsInterface() {

    // Add a new term to the vocabulary so that we can have multiple parents.
    $parent = $this
      ->createTerm($this->vocabulary);

    // Add a new term with multiple parents.
    $edit = array(
      'name[0][value]' => $this
        ->randomMachineName(12),
      'description[0][value]' => $this
        ->randomMachineName(100),
      'parent[]' => array(
        0,
        $parent
          ->id(),
      ),
    );

    // Save the new term.
    $this
      ->drupalPostForm('admin/structure/taxonomy/manage/' . $this->vocabulary
      ->id() . '/add', $edit, t('Save'));

    // Check that the term was successfully created.
    $terms = taxonomy_term_load_multiple_by_name($edit['name[0][value]']);
    $term = reset($terms);
    $this
      ->assertNotNull($term, 'Term found in database.');
    $this
      ->assertEqual($edit['name[0][value]'], $term
      ->getName(), 'Term name was successfully saved.');
    $this
      ->assertEqual($edit['description[0][value]'], $term
      ->getDescription(), 'Term description was successfully saved.');

    // Check that the parent tid is still there. The other parent (<root>) is
    // not added by \Drupal\taxonomy\TermStorageInterface::loadParents().
    $parents = $this->container
      ->get('entity.manager')
      ->getStorage('taxonomy_term')
      ->loadParents($term
      ->id());
    $parent = reset($parents);
    $this
      ->assertEqual($edit['parent[]'][1], $parent
      ->id(), 'Term parents were successfully saved.');
  }

  /**
   * Test taxonomy_term_load_multiple_by_name().
   */
  function testTaxonomyGetTermByName() {
    $term = $this
      ->createTerm($this->vocabulary);

    // Load the term with the exact name.
    $terms = taxonomy_term_load_multiple_by_name($term
      ->getName());
    $this
      ->assertTrue(isset($terms[$term
      ->id()]), 'Term loaded using exact name.');

    // Load the term with space concatenated.
    $terms = taxonomy_term_load_multiple_by_name('  ' . $term
      ->getName() . '   ');
    $this
      ->assertTrue(isset($terms[$term
      ->id()]), 'Term loaded with extra whitespace.');

    // Load the term with name uppercased.
    $terms = taxonomy_term_load_multiple_by_name(strtoupper($term
      ->getName()));
    $this
      ->assertTrue(isset($terms[$term
      ->id()]), 'Term loaded with uppercased name.');

    // Load the term with name lowercased.
    $terms = taxonomy_term_load_multiple_by_name(strtolower($term
      ->getName()));
    $this
      ->assertTrue(isset($terms[$term
      ->id()]), 'Term loaded with lowercased name.');

    // Try to load an invalid term name.
    $terms = taxonomy_term_load_multiple_by_name('Banana');
    $this
      ->assertFalse($terms, 'No term loaded with an invalid name.');

    // Try to load the term using a substring of the name.
    $terms = taxonomy_term_load_multiple_by_name(Unicode::substr($term
      ->getName(), 2), 'No term loaded with a substring of the name.');
    $this
      ->assertFalse($terms);

    // Create a new term in a different vocabulary with the same name.
    $new_vocabulary = $this
      ->createVocabulary();
    $new_term = entity_create('taxonomy_term', array(
      'name' => $term
        ->getName(),
      'vid' => $new_vocabulary
        ->id(),
    ));
    $new_term
      ->save();

    // Load multiple terms with the same name.
    $terms = taxonomy_term_load_multiple_by_name($term
      ->getName());
    $this
      ->assertEqual(count($terms), 2, 'Two terms loaded with the same name.');

    // Load single term when restricted to one vocabulary.
    $terms = taxonomy_term_load_multiple_by_name($term
      ->getName(), $this->vocabulary
      ->id());
    $this
      ->assertEqual(count($terms), 1, 'One term loaded when restricted by vocabulary.');
    $this
      ->assertTrue(isset($terms[$term
      ->id()]), 'Term loaded using exact name and vocabulary machine name.');

    // Create a new term with another name.
    $term2 = $this
      ->createTerm($this->vocabulary);

    // Try to load a term by name that doesn't exist in this vocabulary but
    // exists in another vocabulary.
    $terms = taxonomy_term_load_multiple_by_name($term2
      ->getName(), $new_vocabulary
      ->id());
    $this
      ->assertFalse($terms, 'Invalid term name restricted by vocabulary machine name not loaded.');

    // Try to load terms filtering by a non-existing vocabulary.
    $terms = taxonomy_term_load_multiple_by_name($term2
      ->getName(), 'non_existing_vocabulary');
    $this
      ->assertEqual(count($terms), 0, 'No terms loaded when restricted by a non-existing vocabulary.');
  }

  /**
   * Tests that editing and saving a node with no changes works correctly.
   */
  function testReSavingTags() {

    // Enable tags in the vocabulary.
    $field = $this->field;
    entity_get_form_display($field
      ->getTargetEntityTypeId(), $field
      ->getTargetBundle(), 'default')
      ->setComponent($field
      ->getName(), array(
      'type' => 'entity_reference_autocomplete_tags',
    ))
      ->save();

    // Create a term and a node using it.
    $term = $this
      ->createTerm($this->vocabulary);
    $edit = array();
    $edit['title[0][value]'] = $this
      ->randomMachineName(8);
    $edit['body[0][value]'] = $this
      ->randomMachineName(16);
    $edit[$this->field
      ->getName() . '[target_id]'] = $term
      ->getName();
    $this
      ->drupalPostForm('node/add/article', $edit, t('Save'));

    // Check that the term is displayed when editing and saving the node with no
    // changes.
    $this
      ->clickLink(t('Edit'));
    $this
      ->assertRaw($term
      ->getName(), 'Term is displayed when editing the node.');
    $this
      ->drupalPostForm(NULL, array(), t('Save'));
    $this
      ->assertRaw($term
      ->getName(), 'Term is displayed after saving the node with no changes.');
  }

}

Members

Namesort descending Modifiers Type Description Overrides
AssertContentTrait::$content protected property The current raw content.
AssertContentTrait::$drupalSettings protected property The drupalSettings value from the current raw $content.
AssertContentTrait::$elements protected property The XML structure parsed from the current raw $content. 2
AssertContentTrait::$plainTextContent protected property The plain-text content of raw $content (text nodes).
AssertContentTrait::assertEscaped protected function Passes if the raw text IS found escaped on the loaded page, fail otherwise.
AssertContentTrait::assertField protected function Asserts that a field exists with the given name or ID.
AssertContentTrait::assertFieldById protected function Asserts that a field exists with the given ID and value.
AssertContentTrait::assertFieldByName protected function Asserts that a field exists with the given name and value.
AssertContentTrait::assertFieldByXPath protected function Asserts that a field exists in the current page by the given XPath.
AssertContentTrait::assertFieldChecked protected function Asserts that a checkbox field in the current page is checked.
AssertContentTrait::assertFieldsByValue protected function Asserts that a field exists in the current page with a given Xpath result.
AssertContentTrait::assertLink protected function Passes if a link with the specified label is found.
AssertContentTrait::assertLinkByHref protected function Passes if a link containing a given href (part) is found.
AssertContentTrait::assertNoDuplicateIds protected function Asserts that each HTML ID is used for just a single element.
AssertContentTrait::assertNoEscaped protected function Passes if the raw text IS NOT found escaped on the loaded page, fail otherwise.
AssertContentTrait::assertNoField protected function Asserts that a field does not exist with the given name or ID.
AssertContentTrait::assertNoFieldById protected function Asserts that a field does not exist with the given ID and value.
AssertContentTrait::assertNoFieldByName protected function Asserts that a field does not exist with the given name and value.
AssertContentTrait::assertNoFieldByXPath protected function Asserts that a field does not exist or its value does not match, by XPath.
AssertContentTrait::assertNoFieldChecked protected function Asserts that a checkbox field in the current page is not checked.
AssertContentTrait::assertNoLink protected function Passes if a link with the specified label is not found.
AssertContentTrait::assertNoLinkByHref protected function Passes if a link containing a given href (part) is not found.
AssertContentTrait::assertNoLinkByHrefInMainRegion protected function Passes if a link containing a given href is not found in the main region.
AssertContentTrait::assertNoOption protected function Asserts that a select option in the current page does not exist.
AssertContentTrait::assertNoOptionSelected protected function Asserts that a select option in the current page is not checked.
AssertContentTrait::assertNoPattern protected function Triggers a pass if the perl regex pattern is not found in raw content.
AssertContentTrait::assertNoRaw protected function Passes if the raw text is NOT found on the loaded page, fail otherwise.
AssertContentTrait::assertNoText protected function Passes if the page (with HTML stripped) does not contains the text.
AssertContentTrait::assertNoTitle protected function Pass if the page title is not the given string.
AssertContentTrait::assertNoUniqueText protected function Passes if the text is found MORE THAN ONCE on the text version of the page.
AssertContentTrait::assertOption protected function Asserts that a select option in the current page exists.
AssertContentTrait::assertOptionSelected protected function Asserts that a select option in the current page is checked.
AssertContentTrait::assertOptionSelectedWithDrupalSelector protected function Asserts that a select option in the current page is checked.
AssertContentTrait::assertOptionWithDrupalSelector protected function Asserts that a select option in the current page exists.
AssertContentTrait::assertPattern protected function Triggers a pass if the Perl regex pattern is found in the raw content.
AssertContentTrait::assertRaw protected function Passes if the raw text IS found on the loaded page, fail otherwise.
AssertContentTrait::assertText protected function Passes if the page (with HTML stripped) contains the text.
AssertContentTrait::assertTextHelper protected function Helper for assertText and assertNoText.
AssertContentTrait::assertTextPattern protected function Asserts that a Perl regex pattern is found in the plain-text content.
AssertContentTrait::assertThemeOutput protected function Asserts themed output.
AssertContentTrait::assertTitle protected function Pass if the page title is the given string.
AssertContentTrait::assertUniqueText protected function Passes if the text is found ONLY ONCE on the text version of the page.
AssertContentTrait::assertUniqueTextHelper protected function Helper for assertUniqueText and assertNoUniqueText.
AssertContentTrait::buildXPathQuery protected function Builds an XPath query.
AssertContentTrait::constructFieldXpath protected function Helper: Constructs an XPath for the given set of attributes and value.
AssertContentTrait::cssSelect protected function Searches elements using a CSS selector in the raw content.
AssertContentTrait::getAllOptions protected function Get all option elements, including nested options, in a select.
AssertContentTrait::getDrupalSettings protected function Gets the value of drupalSettings for the currently-loaded page.
AssertContentTrait::getRawContent protected function Gets the current raw content.
AssertContentTrait::getSelectedItem protected function Get the selected value from a select field.
AssertContentTrait::getTextContent protected function Retrieves the plain-text content from the current raw content.
AssertContentTrait::getUrl protected function Get the current URL from the cURL handler. 1
AssertContentTrait::parse protected function Parse content returned from curlExec using DOM and SimpleXML.
AssertContentTrait::removeWhiteSpace protected function Removes all white-space between HTML tags from the raw content.
AssertContentTrait::setDrupalSettings protected function Sets the value of drupalSettings for the currently-loaded page.
AssertContentTrait::setRawContent protected function Sets the raw content (e.g. HTML).
AssertContentTrait::xpath protected function Performs an xpath search on the contents of the internal browser.
AssertHelperTrait::castSafeStrings protected function Casts MarkupInterface objects into strings.
EntityReferenceTestTrait::createEntityReferenceField protected function Creates a field of an entity reference field storage on the specified bundle.
RandomGeneratorTrait::$randomGenerator protected property The random generator.
RandomGeneratorTrait::getRandomGenerator protected function Gets the random generator for the utility methods.
RandomGeneratorTrait::randomMachineName protected function Generates a unique random string containing letters and numbers.
RandomGeneratorTrait::randomObject public function Generates a random PHP object.
RandomGeneratorTrait::randomString public function Generates a pseudo-random string of ASCII characters of codes 32 to 126.
RandomGeneratorTrait::randomStringValidate public function Callback for random string validation.
SessionTestTrait::$sessionName protected property The name of the session cookie.
SessionTestTrait::generateSessionName protected function Generates a session cookie name.
SessionTestTrait::getSessionName protected function Returns the session name in use on the child site.
TaxonomyTestTrait::createTerm function Returns a new term with random properties in vocabulary $vid.
TaxonomyTestTrait::createVocabulary function Returns a new vocabulary with random properties.
TermTest::$field protected property Taxonomy term reference field for testing.
TermTest::$modules public static property Modules to enable. Overrides TaxonomyTestBase::$modules
TermTest::$vocabulary protected property Vocabulary for testing.
TermTest::setUp protected function Sets up a Drupal site for running functional and integration tests. Overrides TaxonomyTestBase::setUp
TermTest::testNodeTermCreationAndDeletion function Test term creation with a free-tagging vocabulary from the node form.
TermTest::testReSavingTags function Tests that editing and saving a node with no changes works correctly.
TermTest::testTaxonomyGetTermByName function Test taxonomy_term_load_multiple_by_name().
TermTest::testTaxonomyNode function Test that hook_node_$op implementations work correctly.
TermTest::testTaxonomyTermChildTerms function Tests that many terms with parents show on each page
TermTest::testTaxonomyTermHierarchy function Test terms in a single and multiple hierarchy.
TermTest::testTermInterface function Save, edit and delete a term using the user interface.
TermTest::testTermMultipleParentsInterface function Test saving a term with multiple parents through the UI.
TermTest::testTermReorder function Save, edit and delete a term using the user interface.
TestBase::$assertions protected property Assertions thrown in that test case.
TestBase::$configImporter protected property The config importer that can used in a test. 5
TestBase::$configSchemaCheckerExclusions protected static property An array of config object names that are excluded from schema checking.
TestBase::$container protected property The dependency injection container used in the test.
TestBase::$databasePrefix protected property The database prefix of this test run.
TestBase::$dieOnFail public property Whether to die in case any test assertion fails.
TestBase::$httpAuthCredentials protected property HTTP authentication credentials (<username>:<password>).
TestBase::$httpAuthMethod protected property HTTP authentication method (specified as a CURLAUTH_* constant).
TestBase::$originalConf protected property The original configuration (variables), if available.
TestBase::$originalConfig protected property The original configuration (variables).
TestBase::$originalConfigDirectories protected property The original configuration directories.
TestBase::$originalContainer protected property The original container.
TestBase::$originalFileDirectory protected property The original file directory, before it was changed for testing purposes.
TestBase::$originalLanguage protected property The original language.
TestBase::$originalPrefix protected property The original database prefix when running inside Simpletest.
TestBase::$originalProfile protected property The original installation profile.
TestBase::$originalSessionName protected property The name of the session cookie of the test-runner.
TestBase::$originalSettings protected property The settings array.
TestBase::$originalSite protected property The site directory of the original parent site.
TestBase::$privateFilesDirectory protected property The private file directory for the test environment.
TestBase::$publicFilesDirectory protected property The public file directory for the test environment.
TestBase::$results public property Current results of this test case.
TestBase::$siteDirectory protected property The site directory of this test run.
TestBase::$skipClasses protected property This class is skipped when looking for the source of an assertion.
TestBase::$strictConfigSchema protected property Set to TRUE to strict check all configuration saved. 4
TestBase::$tempFilesDirectory protected property The temporary file directory for the test environment.
TestBase::$testId protected property The test run ID.
TestBase::$timeLimit protected property Time limit for the test.
TestBase::$translationFilesDirectory protected property The translation file directory for the test environment.
TestBase::$verbose public property TRUE if verbose debugging is enabled.
TestBase::$verboseClassName protected property Safe class name for use in verbose output filenames.
TestBase::$verboseDirectory protected property Directory where verbose output files are put.
TestBase::$verboseDirectoryUrl protected property URL to the verbose output file directory.
TestBase::$verboseId protected property Incrementing identifier for verbose output filenames.
TestBase::assert protected function Internal helper: stores the assert.
TestBase::assertEqual protected function Check to see if two values are equal.
TestBase::assertErrorLogged protected function Asserts that a specific error has been logged to the PHP error log.
TestBase::assertFalse protected function Check to see if a value is false.
TestBase::assertIdentical protected function Check to see if two values are identical.
TestBase::assertIdenticalObject protected function Checks to see if two objects are identical.
TestBase::assertNoErrorsLogged protected function Asserts that no errors have been logged to the PHP error.log thus far.
TestBase::assertNotEqual protected function Check to see if two values are not equal.
TestBase::assertNotIdentical protected function Check to see if two values are not identical.
TestBase::assertNotNull protected function Check to see if a value is not NULL.
TestBase::assertNull protected function Check to see if a value is NULL.
TestBase::assertTrue protected function Check to see if a value is not false.
TestBase::beforePrepareEnvironment protected function Act on global state information before the environment is altered for a test. 1
TestBase::changeDatabasePrefix private function Changes the database connection to the prefixed one.
TestBase::checkRequirements protected function Checks the matching requirements for Test. 2
TestBase::config protected function Configuration accessor for tests. Returns non-overridden configuration.
TestBase::configImporter public function Returns a ConfigImporter object to import test importing of configuration. 5
TestBase::copyConfig public function Copies configuration objects from source storage to target storage.
TestBase::deleteAssert public static function Delete an assertion record by message ID.
TestBase::error protected function Fire an error assertion. 3
TestBase::errorHandler public function Handle errors during test runs.
TestBase::exceptionHandler protected function Handle exceptions.
TestBase::fail protected function Fire an assertion that is always negative.
TestBase::filePreDeleteCallback public static function Ensures test files are deletable within file_unmanaged_delete_recursive().
TestBase::generatePermutations public static function Converts a list of possible parameters into a stack of permutations.
TestBase::getAssertionCall protected function Cycles through backtrace until the first non-assertion method is found.
TestBase::getConfigSchemaExclusions protected function Gets the config schema exclusions for this test.
TestBase::getDatabaseConnection public static function Returns the database connection to the site running Simpletest.
TestBase::getDatabasePrefix public function Gets the database prefix.
TestBase::getTempFilesDirectory public function Gets the temporary files directory.
TestBase::insertAssert public static function Store an assertion from outside the testing context.
TestBase::pass protected function Fire an assertion that is always positive.
TestBase::prepareDatabasePrefix private function Generates a database prefix for running tests.
TestBase::prepareEnvironment private function Prepares the current environment for running the test.
TestBase::restoreEnvironment private function Cleans up the test environment and restores the original environment.
TestBase::run public function Run all tests in this class. 1
TestBase::settingsSet protected function Changes in memory settings.
TestBase::storeAssertion protected function Helper method to store an assertion record in the configured database.
TestBase::verbose protected function Logs a verbose message in a text file.
UserCreationTrait::checkPermissions protected function Checks whether a given list of permission names is valid.
UserCreationTrait::createAdminRole protected function Creates an administrative role. Aliased as: drupalCreateAdminRole
UserCreationTrait::createRole protected function Creates a role with specified permissions. Aliased as: drupalCreateRole
UserCreationTrait::createUser protected function Create a user with a given set of permissions. Aliased as: drupalCreateUser
UserCreationTrait::grantPermissions protected function Grant permissions to a user role.
UserCreationTrait::setCurrentUser protected function Switch the current logged in user.
WebTestBase::$additionalCurlOptions protected property Additional cURL options.
WebTestBase::$assertAjaxHeader protected property Whether or not to assert the presence of the X-Drupal-Ajax-Token.
WebTestBase::$classLoader protected property The class loader to use for installation and initialization of setup.
WebTestBase::$configDirectories protected property The config directories used in this test.
WebTestBase::$cookieFile protected property The current cookie file used by cURL.
WebTestBase::$cookies protected property The cookies of the page currently loaded in the internal browser.
WebTestBase::$curlCookies protected property Cookies to set on curl requests.
WebTestBase::$curlHandle protected property The handle of the current cURL connection.
WebTestBase::$customTranslations protected property An array of custom translations suitable for drupal_rewrite_settings().
WebTestBase::$dumpHeaders protected property Indicates that headers should be dumped if verbose output is enabled. 12
WebTestBase::$generatedTestFiles protected property Whether the files were copied to the test files directory.
WebTestBase::$headers protected property The headers of the page currently loaded in the internal browser.
WebTestBase::$kernel protected property The kernel used in this test. Overrides TestBase::$kernel
WebTestBase::$loggedInUser protected property The current user logged in using the internal browser.
WebTestBase::$maximumMetaRefreshCount protected property The number of meta refresh redirects to follow, or NULL if unlimited.
WebTestBase::$maximumRedirects protected property The maximum number of redirects to follow when handling responses.
WebTestBase::$metaRefreshCount protected property The number of meta refresh redirects followed during ::drupalGet().
WebTestBase::$originalBatch protected property The original batch, before it was changed for testing purposes.
WebTestBase::$originalShutdownCallbacks protected property The original shutdown handlers array, before it was cleaned for testing. Overrides TestBase::$originalShutdownCallbacks
WebTestBase::$originalUser protected property The original user, before it was changed to a clean uid = 1 for testing. Overrides TestBase::$originalUser
WebTestBase::$profile protected property The profile to install as a basis for testing. 30
WebTestBase::$redirectCount protected property The number of redirects followed during the handling of a request.
WebTestBase::$rootUser protected property The "#1" admin user.
WebTestBase::$sessionId protected property The current session ID, if available.
WebTestBase::$url protected property The URL currently loaded in the internal browser.
WebTestBase::addCustomTranslations protected function Queues custom translations to be written to settings.php.
WebTestBase::assertBlockAppears protected function Checks to see whether a block appears on the page.
WebTestBase::assertCacheContext protected function Asserts whether an expected cache context was present in the last response.
WebTestBase::assertCacheTag protected function Asserts whether an expected cache tag was present in the last response.
WebTestBase::assertHeader protected function Check if a HTTP response header exists and has the expected value.
WebTestBase::assertMail protected function Asserts that the most recently sent email message has the given value.
WebTestBase::assertMailPattern protected function Asserts that the most recently sent email message has the pattern in it.
WebTestBase::assertMailString protected function Asserts that the most recently sent email message has the string in it.
WebTestBase::assertNoBlockAppears protected function Checks to see whether a block does not appears on the page.
WebTestBase::assertNoCacheContext protected function Asserts that a cache context was not present in the last response.
WebTestBase::assertNoCacheTag protected function Asserts whether an expected cache tag was absent in the last response.
WebTestBase::assertNoResponse protected function Asserts the page did not return the specified response code.
WebTestBase::assertResponse protected function Asserts the page responds with the specified response code.
WebTestBase::assertUrl protected function Passes if the internal browser's URL matches the given path.
WebTestBase::buildUrl protected function Builds an a absolute URL from a system path or a URL object.
WebTestBase::checkForMetaRefresh protected function Checks for meta refresh tag and if found call drupalGet() recursively.
WebTestBase::clickLink protected function Follows a link by complete name.
WebTestBase::clickLinkHelper protected function Provides a helper for ::clickLink() and ::clickLinkPartialName().
WebTestBase::clickLinkPartialName protected function Follows a link by partial name.
WebTestBase::cronRun protected function Runs cron in the Drupal installed by Simpletest.
WebTestBase::curlClose protected function Close the cURL handler and unset the handler.
WebTestBase::curlExec protected function Initializes and executes a cURL request. 2
WebTestBase::curlHeaderCallback protected function Reads headers and registers errors received from the tested site.
WebTestBase::curlInitialize protected function Initializes the cURL connection.
WebTestBase::doInstall protected function Execute the non-interactive installer.
WebTestBase::drupalBuildEntityView protected function Builds the renderable view of an entity.
WebTestBase::drupalCompareFiles protected function Compare two files based on size and file name.
WebTestBase::drupalCreateContentType protected function Creates a custom content type based on default settings.
WebTestBase::drupalCreateNode protected function Creates a node based on default settings.
WebTestBase::drupalGet protected function Retrieves a Drupal path or an absolute path. 1
WebTestBase::drupalGetAjax protected function Requests a path or URL in drupal_ajax format and JSON-decodes the response.
WebTestBase::drupalGetHeader protected function Gets the value of an HTTP response header.
WebTestBase::drupalGetHeaders protected function Gets the HTTP response headers of the requested page.
WebTestBase::drupalGetJSON protected function Retrieves a Drupal path or an absolute path and JSON decodes the result.
WebTestBase::drupalGetMails protected function Gets an array containing all emails sent during this test case.
WebTestBase::drupalGetNodeByTitle function Get a node from the database based on its title.
WebTestBase::drupalGetTestFiles protected function Gets a list of files that can be used in tests.
WebTestBase::drupalGetWithFormat protected function Retrieves a Drupal path or an absolute path for a given format.
WebTestBase::drupalGetXHR protected function Requests a Drupal path or an absolute path as if it is a XMLHttpRequest.
WebTestBase::drupalHead protected function Retrieves only the headers for a Drupal path or an absolute path.
WebTestBase::drupalLogin protected function Log in a user with the internal browser.
WebTestBase::drupalLogout protected function Logs a user out of the internal browser and confirms.
WebTestBase::drupalPlaceBlock protected function Creates a block instance based on default settings.
WebTestBase::drupalPost protected function Perform a POST HTTP request.
WebTestBase::drupalPostAjaxForm protected function Executes an Ajax form submission.
WebTestBase::drupalPostForm protected function Executes a form submission.
WebTestBase::drupalPostWithFormat protected function Performs a POST HTTP request with a specific format.
WebTestBase::drupalProcessAjaxResponse protected function Processes an AJAX response into current content.
WebTestBase::drupalUserIsLoggedIn protected function Returns whether a given user account is logged in.
WebTestBase::findBlockInstance protected function Find a block instance on the page.
WebTestBase::getAbsoluteUrl protected function Takes a path and returns an absolute path.
WebTestBase::getAjaxPageStatePostData protected function Get the Ajax page state from drupalSettings and prepare it for POSTing.
WebTestBase::getDatabaseTypes protected function Returns all supported database driver installer objects.
WebTestBase::handleForm protected function Handles form input related to drupalPostForm().
WebTestBase::initConfig protected function Initialize various configurations post-installation.
WebTestBase::initKernel protected function Initializes the kernel after installation.
WebTestBase::initSettings protected function Initialize settings created during install.
WebTestBase::initUserSession protected function Initializes user 1 for the site to be installed.
WebTestBase::installModulesFromClassProperty protected function Install modules defined by `static::$modules`.
WebTestBase::installParameters protected function Returns the parameters that will be used when Simpletest installs Drupal. 2
WebTestBase::isInChildSite protected function Returns whether the test is being executed from within a test site.
WebTestBase::prepareRequestForGenerator protected function Creates a mock request and sets it on the generator.
WebTestBase::prepareSettings protected function Prepares site settings and services before installation. 1
WebTestBase::rebuildAll protected function Reset and rebuild the environment after setup.
WebTestBase::rebuildContainer protected function Rebuilds \Drupal::getContainer().
WebTestBase::refreshVariables protected function Refreshes in-memory configuration and state information. 1
WebTestBase::resetAll protected function Resets all data structures after having enabled new modules.
WebTestBase::restoreBatch protected function Restore the original batch.
WebTestBase::serializePostValues protected function Serialize POST HTTP request values.
WebTestBase::setBatch protected function Preserve the original batch, and instantiate the test batch.
WebTestBase::setContainerParameter protected function Changes parameters in the services.yml file.
WebTestBase::setHttpResponseDebugCacheabilityHeaders protected function Enables/disables the cacheability headers.
WebTestBase::tearDown protected function Cleans up after testing. Overrides TestBase::tearDown 2
WebTestBase::translatePostValues protected function Transforms a nested array into a flat array suitable for WebTestBase::drupalPostForm().
WebTestBase::verboseEmail protected function Outputs to verbose the most recent $count emails sent.
WebTestBase::writeCustomTranslations protected function Writes custom translations to the test site's settings.php.
WebTestBase::writeSettings protected function Rewrites the settings.php file of the test site.
WebTestBase::__construct function Constructor for \Drupal\simpletest\WebTestBase. Overrides TestBase::__construct 1