public function OptionalContextConditionTest::testContextAvailable in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/KernelTests/Core/Plugin/Condition/OptionalContextConditionTest.php \Drupal\KernelTests\Core\Plugin\Condition\OptionalContextConditionTest::testContextAvailable()
Tests with both contexts mapped to the same user.
File
- core/
tests/ Drupal/ KernelTests/ Core/ Plugin/ Condition/ OptionalContextConditionTest.php, line 57
Class
- OptionalContextConditionTest
- Tests a condition with optional context.
Namespace
Drupal\KernelTests\Core\Plugin\ConditionCode
public function testContextAvailable() {
NodeType::create([
'type' => 'example',
'name' => 'Example',
])
->save();
/** @var \Drupal\Core\Condition\ConditionPluginBase $condition */
$condition = \Drupal::service('plugin.manager.condition')
->createInstance('condition_test_optional_context')
->setContextMapping([
'node' => 'node',
]);
$node = Node::create([
'type' => 'example',
]);
$contexts['node'] = EntityContext::fromEntity($node);
\Drupal::service('context.handler')
->applyContextMapping($condition, $contexts);
$this
->assertFalse($condition
->execute());
}