Skip to content

Commit

Permalink
Merge branch '6.3' into 6.4
Browse files Browse the repository at this point in the history
* 6.3:
  [Serializer] Revert allowed attributes fix
  • Loading branch information
nicolas-grekas committed Nov 29, 2023
2 parents 8abe7fe + 180e173 commit d04ef91
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 26 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -260,16 +260,20 @@ protected function getAttributes(object $object, ?string $format, array $context
return $this->attributesCache[$key];
}

$attributes = $this->extractAttributes($object, $format, $context);
$allowedAttributes = $this->getAllowedAttributes($object, $context, true);

if ($mapping = $this->classDiscriminatorResolver?->getMappingForMappedObject($object)) {
array_unshift($attributes, $mapping->getTypeProperty());
if (false !== $allowedAttributes) {
if ($context['cache_key']) {
$this->attributesCache[$key] = $allowedAttributes;
}

return $allowedAttributes;
}

$allowedAttributes = $this->getAllowedAttributes($object, $context, true);
$attributes = $this->extractAttributes($object, $format, $context);

if (false !== $allowedAttributes) {
$attributes = $attributes ? array_intersect($attributes, $allowedAttributes) : $allowedAttributes;
if ($mapping = $this->classDiscriminatorResolver?->getMappingForMappedObject($object)) {
array_unshift($attributes, $mapping->getTypeProperty());
}

if ($context['cache_key'] && \stdClass::class !== $class) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
use Symfony\Component\PropertyInfo\Type;
use Symfony\Component\Serializer\Attribute\Context;
use Symfony\Component\Serializer\Attribute\DiscriminatorMap;
use Symfony\Component\Serializer\Attribute\Ignore;
use Symfony\Component\Serializer\Attribute\SerializedName;
use Symfony\Component\Serializer\Attribute\SerializedPath;
use Symfony\Component\Serializer\Exception\ExtraAttributesException;
Expand Down Expand Up @@ -837,14 +836,6 @@ public function testDenormalizeWithCorrectOrderOfAttributeAndProperty()
$this->assertSame('nested-id', $test->id);
}

public function testNormalizeWithIgnoreAttributeAndPrivateProperties()
{
$classMetadataFactory = new ClassMetadataFactory(new AttributeLoader());
$normalizer = new ObjectNormalizer($classMetadataFactory);

$this->assertSame(['foo' => 'foo'], $normalizer->normalize(new ObjectDummyWithIgnoreAttributeAndPrivateProperty()));
}

public function testNormalizeBasedOnAllowedAttributes()
{
$normalizer = new class() extends AbstractObjectNormalizer {
Expand Down Expand Up @@ -1084,16 +1075,6 @@ class ObjectDummyWithContextAttributeSkipNullValues
public ?string $propertyWithNullSkipNullValues = null;
}

class ObjectDummyWithIgnoreAttributeAndPrivateProperty
{
public $foo = 'foo';

#[Ignore]
public $ignored = 'ignored';

private $private = 'private';
}

class AbstractObjectNormalizerWithMetadata extends AbstractObjectNormalizer
{
public function __construct()
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Serializer/Tests/SerializerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ public function testDeserializeAndSerializeInterfacedObjectsWithTheClassMetadata
'groups' => ['two'],
]);

$this->assertEquals('{"type":"one","two":2}', $serialized);
$this->assertEquals('{"two":2,"type":"one"}', $serialized);
}

public function testDeserializeAndSerializeNestedInterfacedObjectsWithTheClassMetadataDiscriminator()
Expand Down

0 comments on commit d04ef91

Please sign in to comment.