View source
<?php
namespace Drupal\Tests\Core\Render;
use Drupal\Core\Render\ElementInfoManager;
use Drupal\Core\Theme\ActiveTheme;
use Drupal\Tests\UnitTestCase;
class ElementInfoManagerTest extends UnitTestCase {
protected $elementInfo;
protected $cache;
protected $moduleHandler;
protected $themeManager;
protected $cacheTagsInvalidator;
protected function setUp() : void {
parent::setUp();
$this->cache = $this
->createMock('Drupal\\Core\\Cache\\CacheBackendInterface');
$this->cacheTagsInvalidator = $this
->createMock('Drupal\\Core\\Cache\\CacheTagsInvalidatorInterface');
$this->moduleHandler = $this
->createMock('Drupal\\Core\\Extension\\ModuleHandlerInterface');
$this->themeManager = $this
->createMock('Drupal\\Core\\Theme\\ThemeManagerInterface');
$this->elementInfo = new ElementInfoManager(new \ArrayObject(), $this->cache, $this->cacheTagsInvalidator, $this->moduleHandler, $this->themeManager);
}
public function testGetInfoElementPlugin($plugin_class, $expected_info) {
$this->moduleHandler
->expects($this
->once())
->method('alter')
->with('element_info', $this
->anything())
->will($this
->returnArgument(0));
$plugin = $this
->createMock($plugin_class);
$plugin
->expects($this
->once())
->method('getInfo')
->willReturn([
'#theme' => 'page',
]);
$element_info = $this
->getMockBuilder('Drupal\\Core\\Render\\ElementInfoManager')
->setConstructorArgs([
new \ArrayObject(),
$this->cache,
$this->cacheTagsInvalidator,
$this->moduleHandler,
$this->themeManager,
])
->setMethods([
'getDefinitions',
'createInstance',
])
->getMock();
$this->themeManager
->expects($this
->any())
->method('getActiveTheme')
->willReturn(new ActiveTheme([
'name' => 'test',
]));
$element_info
->expects($this
->once())
->method('createInstance')
->with('page')
->willReturn($plugin);
$element_info
->expects($this
->once())
->method('getDefinitions')
->willReturn([
'page' => [
'class' => 'TestElementPlugin',
],
]);
$this
->assertEquals($expected_info, $element_info
->getInfo('page'));
}
public function providerTestGetInfoElementPlugin() {
$data = [];
$data[] = [
'Drupal\\Core\\Render\\Element\\ElementInterface',
[
'#type' => 'page',
'#theme' => 'page',
'#defaults_loaded' => TRUE,
],
];
$data[] = [
'Drupal\\Core\\Render\\Element\\FormElementInterface',
[
'#type' => 'page',
'#theme' => 'page',
'#input' => TRUE,
'#value_callback' => [
'TestElementPlugin',
'valueCallback',
],
'#defaults_loaded' => TRUE,
],
];
return $data;
}
public function testGetInfoProperty() {
$this->themeManager
->method('getActiveTheme')
->willReturn(new ActiveTheme([
'name' => 'test',
]));
$element_info = new TestElementInfoManager(new \ArrayObject(), $this->cache, $this->cacheTagsInvalidator, $this->moduleHandler, $this->themeManager);
$this
->assertSame('baz', $element_info
->getInfoProperty('foo', '#bar'));
$this
->assertNull($element_info
->getInfoProperty('foo', '#non_existing_property'));
$this
->assertSame('qux', $element_info
->getInfoProperty('foo', '#non_existing_property', 'qux'));
}
}
class TestElementInfoManager extends ElementInfoManager {
protected $elementInfo = [
'test' => [
'foo' => [
'#bar' => 'baz',
],
],
];
}