OptionalContextConditionTest.php
Same filename in other branches
Namespace
Drupal\KernelTests\Core\Plugin\ConditionFile
-
core/
tests/ Drupal/ KernelTests/ Core/ Plugin/ Condition/ OptionalContextConditionTest.php
View source
<?php
declare (strict_types=1);
namespace Drupal\KernelTests\Core\Plugin\Condition;
use Drupal\Core\Plugin\Context\Context;
use Drupal\Core\Plugin\Context\EntityContext;
use Drupal\Core\Plugin\Context\EntityContextDefinition;
use Drupal\KernelTests\KernelTestBase;
use Drupal\node\Entity\Node;
use Drupal\node\Entity\NodeType;
/**
* Tests a condition with optional context.
*
* @group condition_test
*/
class OptionalContextConditionTest extends KernelTestBase {
/**
* {@inheritdoc}
*/
protected static $modules = [
'system',
'user',
'condition_test',
'node',
];
/**
* Tests with both contexts mapped to the same user.
*/
public function testContextMissing() : void {
/** @var \Drupal\Core\Condition\ConditionPluginBase $condition */
$condition = \Drupal::service('plugin.manager.condition')->createInstance('condition_test_optional_context')
->setContextMapping([
'node' => 'node',
]);
\Drupal::service('context.handler')->applyContextMapping($condition, []);
$this->assertTrue($condition->execute());
}
/**
* Tests with both contexts mapped to the same user.
*/
public function testContextNoValue() : void {
/** @var \Drupal\Core\Condition\ConditionPluginBase $condition */
$condition = \Drupal::service('plugin.manager.condition')->createInstance('condition_test_optional_context')
->setContextMapping([
'node' => 'node',
]);
$definition = EntityContextDefinition::fromEntityTypeId('node');
$contexts['node'] = new Context($definition);
\Drupal::service('context.handler')->applyContextMapping($condition, $contexts);
$this->assertTrue($condition->execute());
}
/**
* Tests with both contexts mapped to the same user.
*/
public function testContextAvailable() : void {
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());
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
OptionalContextConditionTest | Tests a condition with optional context. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.