function TermIndexTest::testTaxonomyTermHierarchyBreadcrumbs in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/taxonomy/src/Tests/TermIndexTest.php \Drupal\taxonomy\Tests\TermIndexTest::testTaxonomyTermHierarchyBreadcrumbs()
Tests that there is a link to the parent term on the child term page.
File
- core/
modules/ taxonomy/ src/ Tests/ TermIndexTest.php, line 205 - Contains \Drupal\taxonomy\Tests\TermIndexTest.
Class
- TermIndexTest
- Tests the hook implementations that maintain the taxonomy index.
Namespace
Drupal\taxonomy\TestsCode
function testTaxonomyTermHierarchyBreadcrumbs() {
// Create two taxonomy terms and set term2 as the parent of term1.
$term1 = $this
->createTerm($this->vocabulary);
$term2 = $this
->createTerm($this->vocabulary);
$term1->parent = array(
$term2
->id(),
);
$term1
->save();
// Verify that the page breadcrumbs include a link to the parent term.
$this
->drupalGet('taxonomy/term/' . $term1
->id());
// Breadcrumbs are not rendered with a language, prevent the term
// language from being added to the options.
$this
->assertRaw(\Drupal::l($term2
->getName(), $term2
->urlInfo('canonical', [
'language' => NULL,
])), 'Parent term link is displayed when viewing the node.');
}