View source
<?php
namespace Drupal\Tests\facets_summary\Functional;
use Drupal\Core\Language\LanguageInterface;
use Drupal\search_api\Item\Field;
use Drupal\taxonomy\Entity\Term;
use Drupal\Tests\field\Traits\EntityReferenceTestTrait;
use Drupal\Tests\facets\Functional\FacetsTestBase;
use Drupal\Tests\taxonomy\Traits\TaxonomyTestTrait;
class HierarchicalFacetIntegrationTest extends FacetsTestBase {
use TaxonomyTestTrait;
use EntityReferenceTestTrait;
public static $modules = [
'facets_summary',
];
protected $vocabulary;
protected $fieldName;
protected $facetEditPage;
protected $parents = [];
protected $terms = [];
public function setUp() {
parent::setUp();
$this->blocks = NULL;
$this
->drupalLogin($this->adminUser);
$this->vocabulary = $this
->createVocabulary();
$this
->createHierarchialTermStructure();
$this
->setUpExampleStructure();
$this->fieldName = 'hierarchy_field';
$fieldLabel = 'Hierarchy field';
$this
->createEntityReferenceField('entity_test_mulrev_changed', 'article', $this->fieldName, $fieldLabel, 'taxonomy_term');
$this
->createEntityReferenceField('entity_test_mulrev_changed', 'item', $this->fieldName, $fieldLabel, 'taxonomy_term');
$this
->insertExampleContent();
$index = $this
->getIndex();
$term_field = new Field($index, $this->fieldName);
$term_field
->setType('integer');
$term_field
->setPropertyPath($this->fieldName);
$term_field
->setDatasourceId('entity:entity_test_mulrev_changed');
$term_field
->setLabel($fieldLabel);
$index
->addField($term_field);
$index
->save();
$this
->indexItems($this->indexId);
$facet_name = 'hierarchical facet';
$facet_id = 'hierarchical_facet';
$this->facetEditPage = 'admin/config/search/facets/' . $facet_id . '/edit';
$this
->createFacet($facet_name, $facet_id, $this->fieldName);
}
public function testHierarchicalFacet() {
$this
->drupalGet($this->facetEditPage);
$this
->clickLink('Search api index processor configuration');
$this
->assertSession()
->statusCodeEquals(200);
$this
->drupalGet($this->facetEditPage);
$edit = [
'facet_settings[use_hierarchy]' => '1',
'facet_settings[translate_entity][status]' => TRUE,
];
$this
->drupalPostForm(NULL, $edit, 'Save');
$values = [
'name' => 'Owl',
'id' => 'owl',
'facet_source_id' => 'search_api:views_page__search_api_test_view__page_1',
];
$this
->drupalPostForm('admin/config/search/facets/add-facet-summary', $values, 'Save');
$this
->drupalPostForm(NULL, [], 'Save');
$block = [
'region' => 'footer',
'id' => str_replace('_', '-', 'owl'),
'weight' => 50,
];
$block = $this
->drupalPlaceBlock('facets_summary_block:owl', $block);
$this
->drupalGet('search-api-test-fulltext');
$this
->assertFacetBlocksAppear();
$this
->assertFacetLabel('Parent 1');
$this
->assertFacetLabel('Parent 2');
$this
->assertSession()
->linkNotExists('Child 1');
$this
->assertSession()
->linkNotExists('Child 2');
$this
->assertSession()
->linkNotExists('Child 3');
$this
->assertSession()
->linkNotExists('Child 4');
$this
->assertSession()
->pageTextContains($block
->label());
$this
->clickLink('Parent 1');
$this
->assertFacetBlocksAppear();
$this
->checkFacetIsActive('Parent 1');
$this
->assertFacetLabel('Child 1');
$this
->assertFacetLabel('Child 2');
$this
->assertSession()
->linkNotExists('Child 3');
$this
->assertSession()
->linkNotExists('Child 4');
$this
->assertSession()
->pageTextContains($block
->label());
}
protected function createHierarchialTermStructure() {
foreach ([
'Parent 1',
'Parent 2',
] as $name) {
$this->parents[$name] = Term::create([
'name' => $name,
'description' => '',
'vid' => $this->vocabulary
->id(),
'langcode' => LanguageInterface::LANGCODE_NOT_SPECIFIED,
]);
$this->parents[$name]
->save();
}
foreach (range(1, 4) as $i) {
$this->terms[$i] = Term::create([
'name' => sprintf('Child %d', $i),
'description' => '',
'vid' => $this->vocabulary
->id(),
'langcode' => LanguageInterface::LANGCODE_NOT_SPECIFIED,
]);
$this->terms[$i]
->save();
}
$this->terms[1]->parent = [
$this->parents['Parent 1']
->id(),
];
$this->terms[1]
->save();
$this->terms[2]->parent = [
$this->parents['Parent 1']
->id(),
];
$this->terms[2]
->save();
$this->terms[3]->parent = [
$this->parents['Parent 2']
->id(),
];
$this->terms[3]
->save();
$this->terms[4]->parent = [
$this->parents['Parent 2']
->id(),
];
$this->terms[4]
->save();
}
protected function insertExampleContent() {
$entity_test_storage = \Drupal::entityTypeManager()
->getStorage('entity_test_mulrev_changed');
$this->entities[1] = $entity_test_storage
->create([
'name' => 'foo bar baz',
'body' => 'test test',
'type' => 'item',
'keywords' => [
'orange',
],
'category' => 'item_category',
$this->fieldName => [
$this->parents['Parent 1']
->id(),
],
]);
$this->entities[1]
->save();
$this->entities[2] = $entity_test_storage
->create([
'name' => 'foo test',
'body' => 'bar test',
'type' => 'item',
'keywords' => [
'orange',
'apple',
'grape',
],
'category' => 'item_category',
$this->fieldName => [
$this->parents['Parent 2']
->id(),
],
]);
$this->entities[2]
->save();
$this->entities[3] = $entity_test_storage
->create([
'name' => 'bar',
'body' => 'test foobar',
'type' => 'item',
$this->fieldName => [
$this->terms[1]
->id(),
],
]);
$this->entities[3]
->save();
$this->entities[4] = $entity_test_storage
->create([
'name' => 'foo baz',
'body' => 'test test test',
'type' => 'article',
'keywords' => [
'apple',
'strawberry',
'grape',
],
'category' => 'article_category',
$this->fieldName => [
$this->terms[2]
->id(),
],
]);
$this->entities[4]
->save();
$this->entities[5] = $entity_test_storage
->create([
'name' => 'bar baz',
'body' => 'foo',
'type' => 'article',
'keywords' => [
'orange',
'strawberry',
'grape',
'banana',
],
'category' => 'article_category',
$this->fieldName => [
$this->terms[3]
->id(),
],
]);
$this->entities[5]
->save();
$this->entities[6] = $entity_test_storage
->create([
'name' => 'bar baz',
'body' => 'foo',
'type' => 'article',
'keywords' => [
'orange',
'strawberry',
'grape',
'banana',
],
'category' => 'article_category',
$this->fieldName => [
$this->terms[4]
->id(),
],
]);
$this->entities[6]
->save();
}
}