You are here

public function EntitySerializationTest::testDenormalizeStringValue in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/serialization/tests/src/Kernel/EntitySerializationTest.php \Drupal\Tests\serialization\Kernel\EntitySerializationTest::testDenormalizeStringValue()
  2. 9 core/modules/serialization/tests/src/Kernel/EntitySerializationTest.php \Drupal\Tests\serialization\Kernel\EntitySerializationTest::testDenormalizeStringValue()

Tests normalizing/denormalizing using string values.

File

core/modules/serialization/tests/src/Kernel/EntitySerializationTest.php, line 363

Class

EntitySerializationTest
Tests that entities can be serialized to supported core formats.

Namespace

Drupal\Tests\serialization\Kernel

Code

public function testDenormalizeStringValue() {
  $this
    ->expectException(\LogicException::class);
  $this
    ->expectExceptionMessage('The generic FieldItemNormalizer cannot denormalize string values for "value" properties of the "serialized_long" field (field item class: Drupal\\Core\\Field\\Plugin\\Field\\FieldType\\StringLongItem).');
  $this->serializer
    ->denormalize([
    'serialized_long' => [
      'boo',
    ],
    'type' => 'entity_test_serialized_field',
  ], EntitySerializedField::class);
}