function ContextDefinitionTest::testGetDataDefinition
Same name in other branches
- 8.9.x core/tests/Drupal/Tests/Core/Plugin/Context/ContextDefinitionTest.php \Drupal\Tests\Core\Plugin\Context\ContextDefinitionTest::testGetDataDefinition()
- 10 core/tests/Drupal/Tests/Core/Plugin/Context/ContextDefinitionTest.php \Drupal\Tests\Core\Plugin\Context\ContextDefinitionTest::testGetDataDefinition()
- 11.x core/tests/Drupal/Tests/Core/Plugin/Context/ContextDefinitionTest.php \Drupal\Tests\Core\Plugin\Context\ContextDefinitionTest::testGetDataDefinition()
@dataProvider providerGetDataDefinition @covers ::getDataDefinition @uses \Drupal
File
-
core/
tests/ Drupal/ Tests/ Core/ Plugin/ Context/ ContextDefinitionTest.php, line 33
Class
- ContextDefinitionTest
- Tests the ContextDefinition class.
Namespace
Drupal\Tests\Core\Plugin\ContextCode
public function testGetDataDefinition($is_multiple) {
$data_type = 'valid';
$mock_data_definition = $this->getMockBuilder('\\Drupal\\Core\\TypedData\\ListDataDefinitionInterface')
->onlyMethods([
'getConstraints',
])
->addMethods([
'setLabel',
'setDescription',
'setRequired',
'setConstraints',
])
->getMockForAbstractClass();
$mock_data_definition->expects($this->once())
->method('setLabel')
->willReturnSelf();
$mock_data_definition->expects($this->once())
->method('setDescription')
->willReturnSelf();
$mock_data_definition->expects($this->once())
->method('setRequired')
->willReturnSelf();
$mock_data_definition->expects($this->once())
->method('getConstraints')
->willReturn([]);
$mock_data_definition->expects($this->once())
->method('setConstraints')
->willReturn(NULL);
// 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->createMock(TypedDataManagerInterface::class);
// Our mocked data manager will return our mocked data definition for a
// valid data type.
$mock_data_manager->expects($this->once())
->method($create_definition_method)
->willReturnMap([
[
'not_valid',
NULL,
],
[
'valid',
$mock_data_definition,
],
]);
// Mock a ContextDefinition object, setting up expectations for many of the
// methods.
$mock_context_definition = $this->getMockBuilder('Drupal\\Core\\Plugin\\Context\\ContextDefinition')
->disableOriginalConstructor()
->onlyMethods([
'isMultiple',
'getTypedDataManager',
'getDataType',
'getLabel',
'getDescription',
'isRequired',
'getConstraints',
'setConstraints',
])
->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->expects($this->once())
->method('getDataType')
->willReturn($data_type);
$mock_context_definition->expects($this->once())
->method('getConstraints')
->willReturn([]);
$this->assertSame($mock_data_definition, $mock_context_definition->getDataDefinition());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.