View source
<?php
namespace Drupal\Tests\Core\Plugin;
use Drupal\Component\Plugin\ConfigurablePluginInterface;
use Drupal\Core\Plugin\Context\ContextDefinition;
use Drupal\Core\Plugin\Context\ContextHandler;
use Drupal\Core\Plugin\ContextAwarePluginInterface;
use Drupal\Core\TypedData\DataDefinition;
use Drupal\Core\TypedData\Plugin\DataType\StringData;
use Drupal\Tests\UnitTestCase;
class ContextHandlerTest extends UnitTestCase {
protected $contextHandler;
protected function setUp() {
parent::setUp();
$this->contextHandler = new ContextHandler();
}
public function testCheckRequirements($contexts, $requirements, $expected) {
$this
->assertSame($expected, $this->contextHandler
->checkRequirements($contexts, $requirements));
}
public function providerTestCheckRequirements() {
$requirement_optional = new ContextDefinition();
$requirement_optional
->setRequired(FALSE);
$requirement_any = new ContextDefinition();
$requirement_any
->setRequired(TRUE);
$context_any = $this
->getMock('Drupal\\Core\\Plugin\\Context\\ContextInterface');
$context_any
->expects($this
->atLeastOnce())
->method('getContextDefinition')
->will($this
->returnValue(new ContextDefinition('empty')));
$requirement_specific = new ContextDefinition('specific');
$requirement_specific
->setConstraints(array(
'bar' => 'baz',
));
$context_constraint_mismatch = $this
->getMock('Drupal\\Core\\Plugin\\Context\\ContextInterface');
$context_constraint_mismatch
->expects($this
->atLeastOnce())
->method('getContextDefinition')
->will($this
->returnValue(new ContextDefinition('foo')));
$context_datatype_mismatch = $this
->getMock('Drupal\\Core\\Plugin\\Context\\ContextInterface');
$context_datatype_mismatch
->expects($this
->atLeastOnce())
->method('getContextDefinition')
->will($this
->returnValue(new ContextDefinition('fuzzy')));
$context_definition_specific = new ContextDefinition('specific');
$context_definition_specific
->setConstraints(array(
'bar' => 'baz',
));
$context_specific = $this
->getMock('Drupal\\Core\\Plugin\\Context\\ContextInterface');
$context_specific
->expects($this
->atLeastOnce())
->method('getContextDefinition')
->will($this
->returnValue($context_definition_specific));
$data = array();
$data[] = array(
array(),
array(),
TRUE,
);
$data[] = array(
array(),
array(
$requirement_any,
),
FALSE,
);
$data[] = array(
array(),
array(
$requirement_optional,
),
TRUE,
);
$data[] = array(
array(),
array(
$requirement_any,
$requirement_optional,
),
FALSE,
);
$data[] = array(
array(
$context_any,
),
array(
$requirement_any,
),
TRUE,
);
$data[] = array(
array(
$context_constraint_mismatch,
),
array(
$requirement_specific,
),
FALSE,
);
$data[] = array(
array(
$context_datatype_mismatch,
),
array(
$requirement_specific,
),
FALSE,
);
$data[] = array(
array(
$context_specific,
),
array(
$requirement_specific,
),
TRUE,
);
return $data;
}
public function testGetMatchingContexts($contexts, $requirement, $expected = NULL) {
if (is_null($expected)) {
$expected = $contexts;
}
$this
->assertSame($expected, $this->contextHandler
->getMatchingContexts($contexts, $requirement));
}
public function providerTestGetMatchingContexts() {
$requirement_any = new ContextDefinition();
$requirement_specific = new ContextDefinition('specific');
$requirement_specific
->setConstraints(array(
'bar' => 'baz',
));
$context_any = $this
->getMock('Drupal\\Core\\Plugin\\Context\\ContextInterface');
$context_any
->expects($this
->atLeastOnce())
->method('getContextDefinition')
->will($this
->returnValue(new ContextDefinition('empty')));
$context_constraint_mismatch = $this
->getMock('Drupal\\Core\\Plugin\\Context\\ContextInterface');
$context_constraint_mismatch
->expects($this
->atLeastOnce())
->method('getContextDefinition')
->will($this
->returnValue(new ContextDefinition('foo')));
$context_datatype_mismatch = $this
->getMock('Drupal\\Core\\Plugin\\Context\\ContextInterface');
$context_datatype_mismatch
->expects($this
->atLeastOnce())
->method('getContextDefinition')
->will($this
->returnValue(new ContextDefinition('fuzzy')));
$context_definition_specific = new ContextDefinition('specific');
$context_definition_specific
->setConstraints(array(
'bar' => 'baz',
));
$context_specific = $this
->getMock('Drupal\\Core\\Plugin\\Context\\ContextInterface');
$context_specific
->expects($this
->atLeastOnce())
->method('getContextDefinition')
->will($this
->returnValue($context_definition_specific));
$data = array();
$data[] = array(
array(),
$requirement_any,
);
$data[] = array(
array(
$context_any,
),
$requirement_any,
);
$data[] = array(
array(
$context_specific,
),
$requirement_specific,
);
$data[] = array(
array(
$context_constraint_mismatch,
),
$requirement_specific,
array(),
);
$data[] = array(
array(
$context_datatype_mismatch,
),
$requirement_specific,
array(),
);
return $data;
}
public function testFilterPluginDefinitionsByContexts($has_context, $definitions, $expected) {
if ($has_context) {
$context = $this
->getMock('Drupal\\Core\\Plugin\\Context\\ContextInterface');
$expected_context_definition = (new ContextDefinition('expected_data_type'))
->setConstraints(array(
'expected_constraint_name' => 'expected_constraint_value',
));
$context
->expects($this
->atLeastOnce())
->method('getContextDefinition')
->will($this
->returnValue($expected_context_definition));
$contexts = array(
$context,
);
}
else {
$contexts = array();
}
$this
->assertSame($expected, $this->contextHandler
->filterPluginDefinitionsByContexts($contexts, $definitions));
}
public function providerTestFilterPluginDefinitionsByContexts() {
$data = array();
$plugins = array();
$data[] = array(
FALSE,
$plugins,
array(),
);
$plugins = array(
'expected_plugin' => array(),
);
$data[] = array(
FALSE,
$plugins,
$plugins,
);
$plugins = array(
'expected_plugin' => array(
'context' => array(),
),
);
$data[] = array(
FALSE,
$plugins,
$plugins,
);
$plugins = array(
'expected_plugin' => array(
'context' => array(
'context1' => new ContextDefinition('expected_data_type'),
),
),
);
$data[] = array(
FALSE,
$plugins,
array(),
);
$data[] = array(
TRUE,
$plugins,
$plugins,
);
$mismatched_context_definition = (new ContextDefinition('expected_data_type'))
->setConstraints(array(
'mismatched_constraint_name' => 'mismatched_constraint_value',
));
$plugins = array(
'expected_plugin' => array(
'context' => array(
'context1' => $mismatched_context_definition,
),
),
);
$data[] = array(
TRUE,
$plugins,
array(),
);
$optional_mismatched_context_definition = clone $mismatched_context_definition;
$optional_mismatched_context_definition
->setRequired(FALSE);
$plugins = array(
'expected_plugin' => array(
'context' => array(
'context1' => $optional_mismatched_context_definition,
),
),
);
$data[] = array(
FALSE,
$plugins,
$plugins,
);
$expected_context_definition = (new ContextDefinition('expected_data_type'))
->setConstraints(array(
'expected_constraint_name' => 'expected_constraint_value',
));
$plugins = array(
'expected_plugin' => array(
'context' => array(
'context1' => $expected_context_definition,
),
),
);
$data[] = array(
TRUE,
$plugins,
$plugins,
);
$optional_expected_context_definition = clone $expected_context_definition;
$optional_expected_context_definition
->setRequired(FALSE);
$plugins = array(
'expected_plugin' => array(
'context' => array(
'context1' => $optional_expected_context_definition,
),
),
);
$data[] = array(
FALSE,
$plugins,
$plugins,
);
$unexpected_context_definition = (new ContextDefinition('unexpected_data_type'))
->setConstraints(array(
'mismatched_constraint_name' => 'mismatched_constraint_value',
));
$plugins = array(
'unexpected_plugin' => array(
'context' => array(
'context1' => $unexpected_context_definition,
),
),
'expected_plugin' => array(
'context' => array(
'context2' => new ContextDefinition('expected_data_type'),
),
),
);
$data[] = array(
TRUE,
$plugins,
array(
'expected_plugin' => $plugins['expected_plugin'],
),
);
return $data;
}
public function testApplyContextMapping() {
$context_hit_data = StringData::createInstance(DataDefinition::create('string'));
$context_hit_data
->setValue('foo');
$context_hit = $this
->getMock('Drupal\\Core\\Plugin\\Context\\ContextInterface');
$context_hit
->expects($this
->atLeastOnce())
->method('getContextData')
->will($this
->returnValue($context_hit_data));
$context_miss_data = StringData::createInstance(DataDefinition::create('string'));
$context_miss_data
->setValue('bar');
$context_hit
->expects($this
->atLeastOnce())
->method('hasContextValue')
->willReturn(TRUE);
$context_miss = $this
->getMock('Drupal\\Core\\Plugin\\Context\\ContextInterface');
$context_miss
->expects($this
->never())
->method('getContextData');
$contexts = array(
'hit' => $context_hit,
'miss' => $context_miss,
);
$context_definition = $this
->getMock('Drupal\\Core\\Plugin\\Context\\ContextDefinitionInterface');
$plugin = $this
->getMock('Drupal\\Core\\Plugin\\ContextAwarePluginInterface');
$plugin
->expects($this
->once())
->method('getContextMapping')
->willReturn([]);
$plugin
->expects($this
->once())
->method('getContextDefinitions')
->will($this
->returnValue(array(
'hit' => $context_definition,
)));
$plugin
->expects($this
->once())
->method('setContextValue')
->with('hit', $context_hit_data);
$plugin_context = $this
->getMock('Drupal\\Core\\Plugin\\Context\\ContextInterface');
$plugin_context
->expects($this
->once())
->method('addCacheableDependency')
->with($context_hit);
$plugin
->expects($this
->once())
->method('getContext')
->with('hit')
->willReturn($plugin_context);
$this->contextHandler
->applyContextMapping($plugin, $contexts);
}
public function testApplyContextMappingMissingRequired() {
$context = $this
->getMock('Drupal\\Core\\Plugin\\Context\\ContextInterface');
$context
->expects($this
->never())
->method('getContextValue');
$contexts = array(
'name' => $context,
);
$context_definition = $this
->getMock('Drupal\\Core\\Plugin\\Context\\ContextDefinitionInterface');
$context_definition
->expects($this
->atLeastOnce())
->method('isRequired')
->willReturn(TRUE);
$plugin = $this
->getMock('Drupal\\Tests\\Core\\Plugin\\TestConfigurableContextAwarePluginInterface');
$plugin
->expects($this
->once())
->method('getContextMapping')
->willReturn([]);
$plugin
->expects($this
->once())
->method('getContextDefinitions')
->will($this
->returnValue(array(
'hit' => $context_definition,
)));
$plugin
->expects($this
->never())
->method('setContextValue');
$plugin
->expects($this
->never())
->method('getContext');
$this->contextHandler
->applyContextMapping($plugin, $contexts);
}
public function testApplyContextMappingMissingNotRequired() {
$context = $this
->getMock('Drupal\\Core\\Plugin\\Context\\ContextInterface');
$context
->expects($this
->never())
->method('getContextValue');
$contexts = array(
'name' => $context,
);
$context_definition = $this
->getMock('Drupal\\Core\\Plugin\\Context\\ContextDefinitionInterface');
$context_definition
->expects($this
->atLeastOnce())
->method('isRequired')
->willReturn(FALSE);
$plugin = $this
->getMock('Drupal\\Tests\\Core\\Plugin\\TestConfigurableContextAwarePluginInterface');
$plugin
->expects($this
->once())
->method('getContextMapping')
->willReturn([
'optional' => 'missing',
]);
$plugin
->expects($this
->once())
->method('getContextDefinitions')
->will($this
->returnValue(array(
'optional' => $context_definition,
)));
$plugin
->expects($this
->never())
->method('setContextValue');
$plugin
->expects($this
->never())
->method('getContext');
$this->contextHandler
->applyContextMapping($plugin, $contexts);
}
public function testApplyContextMappingNoValueRequired() {
$context = $this
->getMock('Drupal\\Core\\Plugin\\Context\\ContextInterface');
$context
->expects($this
->never())
->method('getContextValue');
$context
->expects($this
->atLeastOnce())
->method('hasContextValue')
->willReturn(FALSE);
$contexts = array(
'hit' => $context,
);
$context_definition = $this
->getMock('Drupal\\Core\\Plugin\\Context\\ContextDefinitionInterface');
$context_definition
->expects($this
->atLeastOnce())
->method('isRequired')
->willReturn(TRUE);
$plugin = $this
->getMock('Drupal\\Tests\\Core\\Plugin\\TestConfigurableContextAwarePluginInterface');
$plugin
->expects($this
->once())
->method('getContextMapping')
->willReturn([]);
$plugin
->expects($this
->once())
->method('getContextDefinitions')
->will($this
->returnValue(array(
'hit' => $context_definition,
)));
$plugin
->expects($this
->never())
->method('setContextValue');
$this->contextHandler
->applyContextMapping($plugin, $contexts);
}
public function testApplyContextMappingNoValueNonRequired() {
$context = $this
->getMock('Drupal\\Core\\Plugin\\Context\\ContextInterface');
$context
->expects($this
->never())
->method('getContextValue');
$context
->expects($this
->atLeastOnce())
->method('hasContextValue')
->willReturn(FALSE);
$contexts = array(
'hit' => $context,
);
$context_definition = $this
->getMock('Drupal\\Core\\Plugin\\Context\\ContextDefinitionInterface');
$context_definition
->expects($this
->atLeastOnce())
->method('isRequired')
->willReturn(FALSE);
$plugin = $this
->getMock('Drupal\\Tests\\Core\\Plugin\\TestConfigurableContextAwarePluginInterface');
$plugin
->expects($this
->once())
->method('getContextMapping')
->willReturn([]);
$plugin
->expects($this
->once())
->method('getContextDefinitions')
->will($this
->returnValue(array(
'hit' => $context_definition,
)));
$plugin
->expects($this
->never())
->method('setContextValue');
$this->contextHandler
->applyContextMapping($plugin, $contexts);
}
public function testApplyContextMappingConfigurableAssigned() {
$context_data = StringData::createInstance(DataDefinition::create('string'));
$context_data
->setValue('foo');
$context = $this
->getMock('Drupal\\Core\\Plugin\\Context\\ContextInterface');
$context
->expects($this
->atLeastOnce())
->method('getContextData')
->will($this
->returnValue($context_data));
$context
->expects($this
->atLeastOnce())
->method('hasContextValue')
->willReturn(TRUE);
$contexts = array(
'name' => $context,
);
$context_definition = $this
->getMock('Drupal\\Core\\Plugin\\Context\\ContextDefinitionInterface');
$plugin = $this
->getMock('Drupal\\Tests\\Core\\Plugin\\TestConfigurableContextAwarePluginInterface');
$plugin
->expects($this
->once())
->method('getContextMapping')
->willReturn([]);
$plugin
->expects($this
->once())
->method('getContextDefinitions')
->will($this
->returnValue(array(
'hit' => $context_definition,
)));
$plugin
->expects($this
->once())
->method('setContextValue')
->with('hit', $context_data);
$plugin_context = $this
->getMock('Drupal\\Core\\Plugin\\Context\\ContextInterface');
$plugin_context
->expects($this
->once())
->method('addCacheableDependency')
->with($context);
$plugin
->expects($this
->once())
->method('getContext')
->with('hit')
->willReturn($plugin_context);
$this->contextHandler
->applyContextMapping($plugin, $contexts, [
'hit' => 'name',
]);
}
public function testApplyContextMappingConfigurableAssignedMiss() {
$context = $this
->getMock('Drupal\\Core\\Plugin\\Context\\ContextInterface');
$context
->expects($this
->never())
->method('getContextValue');
$contexts = array(
'name' => $context,
);
$context_definition = $this
->getMock('Drupal\\Core\\Plugin\\Context\\ContextDefinitionInterface');
$plugin = $this
->getMock('Drupal\\Tests\\Core\\Plugin\\TestConfigurableContextAwarePluginInterface');
$plugin
->expects($this
->once())
->method('getContextMapping')
->willReturn([]);
$plugin
->expects($this
->once())
->method('getContextDefinitions')
->will($this
->returnValue(array(
'hit' => $context_definition,
)));
$plugin
->expects($this
->never())
->method('setContextValue');
$this->contextHandler
->applyContextMapping($plugin, $contexts, [
'miss' => 'name',
]);
}
}
interface TestConfigurableContextAwarePluginInterface extends ContextAwarePluginInterface, ConfigurablePluginInterface {
}