class CategoryAutocompleteTest

Same name and namespace in other branches
  1. 8.9.x core/modules/block/tests/src/Unit/CategoryAutocompleteTest.php \Drupal\Tests\block\Unit\CategoryAutocompleteTest
  2. 10 core/modules/block/tests/src/Unit/CategoryAutocompleteTest.php \Drupal\Tests\block\Unit\CategoryAutocompleteTest
  3. 11.x core/modules/block/tests/src/Unit/CategoryAutocompleteTest.php \Drupal\Tests\block\Unit\CategoryAutocompleteTest

@coversDefaultClass \Drupal\block\Controller\CategoryAutocompleteController @group block

Hierarchy

Expanded class hierarchy of CategoryAutocompleteTest

File

core/modules/block/tests/src/Unit/CategoryAutocompleteTest.php, line 14

Namespace

Drupal\Tests\block\Unit
View source
class CategoryAutocompleteTest extends UnitTestCase {
    
    /**
     * The autocomplete controller.
     *
     * @var \Drupal\block\Controller\CategoryAutocompleteController
     */
    protected $autocompleteController;
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() : void {
        $block_manager = $this->createMock('Drupal\\Core\\Block\\BlockManagerInterface');
        $block_manager->expects($this->any())
            ->method('getCategories')
            ->willReturn([
            '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

Title Sort descending Deprecated Modifiers Object type Summary Overriden Title Overrides
CategoryAutocompleteTest::$autocompleteController protected property The autocomplete controller.
CategoryAutocompleteTest::providerTestAutocompleteSuggestions public function Data provider for testAutocompleteSuggestions().
CategoryAutocompleteTest::setUp protected function Overrides UnitTestCase::setUp
CategoryAutocompleteTest::testAutocompleteSuggestions public function Tests the autocomplete method.
PhpUnitWarnings::$deprecationWarnings private static property Deprecation warnings from PHPUnit to raise with @trigger_error().
PhpUnitWarnings::addWarning public function Converts PHPUnit deprecation warnings to E_USER_DEPRECATED.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals Deprecated protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.
UnitTestCase::setUpBeforeClass public static function

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.