class CategoryAutocompleteTest in Drupal 8
Same name and namespace in other branches
- 9 core/modules/block/tests/src/Unit/CategoryAutocompleteTest.php \Drupal\Tests\block\Unit\CategoryAutocompleteTest
@coversDefaultClass \Drupal\block\Controller\CategoryAutocompleteController @group block
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses PhpunitCompatibilityTrait
- class \Drupal\Tests\block\Unit\CategoryAutocompleteTest
Expanded class hierarchy of CategoryAutocompleteTest
File
- core/
modules/ block/ tests/ src/ Unit/ CategoryAutocompleteTest.php, line 14
Namespace
Drupal\Tests\block\UnitView source
class CategoryAutocompleteTest extends UnitTestCase {
/**
* The autocomplete controller.
*
* @var \Drupal\block\Controller\CategoryAutocompleteController
*/
protected $autocompleteController;
protected function setUp() {
$block_manager = $this
->createMock('Drupal\\Core\\Block\\BlockManagerInterface');
$block_manager
->expects($this
->any())
->method('getCategories')
->will($this
->returnValue([
'Comment',
'Node',
'None & Such',
'User',
]));
$this->autocompleteController = new CategoryAutocompleteController($block_manager);
}
/**
* Tests the autocomplete method.
*
* @param string $string
* The string entered into the autocomplete.
* @param array $suggestions
* The array of expected suggestions.
*
* @see \Drupal\block\Controller\CategoryAutocompleteController::autocomplete()
*
* @dataProvider providerTestAutocompleteSuggestions
*/
public function testAutocompleteSuggestions($string, $suggestions) {
$suggestions = array_map(function ($suggestion) {
return [
'value' => $suggestion,
'label' => Html::escape($suggestion),
];
}, $suggestions);
$result = $this->autocompleteController
->autocomplete(new Request([
'q' => $string,
]));
$this
->assertSame($suggestions, json_decode($result
->getContent(), TRUE));
}
/**
* Data provider for testAutocompleteSuggestions().
*
* @return array
*/
public function providerTestAutocompleteSuggestions() {
$test_parameters = [];
$test_parameters[] = [
'string' => 'Com',
'suggestions' => [
'Comment',
],
];
$test_parameters[] = [
'string' => 'No',
'suggestions' => [
'Node',
'None & Such',
],
];
$test_parameters[] = [
'string' => 'us',
'suggestions' => [
'User',
],
];
$test_parameters[] = [
'string' => 'Banana',
'suggestions' => [],
];
return $test_parameters;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CategoryAutocompleteTest:: |
protected | property | The autocomplete controller. | |
CategoryAutocompleteTest:: |
public | function | Data provider for testAutocompleteSuggestions(). | |
CategoryAutocompleteTest:: |
protected | function |
Overrides UnitTestCase:: |
|
CategoryAutocompleteTest:: |
public | function | Tests the autocomplete method. | |
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. |