You are here

public function ContextDefinitionTest::testGetDataDefinitionInvalidType in Zircon Profile 8

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

@expectedException \Exception @dataProvider providerGetDataDefinition @covers ::getDataDefinition @uses \Drupal @uses Drupal\Component\Utility\SafeMarkup

File

core/tests/Drupal/Tests/Core/Plugin/Context/ContextDefinitionTest.php, line 123
Contains \Drupal\Tests\Core\Plugin\Context\ContextDefinitionTest.

Class

ContextDefinitionTest
Tests the ContextDefinition class.

Namespace

Drupal\Tests\Core\Plugin\Context

Code

public function testGetDataDefinitionInvalidType($is_multiple) {

  // Since we're trying to make getDataDefinition() throw an exception in
  // isolation, we use a data type which is not valid.
  $data_type = 'not_valid';
  $mock_data_definition = $this
    ->getMockBuilder('\\Drupal\\Core\\TypedData\\ListDataDefinitionInterface')
    ->getMockForAbstractClass();

  // Follow code paths for both multiple and non-multiple definitions.
  $create_definition_method = 'createDataDefinition';
  if ($is_multiple) {
    $create_definition_method = 'createListDataDefinition';
  }
  $mock_data_manager = $this
    ->getMockBuilder('\\Drupal\\Core\\TypedData\\TypedDataManager')
    ->disableOriginalConstructor()
    ->setMethods(array(
    $create_definition_method,
  ))
    ->getMock();

  // Our mocked data manager will return NULL for a non-valid data type. This
  // will eventually cause getDataDefinition() to throw an exception.
  $mock_data_manager
    ->expects($this
    ->once())
    ->method($create_definition_method)
    ->willReturnMap(array(
    array(
      'not_valid',
      NULL,
    ),
    array(
      'valid',
      $mock_data_definition,
    ),
  ));

  // Mock a ContextDefinition object with expectations for only the methods
  // that will be called before the expected exception.
  $mock_context_definition = $this
    ->getMockBuilder('Drupal\\Core\\Plugin\\Context\\ContextDefinition')
    ->disableOriginalConstructor()
    ->setMethods(array(
    'isMultiple',
    'getTypedDataManager',
    'getDataType',
  ))
    ->getMock();
  $mock_context_definition
    ->expects($this
    ->once())
    ->method('isMultiple')
    ->willReturn($is_multiple);
  $mock_context_definition
    ->expects($this
    ->once())
    ->method('getTypedDataManager')
    ->willReturn($mock_data_manager);
  $mock_context_definition
    ->method('getDataType')
    ->willReturn($data_type);
  $this
    ->assertSame($mock_data_definition, $mock_context_definition
    ->getDataDefinition());
}