class ViewsHandlerManagerTest in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views/tests/src/Unit/ViewsHandlerManagerTest.php \Drupal\Tests\views\Unit\ViewsHandlerManagerTest
Tests the ViewsHandlerManager class.
@group views
@coversDefaultClass \Drupal\views\Plugin\ViewsHandlerManager
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \Drupal\Tests\PHPUnit_Framework_TestCase
- class \Drupal\Tests\views\Unit\ViewsHandlerManagerTest
Expanded class hierarchy of ViewsHandlerManagerTest
File
- core/
modules/ views/ tests/ src/ Unit/ ViewsHandlerManagerTest.php, line 20 - Contains \Drupal\Tests\views\Unit\ViewsHandlerManagerTest.
Namespace
Drupal\Tests\views\UnitView source
class ViewsHandlerManagerTest extends UnitTestCase {
/**
* @var \Drupal\views\Plugin\ViewsHandlerManager
*/
protected $handlerManager;
/**
* @var \Drupal\Core\Extension\ModuleHandlerInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $moduleHandler;
/**
* The mocked views data.
*
* @var \Drupal\views\ViewsData|\PHPUnit_Framework_MockObject_MockObject
*/
protected $viewsData;
/**
* The mocked factory.
*
* @var \Drupal\Component\Plugin\Factory\FactoryInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $factory;
/**
* {@inheritdoc}
*/
public function setUp() {
$this->viewsData = $this
->getMockBuilder('Drupal\\views\\ViewsData')
->disableOriginalConstructor()
->getMock();
$cache_backend = $this
->getMock('Drupal\\Core\\Cache\\CacheBackendInterface');
$this->moduleHandler = $this
->getMock('Drupal\\Core\\Extension\\ModuleHandlerInterface');
$this->handlerManager = new ViewsHandlerManager('test', new \ArrayObject(array()), $this->viewsData, $cache_backend, $this->moduleHandler);
}
/**
* Setups of the plugin factory.
*/
protected function setupMockedFactory() {
$this->factory = $this
->getMock('Drupal\\Component\\Plugin\\Factory\\FactoryInterface');
$reflection = new \ReflectionClass($this->handlerManager);
$property = $reflection
->getProperty('factory');
$property
->setAccessible(TRUE);
$property
->setValue($this->handlerManager, $this->factory);
}
/**
* Tests that hook_views_plugins_TYPE_alter() is invoked for a handler type.
*
* @covers ::__construct
* @covers ::getDefinitions
*/
public function testAlterHookInvocation() {
$this->moduleHandler
->expects($this
->once())
->method('alter')
->with('views_plugins_test', array());
$this->handlerManager
->getDefinitions();
}
/**
* Tests getHandler() and its base information propagation.
*/
public function testGetHandlerBaseInformationPropagation() {
$this
->setupMockedFactory();
$item = [];
$item['table'] = 'test_table';
$item['field'] = 'test_field';
$views_data = [];
$views_data['test_field']['test']['id'] = 'test_id';
$views_data['test_field']['test']['more_information'] = 'test_id';
$views_data['test_field']['group'] = 'test_group';
$views_data['test_field']['title'] = 'test title';
$views_data['test_field']['real field'] = 'test real field';
$views_data['test_field']['real table'] = 'test real table';
$views_data['test_field']['entity field'] = 'test entity field';
$this->viewsData
->expects($this
->once())
->method('get')
->with('test_table')
->willReturn($views_data);
$expected_definition = [
'id' => 'test_id',
'more_information' => 'test_id',
'group' => 'test_group',
'title' => 'test title',
'real field' => 'test real field',
'real table' => 'test real table',
'entity field' => 'test entity field',
];
$plugin = $this
->getMock('Drupal\\views\\Plugin\\views\\ViewsHandlerInterface');
$this->factory
->expects($this
->once())
->method('createInstance')
->with('test_id', $expected_definition)
->willReturn($plugin);
$result = $this->handlerManager
->getHandler($item);
$this
->assertSame($plugin, $result);
}
/**
* Tests getHandler() with an override.
*/
public function testGetHandlerOverride() {
$this
->setupMockedFactory();
$item = [];
$item['table'] = 'test_table';
$item['field'] = 'test_field';
$views_data = [];
$views_data['test_field']['test']['id'] = 'test_id';
$this->viewsData
->expects($this
->once())
->method('get')
->with('test_table')
->willReturn($views_data);
$plugin = $this
->getMock('Drupal\\views\\Plugin\\views\\ViewsHandlerInterface');
$this->factory
->expects($this
->once())
->method('createInstance')
->with('test_override')
->willReturn($plugin);
$result = $this->handlerManager
->getHandler($item, 'test_override');
$this
->assertSame($plugin, $result);
}
/**
* Tests getHandler() without an override.
*/
public function testGetHandlerNoOverride() {
$this
->setupMockedFactory();
$item = [];
$item['table'] = 'test_table';
$item['field'] = 'test_field';
$views_data = [];
$views_data['test_field']['test']['id'] = 'test_id';
$this->viewsData
->expects($this
->once())
->method('get')
->with('test_table')
->willReturn($views_data);
$plugin = $this
->getMock('Drupal\\views\\Plugin\\views\\ViewsHandlerInterface');
$this->factory
->expects($this
->once())
->method('createInstance')
->with('test_id')
->willReturn($plugin);
$result = $this->handlerManager
->getHandler($item);
$this
->assertSame($plugin, $result);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed in 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. | |
ViewsHandlerManagerTest:: |
protected | property | The mocked factory. | |
ViewsHandlerManagerTest:: |
protected | property | ||
ViewsHandlerManagerTest:: |
protected | property | ||
ViewsHandlerManagerTest:: |
protected | property | The mocked views data. | |
ViewsHandlerManagerTest:: |
public | function |
Overrides UnitTestCase:: |
|
ViewsHandlerManagerTest:: |
protected | function | Setups of the plugin factory. | |
ViewsHandlerManagerTest:: |
public | function | Tests that hook_views_plugins_TYPE_alter() is invoked for a handler type. | |
ViewsHandlerManagerTest:: |
public | function | Tests getHandler() and its base information propagation. | |
ViewsHandlerManagerTest:: |
public | function | Tests getHandler() without an override. | |
ViewsHandlerManagerTest:: |
public | function | Tests getHandler() with an override. |