function EntityNormalizerTest::testNormalize
Same name in other branches
- 9 core/modules/serialization/tests/src/Unit/Normalizer/EntityNormalizerTest.php \Drupal\Tests\serialization\Unit\Normalizer\EntityNormalizerTest::testNormalize()
- 8.9.x core/modules/serialization/tests/src/Unit/Normalizer/EntityNormalizerTest.php \Drupal\Tests\serialization\Unit\Normalizer\EntityNormalizerTest::testNormalize()
- 11.x core/modules/serialization/tests/src/Unit/Normalizer/EntityNormalizerTest.php \Drupal\Tests\serialization\Unit\Normalizer\EntityNormalizerTest::testNormalize()
Tests the normalize() method.
@covers ::normalize
File
-
core/
modules/ serialization/ tests/ src/ Unit/ Normalizer/ EntityNormalizerTest.php, line 80
Class
- EntityNormalizerTest
- @coversDefaultClass \Drupal\serialization\Normalizer\EntityNormalizer @group serialization
Namespace
Drupal\Tests\serialization\Unit\NormalizerCode
public function testNormalize() : void {
$list_item_1 = $this->createMock('Drupal\\Core\\TypedData\\TypedDataInterface');
$list_item_2 = $this->createMock('Drupal\\Core\\TypedData\\TypedDataInterface');
$definitions = [
'field_1' => $list_item_1,
'field_2' => $list_item_2,
];
$content_entity = $this->getMockBuilder(ContentEntityBaseMockableClass::class)
->disableOriginalConstructor()
->onlyMethods([
'getFields',
])
->getMock();
$content_entity->expects($this->once())
->method('getFields')
->willReturn($definitions);
$serializer = $this->prophesize('Symfony\\Component\\Serializer\\Serializer');
$serializer->normalize($list_item_1, 'test_format', [])
->shouldBeCalled();
$serializer->normalize($list_item_2, 'test_format', [])
->shouldBeCalled();
$this->entityNormalizer
->setSerializer($serializer->reveal());
$this->entityNormalizer
->normalize($content_entity, 'test_format');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.