class ArrayWidgetTest in Facets 8
Unit test for widget.
@group facets
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses PhpunitCompatibilityTrait
- class \Drupal\Tests\facets\Unit\Plugin\widget\WidgetTestBase
- class \Drupal\Tests\facets\Unit\Plugin\widget\ArrayWidgetTest
- class \Drupal\Tests\facets\Unit\Plugin\widget\WidgetTestBase
Expanded class hierarchy of ArrayWidgetTest
File
- tests/
src/ Unit/ Plugin/ widget/ ArrayWidgetTest.php, line 13
Namespace
Drupal\Tests\facets\Unit\Plugin\widgetView source
class ArrayWidgetTest extends WidgetTestBase {
/**
* {@inheritdoc}
*/
protected function setUp() {
parent::setUp();
$this->widget = new ArrayWidget([
'show_numbers' => 1,
], 'array_widget', []);
}
/**
* Tests widget without filters.
*/
public function testNoFilterResults() {
$facet = new Facet([], 'facets_facet');
$facet
->setResults($this->originalResults);
$facet
->setFieldIdentifier('tag');
$output = $this->widget
->build($facet);
$this
->assertSame('array', gettype($output));
$this
->assertCount(4, $output['tag']);
$expected_links = [
[
'url' => NULL,
'values' => [
'value' => 'Llama',
'count' => 10,
],
],
[
'url' => NULL,
'values' => [
'value' => 'Badger',
'count' => 20,
],
],
[
'url' => NULL,
'values' => [
'value' => 'Duck',
'count' => 15,
],
],
[
'url' => NULL,
'values' => [
'value' => 'Alpaca',
'count' => 9,
],
],
];
foreach ($expected_links as $index => $value) {
$this
->assertSame('array', gettype($output['tag'][$index]));
$this
->assertEquals($value['values']['value'], $output['tag'][$index]['values']['value']);
$this
->assertEquals($value['values']['count'], $output['tag'][$index]['values']['count']);
}
}
/**
* {@inheritdoc}
*/
public function testDefaultConfiguration() {
$default_config = $this->widget
->defaultConfiguration();
$expected = [
'show_numbers' => FALSE,
];
$this
->assertEquals($expected, $default_config);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ArrayWidgetTest:: |
protected | function |
Sets up the container and other variables used in all the tests. Overrides WidgetTestBase:: |
|
ArrayWidgetTest:: |
public | function |
Tests default configuration. Overrides WidgetTestBase:: |
|
ArrayWidgetTest:: |
public | function | Tests widget without filters. | |
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. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | 1 |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | 1 |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. | |
WidgetTestBase:: |
protected | property | The facet used for the widget test. | |
WidgetTestBase:: |
protected | property | An array containing the results for the widget. | |
WidgetTestBase:: |
protected | property | An array of possible query types. | |
WidgetTestBase:: |
protected | property | The widget to be tested. | |
WidgetTestBase:: |
protected | function | Build a formattable markup object to use as assertion. | |
WidgetTestBase:: |
public | function | Tests get query type. | 1 |
WidgetTestBase:: |
public | function | Tests default for required properties. | 1 |