function SearchPageRepositoryTest::testGetIndexableSearchPages

Same name and namespace in other branches
  1. 9 core/modules/search/tests/src/Unit/SearchPageRepositoryTest.php \Drupal\Tests\search\Unit\SearchPageRepositoryTest::testGetIndexableSearchPages()
  2. 10 core/modules/search/tests/src/Unit/SearchPageRepositoryTest.php \Drupal\Tests\search\Unit\SearchPageRepositoryTest::testGetIndexableSearchPages()
  3. 11.x core/modules/search/tests/src/Unit/SearchPageRepositoryTest.php \Drupal\Tests\search\Unit\SearchPageRepositoryTest::testGetIndexableSearchPages()

Tests the getIndexableSearchPages() method.

File

core/modules/search/tests/src/Unit/SearchPageRepositoryTest.php, line 116

Class

SearchPageRepositoryTest
@coversDefaultClass <a href="/api/drupal/core%21modules%21search%21src%21SearchPageRepository.php/class/SearchPageRepository/8.9.x" title="Provides a repository for Search Page config entities." class="local">\Drupal\search\SearchPageRepository</a> @group search

Namespace

Drupal\Tests\search\Unit

Code

public function testGetIndexableSearchPages() {
    $this->query
        ->expects($this->once())
        ->method('condition')
        ->with('status', TRUE)
        ->will($this->returnValue($this->query));
    $this->query
        ->expects($this->once())
        ->method('execute')
        ->will($this->returnValue([
        'test' => 'test',
        'other_test' => 'other_test',
    ]));
    $entities = [];
    $entities['test'] = $this->createMock('Drupal\\search\\SearchPageInterface');
    $entities['test']->expects($this->once())
        ->method('isIndexable')
        ->will($this->returnValue(TRUE));
    $entities['other_test'] = $this->createMock('Drupal\\search\\SearchPageInterface');
    $entities['other_test']->expects($this->once())
        ->method('isIndexable')
        ->will($this->returnValue(FALSE));
    $this->storage
        ->expects($this->once())
        ->method('loadMultiple')
        ->with([
        'test' => 'test',
        'other_test' => 'other_test',
    ])
        ->will($this->returnValue($entities));
    $result = $this->searchPageRepository
        ->getIndexableSearchPages();
    $this->assertCount(1, $result);
    $this->assertSame($entities['test'], reset($result));
}

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