class EntityConverterTest in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Core/ParamConverter/EntityConverterTest.php \Drupal\Tests\Core\ParamConverter\EntityConverterTest
@coversDefaultClass \Drupal\Core\ParamConverter\EntityConverter @group ParamConverter @group Entity
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \Drupal\Tests\PHPUnit_Framework_TestCase
- class \Drupal\Tests\Core\ParamConverter\EntityConverterTest
Expanded class hierarchy of EntityConverterTest
File
- core/
tests/ Drupal/ Tests/ Core/ ParamConverter/ EntityConverterTest.php, line 19 - Contains \Drupal\Tests\Core\ParamConverter\EntityConverterTest.
Namespace
Drupal\Tests\Core\ParamConverterView source
class EntityConverterTest extends UnitTestCase {
/**
* The mocked entity manager.
*
* @var \Drupal\Core\Entity\EntityManagerInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $entityManager;
/**
* The tested entity converter.
*
* @var \Drupal\Core\ParamConverter\EntityConverter
*/
protected $entityConverter;
/**
* {@inheritdoc}
*/
protected function setUp() {
parent::setUp();
$this->entityManager = $this
->getMock('Drupal\\Core\\Entity\\EntityManagerInterface');
$this->entityConverter = new EntityConverter($this->entityManager);
}
/**
* Tests the applies() method.
*
* @dataProvider providerTestApplies
*
* @covers ::applies
*/
public function testApplies(array $definition, $name, Route $route, $applies) {
$this->entityManager
->expects($this
->any())
->method('hasDefinition')
->willReturnCallback(function ($entity_type) {
return 'entity_test' == $entity_type;
});
$this
->assertEquals($applies, $this->entityConverter
->applies($definition, $name, $route));
}
/**
* Provides test data for testApplies()
*/
public function providerTestApplies() {
$data = [];
$data[] = [
[
'type' => 'entity:foo',
],
'foo',
new Route('/test/{foo}/bar'),
FALSE,
];
$data[] = [
[
'type' => 'entity:entity_test',
],
'foo',
new Route('/test/{foo}/bar'),
TRUE,
];
$data[] = [
[
'type' => 'entity:entity_test',
],
'entity_test',
new Route('/test/{entity_test}/bar'),
TRUE,
];
$data[] = [
[
'type' => 'entity:{entity_test}',
],
'entity_test',
new Route('/test/{entity_test}/bar'),
FALSE,
];
$data[] = [
[
'type' => 'entity:{entity_type}',
],
'entity_test',
new Route('/test/{entity_type}/{entity_test}/bar'),
TRUE,
];
$data[] = [
[
'type' => 'foo',
],
'entity_test',
new Route('/test/{entity_type}/{entity_test}/bar'),
FALSE,
];
return $data;
}
/**
* Tests the convert() method.
*
* @dataProvider providerTestConvert
*
* @covers ::convert
*/
public function testConvert($value, array $definition, array $defaults, $expected_result) {
$entity_storage = $this
->getMock('Drupal\\Core\\Entity\\EntityStorageInterface');
$this->entityManager
->expects($this
->once())
->method('getStorage')
->with('entity_test')
->willReturn($entity_storage);
$entity_storage
->expects($this
->any())
->method('load')
->willReturnMap([
[
'valid_id',
(object) [
'id' => 'valid_id',
],
],
[
'invalid_id',
NULL,
],
]);
$this
->assertEquals($expected_result, $this->entityConverter
->convert($value, $definition, 'foo', $defaults));
}
/**
* Provides test data for testConvert
*/
public function providerTestConvert() {
$data = [];
// Existing entity type.
$data[] = [
'valid_id',
[
'type' => 'entity:entity_test',
],
[
'foo' => 'valid_id',
],
(object) [
'id' => 'valid_id',
],
];
// Invalid ID.
$data[] = [
'invalid_id',
[
'type' => 'entity:entity_test',
],
[
'foo' => 'invalid_id',
],
NULL,
];
// Entity type placeholder.
$data[] = [
'valid_id',
[
'type' => 'entity:{entity_type}',
],
[
'foo' => 'valid_id',
'entity_type' => 'entity_test',
],
(object) [
'id' => 'valid_id',
],
];
return $data;
}
/**
* Tests the convert() method with an invalid entity type.
*
* @expectedException \Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException
*/
public function testConvertWithInvalidEntityType() {
$this->entityManager
->expects($this
->once())
->method('getStorage')
->with('invalid_id')
->willThrowException(new \Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException('invalid_id'));
$this->entityConverter
->convert('id', [
'type' => 'entity:invalid_id',
], 'foo', [
'foo' => 'id',
]);
}
/**
* Tests the convert() method with an invalid dynamic entity type.
*
* @expectedException \Drupal\Core\ParamConverter\ParamNotConvertedException
* @expectedExceptionMessage The "foo" parameter was not converted because the "invalid_id" parameter is missing
*/
public function testConvertWithInvalidDynamicEntityType() {
$this->entityConverter
->convert('id', [
'type' => 'entity:{invalid_id}',
], 'foo', [
'foo' => 'id',
]);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
EntityConverterTest:: |
protected | property | The tested entity converter. | |
EntityConverterTest:: |
protected | property | The mocked entity manager. | |
EntityConverterTest:: |
public | function | Provides test data for testApplies() | |
EntityConverterTest:: |
public | function | Provides test data for testConvert | |
EntityConverterTest:: |
protected | function |
Overrides UnitTestCase:: |
|
EntityConverterTest:: |
public | function | Tests the applies() method. | |
EntityConverterTest:: |
public | function | Tests the convert() method. | |
EntityConverterTest:: |
public | function | Tests the convert() method with an invalid dynamic entity type. | |
EntityConverterTest:: |
public | function | Tests the convert() method with an invalid entity type. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed in array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. |