Drupal 8.0.0 beta 12. More info: https://www.drupal.org/node/2514176
This commit is contained in:
commit
9921556621
13277 changed files with 1459781 additions and 0 deletions
284
core/modules/search/tests/src/Unit/SearchPageRepositoryTest.php
Normal file
284
core/modules/search/tests/src/Unit/SearchPageRepositoryTest.php
Normal file
|
@ -0,0 +1,284 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Contains \Drupal\Tests\search\Unit\SearchPageRepositoryTest.
|
||||
*/
|
||||
|
||||
namespace Drupal\Tests\search\Unit;
|
||||
|
||||
use Drupal\search\Entity\SearchPage;
|
||||
use Drupal\search\SearchPageRepository;
|
||||
use Drupal\Tests\UnitTestCase;
|
||||
|
||||
/**
|
||||
* @coversDefaultClass \Drupal\search\SearchPageRepository
|
||||
* @group search
|
||||
*/
|
||||
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() {
|
||||
$this->query = $this->getMock('Drupal\Core\Entity\Query\QueryInterface');
|
||||
|
||||
$this->storage = $this->getMock('Drupal\Core\Config\Entity\ConfigEntityStorageInterface');
|
||||
$this->storage->expects($this->any())
|
||||
->method('getQuery')
|
||||
->will($this->returnValue($this->query));
|
||||
|
||||
$entity_manager = $this->getMock('Drupal\Core\Entity\EntityManagerInterface');
|
||||
$entity_manager->expects($this->any())
|
||||
->method('getStorage')
|
||||
->will($this->returnValue($this->storage));
|
||||
|
||||
$this->configFactory = $this->getMock('Drupal\Core\Config\ConfigFactoryInterface');
|
||||
$this->searchPageRepository = new SearchPageRepository($this->configFactory, $entity_manager);
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests the getActiveSearchPages() method.
|
||||
*/
|
||||
public function testGetActiveSearchPages() {
|
||||
$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(array('test' => 'test', 'other_test' => 'other_test')));
|
||||
|
||||
$entities = array();
|
||||
$entities['test'] = $this->getMock('Drupal\search\SearchPageInterface');
|
||||
$entities['other_test'] = $this->getMock('Drupal\search\SearchPageInterface');
|
||||
$this->storage->expects($this->once())
|
||||
->method('loadMultiple')
|
||||
->with(array('test' => 'test', 'other_test' => 'other_test'))
|
||||
->will($this->returnValue($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)
|
||||
->will($this->returnValue($this->query));
|
||||
$this->query->expects($this->once())
|
||||
->method('range')
|
||||
->with(0, 1)
|
||||
->will($this->returnValue($this->query));
|
||||
$this->query->expects($this->once())
|
||||
->method('execute')
|
||||
->will($this->returnValue(array('test' => 'test')));
|
||||
|
||||
$this->assertSame(TRUE, $this->searchPageRepository->isSearchActive());
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests the getIndexableSearchPages() method.
|
||||
*/
|
||||
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(array('test' => 'test', 'other_test' => 'other_test')));
|
||||
|
||||
$entities = array();
|
||||
$entities['test'] = $this->getMock('Drupal\search\SearchPageInterface');
|
||||
$entities['test']->expects($this->once())
|
||||
->method('isIndexable')
|
||||
->will($this->returnValue(TRUE));
|
||||
$entities['other_test'] = $this->getMock('Drupal\search\SearchPageInterface');
|
||||
$entities['other_test']->expects($this->once())
|
||||
->method('isIndexable')
|
||||
->will($this->returnValue(FALSE));
|
||||
$this->storage->expects($this->once())
|
||||
->method('loadMultiple')
|
||||
->with(array('test' => 'test', 'other_test' => 'other_test'))
|
||||
->will($this->returnValue($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')
|
||||
->will($this->returnValue($config));
|
||||
$this->configFactory->expects($this->once())
|
||||
->method('getEditable')
|
||||
->with('search.settings')
|
||||
->will($this->returnValue($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)
|
||||
->will($this->returnValue($this->query));
|
||||
$this->query->expects($this->once())
|
||||
->method('execute')
|
||||
->will($this->returnValue(array('test' => 'test', 'other_test' => 'other_test')));
|
||||
|
||||
$config = $this->getMockBuilder('Drupal\Core\Config\Config')
|
||||
->disableOriginalConstructor()
|
||||
->getMock();
|
||||
$config->expects($this->once())
|
||||
->method('get')
|
||||
->with('default_page')
|
||||
->will($this->returnValue('test'));
|
||||
$this->configFactory->expects($this->once())
|
||||
->method('get')
|
||||
->with('search.settings')
|
||||
->will($this->returnValue($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)
|
||||
->will($this->returnValue($this->query));
|
||||
$this->query->expects($this->once())
|
||||
->method('execute')
|
||||
->will($this->returnValue(array('test' => 'test')));
|
||||
|
||||
$config = $this->getMockBuilder('Drupal\Core\Config\Config')
|
||||
->disableOriginalConstructor()
|
||||
->getMock();
|
||||
$config->expects($this->once())
|
||||
->method('get')
|
||||
->with('default_page')
|
||||
->will($this->returnValue('other_test'));
|
||||
$this->configFactory->expects($this->once())
|
||||
->method('get')
|
||||
->with('search.settings')
|
||||
->will($this->returnValue($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)
|
||||
->will($this->returnValue($config));
|
||||
$config->expects($this->once())
|
||||
->method('save')
|
||||
->will($this->returnValue($config));
|
||||
$this->configFactory->expects($this->once())
|
||||
->method('getEditable')
|
||||
->with('search.settings')
|
||||
->will($this->returnValue($config));
|
||||
|
||||
$search_page = $this->getMock('Drupal\search\SearchPageInterface');
|
||||
$search_page->expects($this->once())
|
||||
->method('id')
|
||||
->will($this->returnValue($id));
|
||||
$search_page->expects($this->once())
|
||||
->method('enable')
|
||||
->will($this->returnValue($search_page));
|
||||
$search_page->expects($this->once())
|
||||
->method('save')
|
||||
->will($this->returnValue($search_page));
|
||||
$this->searchPageRepository->setDefaultSearchPage($search_page);
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests the sortSearchPages() method.
|
||||
*/
|
||||
public function testSortSearchPages() {
|
||||
$entity_type = $this->getMock('Drupal\Core\Entity\EntityTypeInterface');
|
||||
$entity_type->expects($this->any())
|
||||
->method('getClass')
|
||||
->will($this->returnValue('Drupal\Tests\search\Unit\TestSearchPage'));
|
||||
$this->storage->expects($this->once())
|
||||
->method('getEntityType')
|
||||
->will($this->returnValue($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(array('weight' => 0, 'status' => FALSE, 'label' => 'Test4'));
|
||||
$unsorted_entities['test3'] = new TestSearchPage(array('weight' => 10, 'status' => TRUE, 'label' => 'Test3'));
|
||||
$unsorted_entities['test2'] = new TestSearchPage(array('weight' => 0, 'status' => TRUE, 'label' => 'Test2'));
|
||||
$unsorted_entities['test1'] = new TestSearchPage(array('weight' => 0, 'status' => TRUE, 'label' => 'Test1'));
|
||||
$expected = $unsorted_entities;
|
||||
ksort($expected);
|
||||
|
||||
$sorted_entities = $this->searchPageRepository->sortSearchPages($unsorted_entities);
|
||||
$this->assertSame($expected, $sorted_entities);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
class TestSearchPage extends SearchPage {
|
||||
public function __construct(array $values) {
|
||||
foreach ($values as $key => $value) {
|
||||
$this->$key = $value;
|
||||
}
|
||||
}
|
||||
public function label($langcode = NULL) {
|
||||
return $this->label;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,76 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Contains \Drupal\Tests\search\Unit\SearchPluginCollectionTest.
|
||||
*/
|
||||
|
||||
namespace Drupal\Tests\search\Unit;
|
||||
|
||||
use Drupal\search\Plugin\SearchPluginCollection;
|
||||
use Drupal\Tests\UnitTestCase;
|
||||
|
||||
/**
|
||||
* @coversDefaultClass \Drupal\search\Plugin\SearchPluginCollection
|
||||
* @group search
|
||||
*/
|
||||
class SearchPluginCollectionTest extends UnitTestCase {
|
||||
|
||||
/**
|
||||
* The mocked plugin manager.
|
||||
*
|
||||
* @var \Drupal\Component\Plugin\PluginManagerInterface|\PHPUnit_Framework_MockObject_MockObject
|
||||
*/
|
||||
protected $pluginManager;
|
||||
|
||||
/**
|
||||
* The tested plugin collection.
|
||||
*
|
||||
* @var \Drupal\search\Plugin\SearchPluginCollection
|
||||
*/
|
||||
protected $searchPluginCollection;
|
||||
|
||||
/**
|
||||
* Stores all setup plugin instances.
|
||||
*
|
||||
* @var \Drupal\search\Plugin\SearchInterface[]
|
||||
*/
|
||||
protected $pluginInstances;
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
protected function setUp() {
|
||||
$this->pluginManager = $this->getMock('Drupal\Component\Plugin\PluginManagerInterface');
|
||||
$this->searchPluginCollection = new SearchPluginCollection($this->pluginManager, 'banana', array('id' => 'banana', 'color' => 'yellow'), 'fruit_stand');
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests the get() method.
|
||||
*/
|
||||
public function testGet() {
|
||||
$plugin = $this->getMock('Drupal\search\Plugin\SearchInterface');
|
||||
$this->pluginManager->expects($this->once())
|
||||
->method('createInstance')
|
||||
->will($this->returnValue($plugin));
|
||||
$this->assertSame($plugin, $this->searchPluginCollection->get('banana'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests the get() method with a configurable plugin.
|
||||
*/
|
||||
public function testGetWithConfigurablePlugin() {
|
||||
$plugin = $this->getMock('Drupal\search\Plugin\ConfigurableSearchPluginInterface');
|
||||
$plugin->expects($this->once())
|
||||
->method('setSearchPageId')
|
||||
->with('fruit_stand')
|
||||
->will($this->returnValue($plugin));
|
||||
|
||||
$this->pluginManager->expects($this->once())
|
||||
->method('createInstance')
|
||||
->will($this->returnValue($plugin));
|
||||
|
||||
$this->assertSame($plugin, $this->searchPluginCollection->get('banana'));
|
||||
}
|
||||
|
||||
}
|
Reference in a new issue