View source
<?php
namespace Drupal\Tests\facets\Unit\Plugin\widget;
use Drupal\facets\Plugin\facets\widget\DropdownWidget;
class DropdownWidgetTest extends WidgetTestBase {
protected function setUp() {
parent::setUp();
$this->widget = new DropdownWidget([
'show_numbers' => TRUE,
], 'dropdown_widget', []);
}
public function testNoFilterResults() {
$facet = $this->facet;
$facet
->setResults($this->originalResults);
$output = $this->widget
->build($facet);
$this
->assertSame('array', gettype($output));
$this
->assertCount(4, $output['#items']);
$this
->assertEquals([
'facet-inactive',
'js-facets-dropdown-links',
], $output['#attributes']['class']);
$expected_links = [
$this
->buildLinkAssertion('Llama', 'llama', $facet, 10),
$this
->buildLinkAssertion('Badger', 'badger', $facet, 20),
$this
->buildLinkAssertion('Duck', 'duck', $facet, 15),
$this
->buildLinkAssertion('Alpaca', 'alpaca', $facet, 9),
];
foreach ($expected_links as $index => $value) {
$this
->assertSame('array', gettype($output['#items'][$index]));
$this
->assertEquals($value, $output['#items'][$index]['#title']);
$this
->assertSame('array', gettype($output['#items'][$index]['#title']));
$this
->assertEquals('link', $output['#items'][$index]['#type']);
$this
->assertEquals([
'facet-item',
], $output['#items'][$index]['#wrapper_attributes']['class']);
}
}
public function testDefaultConfiguration() {
$default_config = $this->widget
->defaultConfiguration();
$this
->assertArrayHasKey('show_numbers', $default_config);
$this
->assertArrayHasKey('default_option_label', $default_config);
}
}