TaxonomyFieldAllTermsTest.php in Zircon Profile 8
File
core/modules/taxonomy/src/Tests/Views/TaxonomyFieldAllTermsTest.php
View source
<?php
namespace Drupal\taxonomy\Tests\Views;
use Drupal\views\Views;
use Drupal\taxonomy\Entity\Vocabulary;
class TaxonomyFieldAllTermsTest extends TaxonomyTestBase {
public static $testViews = array(
'taxonomy_all_terms_test',
);
public function testViewsHandlerAllTermsField() {
$this->term1
->setName('<em>Markup</em>')
->save();
$view = Views::getView('taxonomy_all_terms_test');
$this
->executeView($view);
$this
->drupalGet('taxonomy_all_terms_test');
$actual = $this
->xpath('//a[@href="' . $this->term1
->url() . '"]');
$this
->assertEqual(count($actual), 2, 'Correct number of taxonomy term1 links');
$this
->assertEqual($actual[0]
->__toString(), $this->term1
->label());
$this
->assertEqual($actual[1]
->__toString(), $this->term1
->label());
$this
->assertEscaped($this->term1
->label());
$actual = $this
->xpath('//a[@href="' . $this->term2
->url() . '"]');
$this
->assertEqual(count($actual), 2, 'Correct number of taxonomy term2 links');
$this
->assertEqual($actual[0]
->__toString(), $this->term2
->label());
$this
->assertEqual($actual[1]
->__toString(), $this->term2
->label());
}
public function testViewsHandlerAllTermsWithTokens() {
$view = Views::getView('taxonomy_all_terms_test');
$this
->drupalGet('taxonomy_all_terms_token_test');
$this
->assertText('Term: ' . $this->term1
->getName());
$this
->assertText('The taxonomy term ID for the term: ' . $this->term1
->id());
$this
->assertText('The taxonomy term name for the term: ' . $this->term1
->getName());
$this
->assertText('The machine name for the vocabulary the term belongs to: ' . $this->term1
->getVocabularyId());
$vocabulary = Vocabulary::load($this->term1
->bundle());
$this
->assertText('The name for the vocabulary the term belongs to: ' . $vocabulary
->label());
}
}