class SearchPageRepositoryTest

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

@coversDefaultClass \Drupal\search\SearchPageRepository @group search

Hierarchy

Expanded class hierarchy of SearchPageRepositoryTest

File

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

Namespace

Drupal\Tests\search\Unit
View source
class SearchPageRepositoryTest extends UnitTestCase {
    
    /**
     * The search page repository.
     *
     * @var \Drupal\search\SearchPageRepository
     */
    protected $searchPageRepository;
    
    /**
     * The entity query object.
     *
     * @var \Drupal\Core\Entity\Query\QueryInterface|\PHPUnit\Framework\MockObject\MockObject
     */
    protected $query;
    
    /**
     * The search page storage.
     *
     * @var \Drupal\Core\Config\Entity\ConfigEntityStorageInterface|\PHPUnit\Framework\MockObject\MockObject
     */
    protected $storage;
    
    /**
     * The config factory.
     *
     * @var \Drupal\Core\Config\ConfigFactoryInterface|\PHPUnit\Framework\MockObject\MockObject
     */
    protected $configFactory;
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() : void {
        $this->query = $this->createMock('Drupal\\Core\\Entity\\Query\\QueryInterface');
        $this->storage = $this->createMock('Drupal\\Core\\Config\\Entity\\ConfigEntityStorageInterface');
        $this->storage
            ->expects($this->any())
            ->method('getQuery')
            ->willReturn($this->query);
        
        /** @var \Drupal\Core\Entity\EntityTypeManagerInterface|\PHPUnit\Framework\MockObject\MockObject $entity_type_manager */
        $entity_type_manager = $this->createMock(EntityTypeManagerInterface::class);
        $entity_type_manager->expects($this->any())
            ->method('getStorage')
            ->willReturn($this->storage);
        $this->configFactory = $this->createMock('Drupal\\Core\\Config\\ConfigFactoryInterface');
        $this->searchPageRepository = new SearchPageRepository($this->configFactory, $entity_type_manager);
    }
    
    /**
     * Tests the getActiveSearchPages() method.
     */
    public function testGetActiveSearchPages() {
        $this->query
            ->expects($this->once())
            ->method('condition')
            ->with('status', TRUE)
            ->willReturn($this->query);
        $this->query
            ->expects($this->once())
            ->method('execute')
            ->willReturn([
            'test' => 'test',
            'other_test' => 'other_test',
        ]);
        $entities = [];
        $entities['test'] = $this->createMock('Drupal\\search\\SearchPageInterface');
        $entities['other_test'] = $this->createMock('Drupal\\search\\SearchPageInterface');
        $this->storage
            ->expects($this->once())
            ->method('loadMultiple')
            ->with([
            'test' => 'test',
            'other_test' => 'other_test',
        ])
            ->willReturn($entities);
        $result = $this->searchPageRepository
            ->getActiveSearchPages();
        $this->assertSame($entities, $result);
    }
    
    /**
     * Tests the isSearchActive() method.
     */
    public function testIsSearchActive() {
        $this->query
            ->expects($this->once())
            ->method('condition')
            ->with('status', TRUE)
            ->willReturn($this->query);
        $this->query
            ->expects($this->once())
            ->method('range')
            ->with(0, 1)
            ->willReturn($this->query);
        $this->query
            ->expects($this->once())
            ->method('execute')
            ->willReturn([
            'test' => 'test',
        ]);
        $this->assertTrue($this->searchPageRepository
            ->isSearchActive());
    }
    
    /**
     * Tests the getIndexableSearchPages() method.
     */
    public function testGetIndexableSearchPages() {
        $this->query
            ->expects($this->once())
            ->method('condition')
            ->with('status', TRUE)
            ->willReturn($this->query);
        $this->query
            ->expects($this->once())
            ->method('execute')
            ->willReturn([
            'test' => 'test',
            'other_test' => 'other_test',
        ]);
        $entities = [];
        $entities['test'] = $this->createMock('Drupal\\search\\SearchPageInterface');
        $entities['test']->expects($this->once())
            ->method('isIndexable')
            ->willReturn(TRUE);
        $entities['other_test'] = $this->createMock('Drupal\\search\\SearchPageInterface');
        $entities['other_test']->expects($this->once())
            ->method('isIndexable')
            ->willReturn(FALSE);
        $this->storage
            ->expects($this->once())
            ->method('loadMultiple')
            ->with([
            'test' => 'test',
            'other_test' => 'other_test',
        ])
            ->willReturn($entities);
        $result = $this->searchPageRepository
            ->getIndexableSearchPages();
        $this->assertCount(1, $result);
        $this->assertSame($entities['test'], reset($result));
    }
    
    /**
     * Tests the clearDefaultSearchPage() method.
     */
    public function testClearDefaultSearchPage() {
        $config = $this->getMockBuilder('Drupal\\Core\\Config\\Config')
            ->disableOriginalConstructor()
            ->getMock();
        $config->expects($this->once())
            ->method('clear')
            ->with('default_page')
            ->willReturn($config);
        $this->configFactory
            ->expects($this->once())
            ->method('getEditable')
            ->with('search.settings')
            ->willReturn($config);
        $this->searchPageRepository
            ->clearDefaultSearchPage();
    }
    
    /**
     * Tests the getDefaultSearchPage() method when the default is active.
     */
    public function testGetDefaultSearchPageWithActiveDefault() {
        $this->query
            ->expects($this->once())
            ->method('condition')
            ->with('status', TRUE)
            ->willReturn($this->query);
        $this->query
            ->expects($this->once())
            ->method('execute')
            ->willReturn([
            'test' => 'test',
            'other_test' => 'other_test',
        ]);
        $config = $this->getMockBuilder('Drupal\\Core\\Config\\Config')
            ->disableOriginalConstructor()
            ->getMock();
        $config->expects($this->once())
            ->method('get')
            ->with('default_page')
            ->willReturn('test');
        $this->configFactory
            ->expects($this->once())
            ->method('get')
            ->with('search.settings')
            ->willReturn($config);
        $this->assertSame('test', $this->searchPageRepository
            ->getDefaultSearchPage());
    }
    
    /**
     * Tests the getDefaultSearchPage() method when the default is inactive.
     */
    public function testGetDefaultSearchPageWithInactiveDefault() {
        $this->query
            ->expects($this->once())
            ->method('condition')
            ->with('status', TRUE)
            ->willReturn($this->query);
        $this->query
            ->expects($this->once())
            ->method('execute')
            ->willReturn([
            'test' => 'test',
        ]);
        $config = $this->getMockBuilder('Drupal\\Core\\Config\\Config')
            ->disableOriginalConstructor()
            ->getMock();
        $config->expects($this->once())
            ->method('get')
            ->with('default_page')
            ->willReturn('other_test');
        $this->configFactory
            ->expects($this->once())
            ->method('get')
            ->with('search.settings')
            ->willReturn($config);
        $this->assertSame('test', $this->searchPageRepository
            ->getDefaultSearchPage());
    }
    
    /**
     * Tests the setDefaultSearchPage() method.
     */
    public function testSetDefaultSearchPage() {
        $id = 'bananas';
        $config = $this->getMockBuilder('Drupal\\Core\\Config\\Config')
            ->disableOriginalConstructor()
            ->getMock();
        $config->expects($this->once())
            ->method('set')
            ->with('default_page', $id)
            ->willReturn($config);
        $config->expects($this->once())
            ->method('save')
            ->willReturn($config);
        $this->configFactory
            ->expects($this->once())
            ->method('getEditable')
            ->with('search.settings')
            ->willReturn($config);
        $search_page = $this->createMock('Drupal\\search\\SearchPageInterface');
        $search_page->expects($this->once())
            ->method('id')
            ->willReturn($id);
        $search_page->expects($this->once())
            ->method('enable')
            ->willReturn($search_page);
        $search_page->expects($this->once())
            ->method('save')
            ->willReturn($search_page);
        $this->searchPageRepository
            ->setDefaultSearchPage($search_page);
    }
    
    /**
     * Tests the sortSearchPages() method.
     */
    public function testSortSearchPages() {
        $entity_type = $this->createMock('Drupal\\Core\\Entity\\EntityTypeInterface');
        $entity_type->expects($this->any())
            ->method('getClass')
            ->willReturn('Drupal\\Tests\\search\\Unit\\TestSearchPage');
        $this->storage
            ->expects($this->once())
            ->method('getEntityType')
            ->willReturn($entity_type);
        // Declare entities out of their expected order so we can be sure they were
        // sorted. We cannot mock these because of uasort(), see
        // https://bugs.php.net/bug.php?id=50688.
        $unsorted_entities['test4'] = new TestSearchPage([
            'weight' => 0,
            'status' => FALSE,
            'label' => 'Test4',
        ]);
        $unsorted_entities['test3'] = new TestSearchPage([
            'weight' => 10,
            'status' => TRUE,
            'label' => 'Test3',
        ]);
        $unsorted_entities['test2'] = new TestSearchPage([
            'weight' => 0,
            'status' => TRUE,
            'label' => 'Test2',
        ]);
        $unsorted_entities['test1'] = new TestSearchPage([
            'weight' => 0,
            'status' => TRUE,
            'label' => 'Test1',
        ]);
        $expected = $unsorted_entities;
        ksort($expected);
        $sorted_entities = $this->searchPageRepository
            ->sortSearchPages($unsorted_entities);
        $this->assertSame($expected, $sorted_entities);
    }

}

Members

Title Sort descending Deprecated Modifiers Object type Summary Overriden Title Overrides
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.
SearchPageRepositoryTest::$configFactory protected property The config factory.
SearchPageRepositoryTest::$query protected property The entity query object.
SearchPageRepositoryTest::$searchPageRepository protected property The search page repository.
SearchPageRepositoryTest::$storage protected property The search page storage.
SearchPageRepositoryTest::setUp protected function Overrides UnitTestCase::setUp
SearchPageRepositoryTest::testClearDefaultSearchPage public function Tests the clearDefaultSearchPage() method.
SearchPageRepositoryTest::testGetActiveSearchPages public function Tests the getActiveSearchPages() method.
SearchPageRepositoryTest::testGetDefaultSearchPageWithActiveDefault public function Tests the getDefaultSearchPage() method when the default is active.
SearchPageRepositoryTest::testGetDefaultSearchPageWithInactiveDefault public function Tests the getDefaultSearchPage() method when the default is inactive.
SearchPageRepositoryTest::testGetIndexableSearchPages public function Tests the getIndexableSearchPages() method.
SearchPageRepositoryTest::testIsSearchActive public function Tests the isSearchActive() method.
SearchPageRepositoryTest::testSetDefaultSearchPage public function Tests the setDefaultSearchPage() method.
SearchPageRepositoryTest::testSortSearchPages public function Tests the sortSearchPages() method.
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.