You are here

public function ContextHandlerTest::testApplyContextMappingNoValueRequired in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Core/Plugin/ContextHandlerTest.php \Drupal\Tests\Core\Plugin\ContextHandlerTest::testApplyContextMappingNoValueRequired()

@covers ::applyContextMapping

@expectedException \Drupal\Component\Plugin\Exception\ContextException @expectedExceptionMessage Required contexts without a value: hit.

File

core/tests/Drupal/Tests/Core/Plugin/ContextHandlerTest.php, line 357
Contains \Drupal\Tests\Core\Plugin\ContextHandlerTest.

Class

ContextHandlerTest
@coversDefaultClass \Drupal\Core\Plugin\Context\ContextHandler @group Plugin

Namespace

Drupal\Tests\Core\Plugin

Code

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);
}