You are here

protected function OptionalContextConditionTest::testContextNoValue in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/system/tests/modules/condition_test/src/Tests/OptionalContextConditionTest.php \Drupal\condition_test\Tests\OptionalContextConditionTest::testContextNoValue()

Tests with both contexts mapped to the same user.

File

core/modules/system/tests/modules/condition_test/src/Tests/OptionalContextConditionTest.php, line 45
Contains \Drupal\condition_test\Tests\OptionalContextConditionTest.

Class

OptionalContextConditionTest
Tests a condition with optional context.

Namespace

Drupal\condition_test\Tests

Code

protected function testContextNoValue() {

  /** @var \Drupal\Core\Condition\ConditionPluginBase $condition */
  $condition = \Drupal::service('plugin.manager.condition')
    ->createInstance('condition_test_optional_context')
    ->setContextMapping([
    'node' => 'node',
  ]);
  $definition = new ContextDefinition('entity:node');
  $contexts['node'] = new Context($definition);
  \Drupal::service('context.handler')
    ->applyContextMapping($condition, $contexts);
  $this
    ->assertTrue($condition
    ->execute());
}