class TermTest in Drupal 8
Same name in this branch
- 8 core/modules/jsonapi/tests/src/Functional/TermTest.php \Drupal\Tests\jsonapi\Functional\TermTest
- 8 core/modules/taxonomy/tests/src/Functional/TermTest.php \Drupal\Tests\taxonomy\Functional\TermTest
- 8 core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/TermTest.php \Drupal\Tests\taxonomy\Kernel\Plugin\migrate\source\d6\TermTest
- 8 core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d7/TermTest.php \Drupal\Tests\taxonomy\Kernel\Plugin\migrate\source\d7\TermTest
Same name and namespace in other branches
- 9 core/modules/taxonomy/tests/src/Functional/TermTest.php \Drupal\Tests\taxonomy\Functional\TermTest
Tests load, save and delete for taxonomy terms.
@group taxonomy
Hierarchy
- class \Drupal\Tests\BrowserTestBase extends \PHPUnit\Framework\TestCase uses FunctionalTestSetupTrait, TestSetupTrait, AssertLegacyTrait, BlockCreationTrait, ConfigTestTrait, ContentTypeCreationTrait, NodeCreationTrait, PhpunitCompatibilityTrait, RandomGeneratorTrait, TestRequirementsTrait, UiHelperTrait, UserCreationTrait, XdebugRequestTrait
- class \Drupal\Tests\taxonomy\Functional\TaxonomyTestBase uses EntityReferenceTestTrait, TaxonomyTestTrait
- class \Drupal\Tests\taxonomy\Functional\TermTest
- class \Drupal\Tests\taxonomy\Functional\TaxonomyTestBase uses EntityReferenceTestTrait, TaxonomyTestTrait
Expanded class hierarchy of TermTest
File
- core/
modules/ taxonomy/ tests/ src/ Functional/ TermTest.php, line 16
Namespace
Drupal\Tests\taxonomy\FunctionalView 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 $defaultTheme = 'classy';
/**
* {@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 = [
'target_bundles' => [
$this->vocabulary
->id() => $this->vocabulary
->id(),
],
'auto_create' => TRUE,
];
$this
->createEntityReferenceField('node', 'article', $field_name, NULL, 'taxonomy_term', 'default', $handler_settings, FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED);
$this->field = FieldConfig::loadByName('node', 'article', $field_name);
/** @var \Drupal\Core\Entity\EntityDisplayRepositoryInterface $display_repository */
$display_repository = \Drupal::service('entity_display.repository');
$display_repository
->getFormDisplay('node', 'article')
->setComponent($field_name, [
'type' => 'options_select',
])
->save();
$display_repository
->getViewDisplay('node', 'article')
->setComponent($field_name, [
'type' => 'entity_reference_label',
])
->save();
}
/**
* The "parent" field must restrict references to the same vocabulary.
*/
public function testParentHandlerSettings() {
$vocabulary_fields = \Drupal::service('entity_field.manager')
->getFieldDefinitions('taxonomy_term', $this->vocabulary
->id());
$parent_target_bundles = $vocabulary_fields['parent']
->getSetting('handler_settings')['target_bundles'];
$this
->assertIdentical([
$this->vocabulary
->id() => $this->vocabulary
->id(),
], $parent_target_bundles);
}
/**
* Test terms in a single and multiple hierarchy.
*/
public function testTaxonomyTermHierarchy() {
// Create two taxonomy terms.
$term1 = $this
->createTerm($this->vocabulary);
$term2 = $this
->createTerm($this->vocabulary);
// Get the taxonomy storage.
/** @var \Drupal\taxonomy\TermStorageInterface $taxonomy_storage */
$taxonomy_storage = $this->container
->get('entity_type.manager')
->getStorage('taxonomy_term');
// Check that hierarchy is flat.
$this
->assertEquals(0, $taxonomy_storage
->getVocabularyHierarchyType($this->vocabulary
->id()), 'Vocabulary is flat.');
// Edit $term2, setting $term1 as parent.
$edit = [];
$edit['parent[]'] = [
$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 = [
$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
*/
public 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_type.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 = [];
// 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', [
'query' => [
'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', [
'query' => [
'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.
*/
public function testTaxonomyNode() {
// Create two taxonomy terms.
$term1 = $this
->createTerm($this->vocabulary);
$term2 = $this
->createTerm($this->vocabulary);
// Post an article.
$edit = [];
$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, [], 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.
*/
public function testNodeTermCreationAndDeletion() {
// Enable tags in the vocabulary.
$field = $this->field;
\Drupal::service('entity_display.repository')
->getFormDisplay($field
->getTargetEntityTypeId(), $field
->getTargetBundle())
->setComponent($field
->getName(), [
'type' => 'entity_reference_autocomplete_tags',
'settings' => [
'placeholder' => 'Start typing here.',
],
])
->save();
// 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 = [
'term1' => 'a' . $this
->randomMachineName(),
'term2' => 'b' . $this
->randomMachineName(),
'term3' => 'c' . $this
->randomMachineName() . ', ' . $this
->randomMachineName(),
'term4' => 'd' . $this
->randomMachineName(),
];
$edit = [];
$edit['title[0][value]'] = $this
->randomMachineName();
$edit['body[0][value]'] = $this
->randomMachineName();
// 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_type.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
->assertText(t('@type @title has been created.', [
'@type' => t('Article'),
'@title' => $edit['title[0][value]'],
]), 'The node was created successfully.');
// Verify that the creation message contains a link to a node.
$view_link = $this
->xpath('//div[@class="messages"]//a[contains(@href, :href)]', [
':href' => 'node/',
]);
$this
->assert(isset($view_link), 'The message area contains a link to a node');
foreach ($terms as $term) {
$this
->assertText($term, 'The term was saved and appears on the node page.');
}
// Get the created terms.
$term_objects = [];
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, [], t('Delete'));
$term_names = [
$term_objects['term3']
->getName(),
$term_objects['term4']
->getName(),
];
$this
->drupalGet('node/' . $node
->id());
foreach ($term_names as $term_name) {
$this
->assertText($term_name, new FormattableMarkup('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(),
]));
}
$this
->assertNoText($term_objects['term1']
->getName(), new FormattableMarkup('The deleted term %name does not appear on the node page.', [
'%name' => $term_objects['term1']
->getName(),
]));
$this
->assertNoText($term_objects['term2']
->getName(), new FormattableMarkup('The deleted term %name does not appear on the node page.', [
'%name' => $term_objects['term2']
->getName(),
]));
}
/**
* Save, edit and delete a term using the user interface.
*/
public function testTermInterface() {
\Drupal::service('module_installer')
->install([
'views',
]);
$edit = [
'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[]'] = [
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 = [
'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
->assertSession()
->linkExists(t('Edit'));
// Check the term link can be clicked through to the term page.
$this
->clickLink($edit['name[0][value]']);
$this
->assertSession()
->statusCodeEquals(200);
// 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
->assertSession()
->elementExists('xpath', '//div[contains(@class, "field--name-description")]');
// Check that it does NOT show a description when description is blank.
$term
->setDescription(NULL);
$term
->save();
$this
->drupalGet('taxonomy/term/' . $term
->id());
$this
->assertSession()
->elementNotExists('xpath', '//div[contains(@class, "field--entity-taxonomy-term--description")]');
// 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
->assertSession()
->statusCodeEquals(404);
}
/**
* Save, edit and delete a term using the user interface.
*/
public function testTermReorder() {
$assert = $this
->assertSession();
$this
->createTerm($this->vocabulary);
$this
->createTerm($this->vocabulary);
$this
->createTerm($this->vocabulary);
$taxonomy_storage = $this->container
->get('entity_type.manager')
->getStorage('taxonomy_term');
// 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.
$hidden_edit = [
'terms[tid:' . $term2
->id() . ':0][term][tid]' => $term2
->id(),
'terms[tid:' . $term2
->id() . ':0][term][parent]' => 0,
'terms[tid:' . $term2
->id() . ':0][term][depth]' => 0,
'terms[tid:' . $term3
->id() . ':0][term][tid]' => $term3
->id(),
'terms[tid:' . $term3
->id() . ':0][term][parent]' => $term2
->id(),
'terms[tid:' . $term3
->id() . ':0][term][depth]' => 1,
'terms[tid:' . $term1
->id() . ':0][term][tid]' => $term1
->id(),
'terms[tid:' . $term1
->id() . ':0][term][parent]' => 0,
'terms[tid:' . $term1
->id() . ':0][term][depth]' => 0,
];
// Because we can't post hidden form elements, we have to change them in
// code here, and then submit.
foreach ($hidden_edit as $field => $value) {
$node = $assert
->hiddenFieldExists($field);
$node
->setValue($value);
}
// Edit non-hidden elements within drupalPostForm().
$edit = [
'terms[tid:' . $term2
->id() . ':0][weight]' => 0,
'terms[tid:' . $term3
->id() . ':0][weight]' => 1,
'terms[tid:' . $term1
->id() . ':0][weight]' => 2,
];
$this
->drupalPostForm(NULL, $edit, '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, [
$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', [], t('Reset to alphabetical'));
// Submit confirmation form.
$this
->drupalPostForm(NULL, [], 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, [
$term2
->id(),
], 'Term 3 is still a child of term 2.');
}
/**
* Test saving a term with multiple parents through the UI.
*/
public 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 = [
'name[0][value]' => $this
->randomMachineName(12),
'description[0][value]' => $this
->randomMachineName(100),
'parent[]' => [
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_type.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().
*/
public 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
->assertEmpty($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(mb_substr($term
->getName(), 2), 'No term loaded with a substring of the name.');
$this
->assertEmpty($terms);
// Create a new term in a different vocabulary with the same name.
$new_vocabulary = $this
->createVocabulary();
$new_term = Term::create([
'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
->assertCount(2, $terms, '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
->assertCount(1, $terms, '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
->assertEmpty($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
->assertCount(0, $terms, 'No terms loaded when restricted by a non-existing vocabulary.');
}
/**
* Tests that editing and saving a node with no changes works correctly.
*/
public function testReSavingTags() {
// Enable tags in the vocabulary.
$field = $this->field;
\Drupal::service('entity_display.repository')
->getFormDisplay($field
->getTargetEntityTypeId(), $field
->getTargetBundle())
->setComponent($field
->getName(), [
'type' => 'entity_reference_autocomplete_tags',
])
->save();
// Create a term and a node using it.
$term = $this
->createTerm($this->vocabulary);
$edit = [];
$edit['title[0][value]'] = $this
->randomMachineName(8);
$edit['body[0][value]'] = $this
->randomMachineName(16);
$edit[$this->field
->getName() . '[target_id]'] = $term
->getName();
$this
->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, [], t('Save'));
$this
->assertRaw($term
->getName(), 'Term is displayed after saving the node with no changes.');
}
/**
* Check the breadcrumb on edit and delete a term page.
*/
public function testTermBreadcrumbs() {
$edit = [
'name[0][value]' => $this
->randomMachineName(14),
'description[0][value]' => $this
->randomMachineName(100),
'parent[]' => [
0,
],
];
// Create the term.
$this
->drupalPostForm('admin/structure/taxonomy/manage/' . $this->vocabulary
->id() . '/add', $edit, 'Save');
$terms = taxonomy_term_load_multiple_by_name($edit['name[0][value]']);
$term = reset($terms);
$this
->assertNotNull($term, 'Term found in database.');
// Check the breadcrumb on the term edit page.
$this
->drupalGet('taxonomy/term/' . $term
->id() . '/edit');
$breadcrumbs = $this
->getSession()
->getPage()
->findAll('css', 'nav.breadcrumb ol li a');
$this
->assertCount(2, $breadcrumbs, 'The breadcrumbs are present on the page.');
$this
->assertIdentical($breadcrumbs[0]
->getText(), 'Home', 'First breadcrumb text is Home');
$this
->assertIdentical($breadcrumbs[1]
->getText(), $term
->label(), 'Second breadcrumb text is term name on term edit page.');
$this
->assertEscaped($breadcrumbs[1]
->getText());
// Check the breadcrumb on the term delete page.
$this
->drupalGet('taxonomy/term/' . $term
->id() . '/delete');
$breadcrumbs = $this
->getSession()
->getPage()
->findAll('css', 'nav.breadcrumb ol li a');
$this
->assertCount(2, $breadcrumbs, 'The breadcrumbs are present on the page.');
$this
->assertIdentical($breadcrumbs[0]
->getText(), 'Home', 'First breadcrumb text is Home');
$this
->assertIdentical($breadcrumbs[1]
->getText(), $term
->label(), 'Second breadcrumb text is term name on term delete page.');
$this
->assertEscaped($breadcrumbs[1]
->getText());
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AssertHelperTrait:: |
protected static | function | Casts MarkupInterface objects into strings. | |
AssertLegacyTrait:: |
protected | function | Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertTrue() instead. | |
AssertLegacyTrait:: |
protected | function | Asserts whether an expected cache tag was present in the last response. | |
AssertLegacyTrait:: |
protected | function | Asserts that the element with the given CSS selector is not present. | |
AssertLegacyTrait:: |
protected | function | Asserts that the element with the given CSS selector is present. | |
AssertLegacyTrait:: |
protected | function | Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertEquals() instead. | |
AssertLegacyTrait:: |
protected | function | Passes if the raw text IS found escaped on the loaded page, fail otherwise. | |
AssertLegacyTrait:: |
protected | function | Asserts that a field exists with the given name or ID. | |
AssertLegacyTrait:: |
protected | function | Asserts that a field exists with the given ID and value. | |
AssertLegacyTrait:: |
protected | function | Asserts that a field exists with the given name and value. | |
AssertLegacyTrait:: |
protected | function | Asserts that a field exists in the current page by the given XPath. | |
AssertLegacyTrait:: |
protected | function | Asserts that a checkbox field in the current page is checked. | |
AssertLegacyTrait:: |
protected | function | Asserts that a field exists in the current page with a given Xpath result. | |
AssertLegacyTrait:: |
protected | function | Checks that current response header equals value. | |
AssertLegacyTrait:: |
protected | function | Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertSame() instead. | |
AssertLegacyTrait:: |
protected | function | Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertEquals() instead. | |
AssertLegacyTrait:: |
protected | function | Passes if a link with the specified label is found. | |
AssertLegacyTrait:: |
protected | function | Passes if a link containing a given href (part) is found. | |
AssertLegacyTrait:: |
protected | function | Asserts whether an expected cache tag was absent in the last response. | |
AssertLegacyTrait:: |
protected | function | Passes if the raw text is not found escaped on the loaded page. | |
AssertLegacyTrait:: |
protected | function | Asserts that a field does NOT exist with the given name or ID. | |
AssertLegacyTrait:: |
protected | function | Asserts that a field does not exist with the given ID and value. | |
AssertLegacyTrait:: |
protected | function | Asserts that a field does not exist with the given name and value. | |
AssertLegacyTrait:: |
protected | function | Asserts that a field does not exist or its value does not match, by XPath. | |
AssertLegacyTrait:: |
protected | function | Asserts that a checkbox field in the current page is not checked. | |
AssertLegacyTrait:: |
protected | function | Passes if a link with the specified label is not found. | |
AssertLegacyTrait:: |
protected | function | Passes if a link containing a given href (part) is not found. | |
AssertLegacyTrait:: |
protected | function | Asserts that a select option does NOT exist in the current page. | |
AssertLegacyTrait:: |
protected | function | Triggers a pass if the Perl regex pattern is not found in the raw content. | |
AssertLegacyTrait:: |
protected | function | Passes if the raw text IS not found on the loaded page, fail otherwise. | 1 |
AssertLegacyTrait:: |
protected | function | Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertNotEquals() instead. | |
AssertLegacyTrait:: |
protected | function | Passes if the page (with HTML stripped) does not contains the text. | 1 |
AssertLegacyTrait:: |
protected | function | Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertNotSame() instead. | |
AssertLegacyTrait:: |
protected | function | Passes if the text is found MORE THAN ONCE on the text version of the page. | |
AssertLegacyTrait:: |
protected | function | Asserts that a select option in the current page exists. | |
AssertLegacyTrait:: |
protected | function | Asserts that a select option with the visible text exists. | |
AssertLegacyTrait:: |
protected | function | Asserts that a select option in the current page is checked. | |
AssertLegacyTrait:: |
protected | function | Triggers a pass if the Perl regex pattern is found in the raw content. | |
AssertLegacyTrait:: |
protected | function | Passes if the raw text IS found on the loaded page, fail otherwise. | 1 |
AssertLegacyTrait:: |
protected | function | Asserts the page responds with the specified response code. | 1 |
AssertLegacyTrait:: |
protected | function | Passes if the page (with HTML stripped) contains the text. | 1 |
AssertLegacyTrait:: |
protected | function | Helper for assertText and assertNoText. | |
AssertLegacyTrait:: |
protected | function | Pass if the page title is the given string. | |
AssertLegacyTrait:: |
protected | function | Passes if the text is found ONLY ONCE on the text version of the page. | |
AssertLegacyTrait:: |
protected | function | Passes if the internal browser's URL matches the given path. | |
AssertLegacyTrait:: |
protected | function | Builds an XPath query. | |
AssertLegacyTrait:: |
protected | function | Helper: Constructs an XPath for the given set of attributes and value. | |
AssertLegacyTrait:: |
protected | function | Get all option elements, including nested options, in a select. | |
AssertLegacyTrait:: |
protected | function | Gets the current raw content. | |
AssertLegacyTrait:: |
protected | function | Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertTrue() instead. | |
AssertLegacyTrait:: |
protected | function | ||
BlockCreationTrait:: |
protected | function | Creates a block instance based on default settings. Aliased as: drupalPlaceBlock | |
BrowserHtmlDebugTrait:: |
protected | property | The Base URI to use for links to the output files. | |
BrowserHtmlDebugTrait:: |
protected | property | Class name for HTML output logging. | |
BrowserHtmlDebugTrait:: |
protected | property | Counter for HTML output logging. | |
BrowserHtmlDebugTrait:: |
protected | property | Counter storage for HTML output logging. | |
BrowserHtmlDebugTrait:: |
protected | property | Directory name for HTML output logging. | |
BrowserHtmlDebugTrait:: |
protected | property | HTML output output enabled. | |
BrowserHtmlDebugTrait:: |
protected | property | The file name to write the list of URLs to. | |
BrowserHtmlDebugTrait:: |
protected | property | HTML output test ID. | |
BrowserHtmlDebugTrait:: |
protected | function | Formats HTTP headers as string for HTML output logging. | |
BrowserHtmlDebugTrait:: |
protected | function | Returns headers in HTML output format. | 1 |
BrowserHtmlDebugTrait:: |
protected | function | Logs a HTML output message in a text file. | |
BrowserHtmlDebugTrait:: |
protected | function | Creates the directory to store browser output. | |
BrowserTestBase:: |
protected | property | The base URL. | |
BrowserTestBase:: |
protected | property | The config importer that can be used in a test. | |
BrowserTestBase:: |
protected | property | An array of custom translations suitable for drupal_rewrite_settings(). | |
BrowserTestBase:: |
protected | property | The database prefix of this test run. | |
BrowserTestBase:: |
protected | property | Mink session manager. | |
BrowserTestBase:: |
protected | property | ||
BrowserTestBase:: |
protected | property | 1 | |
BrowserTestBase:: |
protected | property | The original container. | |
BrowserTestBase:: |
protected | property | The original array of shutdown function callbacks. | |
BrowserTestBase:: |
protected | property | ||
BrowserTestBase:: |
protected | property | The profile to install as a basis for testing. | 39 |
BrowserTestBase:: |
protected | property | The app root. | |
BrowserTestBase:: |
protected | property | Browser tests are run in separate processes to prevent collisions between code that may be loaded by tests. | |
BrowserTestBase:: |
protected | property | Time limit in seconds for the test. | |
BrowserTestBase:: |
protected | property | The translation file directory for the test environment. | |
BrowserTestBase:: |
protected | function | Clean up the Simpletest environment. | |
BrowserTestBase:: |
protected | function | Configuration accessor for tests. Returns non-overridden configuration. | |
BrowserTestBase:: |
protected | function | Translates a CSS expression to its XPath equivalent. | |
BrowserTestBase:: |
protected | function | Gets the value of an HTTP response header. | |
BrowserTestBase:: |
protected | function | Returns all response headers. | |
BrowserTestBase:: |
public static | function | Ensures test files are deletable. | |
BrowserTestBase:: |
protected | function | Gets an instance of the default Mink driver. | |
BrowserTestBase:: |
protected | function | Gets the JavaScript drupalSettings variable for the currently-loaded page. | 1 |
BrowserTestBase:: |
protected | function | Obtain the HTTP client for the system under test. | |
BrowserTestBase:: |
protected | function | Get the Mink driver args from an environment variable, if it is set. Can be overridden in a derived class so it is possible to use a different value for a subset of tests, e.g. the JavaScript tests. | 1 |
BrowserTestBase:: |
protected | function | Helper function to get the options of select field. | |
BrowserTestBase:: |
protected | function |
Provides a Guzzle middleware handler to log every response received. Overrides BrowserHtmlDebugTrait:: |
|
BrowserTestBase:: |
public | function | Returns Mink session. | |
BrowserTestBase:: |
protected | function | Get session cookies from current session. | |
BrowserTestBase:: |
protected | function |
Retrieves the current calling line in the class under test. Overrides BrowserHtmlDebugTrait:: |
|
BrowserTestBase:: |
protected | function | Visits the front page when initializing Mink. | 3 |
BrowserTestBase:: |
protected | function | Initializes Mink sessions. | 1 |
BrowserTestBase:: |
public | function | Installs Drupal into the Simpletest site. | 1 |
BrowserTestBase:: |
protected | function | Registers additional Mink sessions. | |
BrowserTestBase:: |
protected | function | 3 | |
BrowserTestBase:: |
protected | function | Transforms a nested array into a flat array suitable for drupalPostForm(). | |
BrowserTestBase:: |
protected | function | Performs an xpath search on the contents of the internal browser. | |
BrowserTestBase:: |
public | function | 1 | |
BrowserTestBase:: |
public | function | Prevents serializing any properties. | |
ConfigTestTrait:: |
protected | function | Returns a ConfigImporter object to import test configuration. | |
ConfigTestTrait:: |
protected | function | Copies configuration objects from source storage to target storage. | |
ContentTypeCreationTrait:: |
protected | function | Creates a custom content type based on default settings. Aliased as: drupalCreateContentType | 1 |
EntityReferenceTestTrait:: |
protected | function | Creates a field of an entity reference field storage on the specified bundle. | |
FunctionalTestSetupTrait:: |
protected | property | The flag to set 'apcu_ensure_unique_prefix' setting. | 1 |
FunctionalTestSetupTrait:: |
protected | property | The class loader to use for installation and initialization of setup. | |
FunctionalTestSetupTrait:: |
protected | property | The config directories used in this test. | |
FunctionalTestSetupTrait:: |
protected | property | The "#1" admin user. | |
FunctionalTestSetupTrait:: |
protected | function | Execute the non-interactive installer. | 1 |
FunctionalTestSetupTrait:: |
protected | function | Returns all supported database driver installer objects. | |
FunctionalTestSetupTrait:: |
protected | function | Initialize various configurations post-installation. | 2 |
FunctionalTestSetupTrait:: |
protected | function | Initializes the kernel after installation. | |
FunctionalTestSetupTrait:: |
protected | function | Initialize settings created during install. | |
FunctionalTestSetupTrait:: |
protected | function | Initializes user 1 for the site to be installed. | |
FunctionalTestSetupTrait:: |
protected | function | Installs the default theme defined by `static::$defaultTheme` when needed. | |
FunctionalTestSetupTrait:: |
protected | function | Install modules defined by `static::$modules`. | 1 |
FunctionalTestSetupTrait:: |
protected | function | Returns the parameters that will be used when Simpletest installs Drupal. | 9 |
FunctionalTestSetupTrait:: |
protected | function | Prepares the current environment for running the test. | 23 |
FunctionalTestSetupTrait:: |
protected | function | Creates a mock request and sets it on the generator. | |
FunctionalTestSetupTrait:: |
protected | function | Prepares site settings and services before installation. | 2 |
FunctionalTestSetupTrait:: |
protected | function | Resets and rebuilds the environment after setup. | |
FunctionalTestSetupTrait:: |
protected | function | Rebuilds \Drupal::getContainer(). | |
FunctionalTestSetupTrait:: |
protected | function | Resets all data structures after having enabled new modules. | |
FunctionalTestSetupTrait:: |
protected | function | Changes parameters in the services.yml file. | |
FunctionalTestSetupTrait:: |
protected | function | Sets up the base URL based upon the environment variable. | |
FunctionalTestSetupTrait:: |
protected | function | Rewrites the settings.php file of the test site. | |
NodeCreationTrait:: |
protected | function | Creates a node based on default settings. Aliased as: drupalCreateNode | |
NodeCreationTrait:: |
public | function | Get a node from the database based on its title. Aliased as: drupalGetNodeByTitle | |
PhpunitCompatibilityTrait:: |
public | function | Returns a mock object for the specified class using the available method. | |
PhpunitCompatibilityTrait:: |
public | function | Compatibility layer for PHPUnit 6 to support PHPUnit 4 code. | |
RandomGeneratorTrait:: |
protected | property | The random generator. | |
RandomGeneratorTrait:: |
protected | function | Gets the random generator for the utility methods. | |
RandomGeneratorTrait:: |
protected | function | Generates a unique random string containing letters and numbers. | 1 |
RandomGeneratorTrait:: |
public | function | Generates a random PHP object. | |
RandomGeneratorTrait:: |
public | function | Generates a pseudo-random string of ASCII characters of codes 32 to 126. | |
RandomGeneratorTrait:: |
public | function | Callback for random string validation. | |
RefreshVariablesTrait:: |
protected | function | Refreshes in-memory configuration and state information. | 3 |
SessionTestTrait:: |
protected | property | The name of the session cookie. | |
SessionTestTrait:: |
protected | function | Generates a session cookie name. | |
SessionTestTrait:: |
protected | function | Returns the session name in use on the child site. | |
StorageCopyTrait:: |
protected static | function | Copy the configuration from one storage to another and remove stale items. | |
TaxonomyTestTrait:: |
public | function | Returns a new term with random properties given a vocabulary. | |
TaxonomyTestTrait:: |
public | function | Returns a new vocabulary with random properties. | |
TermTest:: |
protected | property |
The theme to install as the default for testing. Overrides BrowserTestBase:: |
|
TermTest:: |
protected | property | Taxonomy term reference field for testing. | |
TermTest:: |
public static | property |
Modules to enable. Overrides TaxonomyTestBase:: |
|
TermTest:: |
protected | property | Vocabulary for testing. | |
TermTest:: |
protected | function |
Overrides TaxonomyTestBase:: |
|
TermTest:: |
public | function | Test term creation with a free-tagging vocabulary from the node form. | |
TermTest:: |
public | function | The "parent" field must restrict references to the same vocabulary. | |
TermTest:: |
public | function | Tests that editing and saving a node with no changes works correctly. | |
TermTest:: |
public | function | Test taxonomy_term_load_multiple_by_name(). | |
TermTest:: |
public | function | Test that hook_node_$op implementations work correctly. | |
TermTest:: |
public | function | Tests that many terms with parents show on each page | |
TermTest:: |
public | function | Test terms in a single and multiple hierarchy. | |
TermTest:: |
public | function | Check the breadcrumb on edit and delete a term page. | |
TermTest:: |
public | function | Save, edit and delete a term using the user interface. | |
TermTest:: |
public | function | Test saving a term with multiple parents through the UI. | |
TermTest:: |
public | function | Save, edit and delete a term using the user interface. | |
TestRequirementsTrait:: |
private | function | Checks missing module requirements. | |
TestRequirementsTrait:: |
protected | function | Check module requirements for the Drupal use case. | 1 |
TestRequirementsTrait:: |
protected static | function | Returns the Drupal root directory. | |
TestSetupTrait:: |
protected static | property | An array of config object names that are excluded from schema checking. | |
TestSetupTrait:: |
protected | property | The dependency injection container used in the test. | |
TestSetupTrait:: |
protected | property | The DrupalKernel instance used in the test. | |
TestSetupTrait:: |
protected | property | The site directory of the original parent site. | |
TestSetupTrait:: |
protected | property | The private file directory for the test environment. | |
TestSetupTrait:: |
protected | property | The public file directory for the test environment. | |
TestSetupTrait:: |
protected | property | The site directory of this test run. | |
TestSetupTrait:: |
protected | property | Set to TRUE to strict check all configuration saved. | 2 |
TestSetupTrait:: |
protected | property | The temporary file directory for the test environment. | |
TestSetupTrait:: |
protected | property | The test run ID. | |
TestSetupTrait:: |
protected | function | Changes the database connection to the prefixed one. | |
TestSetupTrait:: |
protected | function | Gets the config schema exclusions for this test. | |
TestSetupTrait:: |
public static | function | Returns the database connection to the site running Simpletest. | |
TestSetupTrait:: |
protected | function | Generates a database prefix for running tests. | 2 |
UiHelperTrait:: |
protected | property | The current user logged in using the Mink controlled browser. | |
UiHelperTrait:: |
protected | property | The number of meta refresh redirects to follow, or NULL if unlimited. | |
UiHelperTrait:: |
protected | property | The number of meta refresh redirects followed during ::drupalGet(). | |
UiHelperTrait:: |
public | function | Returns WebAssert object. | 1 |
UiHelperTrait:: |
protected | function | Builds an a absolute URL from a system path or a URL object. | |
UiHelperTrait:: |
protected | function | Checks for meta refresh tag and if found call drupalGet() recursively. | |
UiHelperTrait:: |
protected | function | Clicks the element with the given CSS selector. | |
UiHelperTrait:: |
protected | function | Follows a link by complete name. | |
UiHelperTrait:: |
protected | function | Searches elements using a CSS selector in the raw content. | |
UiHelperTrait:: |
protected | function | Retrieves a Drupal path or an absolute path. | 3 |
UiHelperTrait:: |
protected | function | Logs in a user using the Mink controlled browser. | |
UiHelperTrait:: |
protected | function | Logs a user out of the Mink controlled browser and confirms. | |
UiHelperTrait:: |
protected | function | Executes a form submission. | |
UiHelperTrait:: |
protected | function | Returns whether a given user account is logged in. | |
UiHelperTrait:: |
protected | function | Takes a path and returns an absolute path. | |
UiHelperTrait:: |
protected | function | Retrieves the plain-text content from the current page. | |
UiHelperTrait:: |
protected | function | Get the current URL from the browser. | |
UiHelperTrait:: |
protected | function | Prepare for a request to testing site. | 1 |
UiHelperTrait:: |
protected | function | Fills and submits a form. | |
UserCreationTrait:: |
protected | function | Checks whether a given list of permission names is valid. | |
UserCreationTrait:: |
protected | function | Creates an administrative role. | |
UserCreationTrait:: |
protected | function | Creates a role with specified permissions. Aliased as: drupalCreateRole | |
UserCreationTrait:: |
protected | function | Create a user with a given set of permissions. Aliased as: drupalCreateUser | |
UserCreationTrait:: |
protected | function | Grant permissions to a user role. | |
UserCreationTrait:: |
protected | function | Switch the current logged in user. | |
UserCreationTrait:: |
protected | function | Creates a random user account and sets it as current user. | |
XdebugRequestTrait:: |
protected | function | Adds xdebug cookies, from request setup. |