Skip to content
Snippets Groups Projects
Commit 2cceb4a9 authored by catch's avatar catch
Browse files

Issue #3046243 by tim.plunkett, jibran, dpi: Regression: Optional context...

Issue #3046243 by tim.plunkett, jibran, dpi: Regression: Optional context values may throw exceptions if unsatisfied
parent fdbee96a
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -5,6 +5,7 @@
use Drupal\Component\Plugin\Definition\ContextAwarePluginDefinitionInterface;
use Drupal\Component\Plugin\Exception\ContextException;
use Drupal\Component\Plugin\Exception\MissingValueContextException;
use Drupal\Component\Plugin\Exception\PluginException;
use Drupal\Core\Cache\CacheableDependencyInterface;
use Drupal\Core\Plugin\ContextAwarePluginInterface;
......@@ -110,19 +111,36 @@ public function applyContextMapping(ContextAwarePluginInterface $plugin, $contex
// Collect required contexts that exist but are missing a value.
$missing_value[] = $plugin_context_id;
}
// Proceed to the next definition.
continue;
}
try {
$context = $plugin->getContext($context_id);
}
catch (ContextException $e) {
$context = NULL;
}
// @todo Remove in https://www.drupal.org/project/drupal/issues/3046342.
catch (PluginException $e) {
$context = NULL;
}
elseif (($context = $plugin->getContext($context_id)) && $context->hasContextValue()) {
if ($context && $context->hasContextValue()) {
// Ignore mappings if the plugin has a value for a missing context.
unset($mappings[$plugin_context_id]);
continue;
}
elseif ($plugin_context_definition->isRequired()) {
if ($plugin_context_definition->isRequired()) {
// Collect required contexts that are missing.
$missing_value[] = $plugin_context_id;
continue;
}
else {
// Ignore mappings for optional missing context.
unset($mappings[$plugin_context_id]);
}
// Ignore mappings for optional missing context.
unset($mappings[$plugin_context_id]);
}
// If there are any mappings that were not satisfied, throw an exception.
......
......@@ -18,7 +18,6 @@
use Drupal\Core\DependencyInjection\ClassResolverInterface;
use Drupal\Core\DependencyInjection\ContainerBuilder;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Core\Plugin\Context\Context;
use Drupal\Core\Plugin\Context\ContextDefinition;
use Drupal\Core\Plugin\Context\ContextHandler;
use Drupal\Core\Plugin\ContextAwarePluginInterface;
......@@ -379,9 +378,9 @@ public function testApplyContextMappingMissingRequired() {
->method('setContext');
// No context, so no cacheability metadata can be passed along.
$plugin->expects($this->once())
$plugin->expects($this->any())
->method('getContext')
->willReturn(new Context($context_definition));
->willThrowException(new ContextException());
$this->setExpectedException(MissingValueContextException::class, 'Required contexts without a value: hit');
$this->contextHandler->applyContextMapping($plugin, $contexts);
......@@ -415,9 +414,9 @@ public function testApplyContextMappingMissingNotRequired() {
->method('setContext');
// No context, so no cacheability metadata can be passed along.
$plugin->expects($this->once())
$plugin->expects($this->any())
->method('getContext')
->willReturn(new Context($context_definition));
->willThrowException(new ContextException());
$this->contextHandler->applyContextMapping($plugin, $contexts);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment