Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1176a45

Browse files
committedJun 28, 2017
Update Swagger's definition keys (more verbose)
1 parent cadf763 commit 1176a45

File tree

3 files changed

+26
-25
lines changed

3 files changed

+26
-25
lines changed
 

‎features/swagger/docs.feature

+12-12
Original file line numberDiff line numberDiff line change
@@ -17,31 +17,31 @@ Feature: Documentation support
1717
# Supported classes
1818
And the Swagger class "AbstractDummy" exists
1919
And the Swagger class "CircularReference" exists
20-
And the Swagger class "CircularReference_a0dd2858dcb0d966f739c1ac906afa2e" exists
20+
And the Swagger class "CircularReference-circular" exists
2121
And the Swagger class "CompositeItem" exists
2222
And the Swagger class "CompositeLabel" exists
2323
And the Swagger class "ConcreteDummy" exists
2424
And the Swagger class "CustomIdentifierDummy" exists
25-
And the Swagger class "CustomNormalizedDummy_601856395b57c6b15175297eb6c9890e" exists
26-
And the Swagger class "CustomNormalizedDummy_db9cba1a967111a02380774784c47722" exists
25+
And the Swagger class "CustomNormalizedDummy-input" exists
26+
And the Swagger class "CustomNormalizedDummy-output" exists
2727
And the Swagger class "CustomWritableIdentifierDummy" exists
2828
And the Swagger class "Dummy" exists
2929
And the Swagger class "RelatedDummy" exists
3030
And the Swagger class "DummyTableInheritance" exists
3131
And the Swagger class "DummyTableInheritanceChild" exists
32-
And the Swagger class "OverriddenOperationDummy_441e1f98db3d0250bcb18dca087687c3" exists
33-
And the Swagger class "OverriddenOperationDummy_45f46ed6dc6f412229a8c12cd5583586" exists
34-
And the Swagger class "OverriddenOperationDummy_868796b9924a520acbb96f8b75dade9f" exists
35-
And the Swagger class "OverriddenOperationDummy_ff74003f36aebfe31c696fae1f701ae4" exists
32+
And the Swagger class "OverriddenOperationDummy-overridden_operation_dummy_get" exists
33+
And the Swagger class "OverriddenOperationDummy-overridden_operation_dummy_put" exists
34+
And the Swagger class "OverriddenOperationDummy-overridden_operation_dummy_read" exists
35+
And the Swagger class "OverriddenOperationDummy-overridden_operation_dummy_write" exists
3636
And the Swagger class "RelatedDummy" exists
3737
And the Swagger class "NoCollectionDummy" exists
3838
And the Swagger class "RelatedToDummyFriend" exists
39-
And the Swagger class "RelatedToDummyFriend_ad38b7a2760884e744c577a92e02b8c4" exists
39+
And the Swagger class "RelatedToDummyFriend-fakemanytomany" exists
4040
And the Swagger class "DummyFriend" exists
41-
And the Swagger class "RelationEmbedder_ced9cba177bf3134e609fccf878df9a7" exists
42-
And the Swagger class "RelationEmbedder_f02fd88a2291463447338402aee9a220" exists
43-
And the Swagger class "User_4320517091b72c69e9f0c72aac0141e8" exists
44-
And the Swagger class "User_7ce91261c0e731d95bb24b83b1f637b2" exists
41+
And the Swagger class "RelationEmbedder-barcelona" exists
42+
And the Swagger class "RelationEmbedder-chicago" exists
43+
And the Swagger class "User-user_user-read" exists
44+
And the Swagger class "User-user_user-write" exists
4545
And the Swagger class "UuidIdentifierDummy" exists
4646
And the Swagger class "ThirdLevel" exists
4747
And the Swagger class "ParentDummy" doesn't exist

‎src/Swagger/Serializer/DocumentationNormalizer.php

+6-5
Original file line numberDiff line numberDiff line change
@@ -371,11 +371,7 @@ private function updateDeleteOperation(\ArrayObject $pathOperation, string $reso
371371
*/
372372
private function getDefinition(\ArrayObject $definitions, ResourceMetadata $resourceMetadata, string $resourceClass, array $serializerContext = null): string
373373
{
374-
if (isset($serializerContext['groups'])) {
375-
$definitionKey = sprintf('%s_%s', $resourceMetadata->getShortName(), md5(serialize($serializerContext['groups'])));
376-
} else {
377-
$definitionKey = $resourceMetadata->getShortName();
378-
}
374+
$definitionKey = $this->getDefinitionKey($resourceMetadata->getShortName(), (array) ($serializerContext['groups'] ?? []));
379375

380376
if (!isset($definitions[$definitionKey])) {
381377
$definitions[$definitionKey] = []; // Initialize first to prevent infinite loop
@@ -385,6 +381,11 @@ private function getDefinition(\ArrayObject $definitions, ResourceMetadata $reso
385381
return $definitionKey;
386382
}
387383

384+
private function getDefinitionKey(string $resourceShortName, array $groups): string
385+
{
386+
return $groups ? sprintf('%s-%s', $resourceShortName, implode('_', $groups)) : $resourceShortName;
387+
}
388+
388389
/**
389390
* Gets a definition Schema Object.
390391
*

‎tests/Swagger/Serializer/DocumentationNormalizerTest.php

+8-8
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ public function testNormalizeWithOnlyNormalizationGroups()
382382
$documentation = new Documentation(new ResourceNameCollection([Dummy::class]), $title, $description, $version, $formats);
383383
$groups = ['dummy', 'foo', 'bar'];
384384

385-
$ref = 'Dummy_'.md5(serialize($groups));
385+
$ref = 'Dummy-'.implode('_', $groups);
386386

387387
$propertyNameCollectionFactoryProphecy = $this->prophesize(PropertyNameCollectionFactoryInterface::class);
388388
$propertyNameCollectionFactoryProphecy->create(Dummy::class, ['serializer_groups' => $groups])->shouldBeCalled(1)->willReturn(new PropertyNameCollection(['gerard']));
@@ -697,7 +697,7 @@ public function testNormalizeWithOnlyDenormalizationGroups()
697697
'name' => 'dummy',
698698
'in' => 'body',
699699
'description' => 'The updated Dummy resource',
700-
'schema' => ['$ref' => '#/definitions/Dummy_be35824b9d92d1dfc6f78fe086649b8f'],
700+
'schema' => ['$ref' => '#/definitions/Dummy-dummy'],
701701
],
702702
],
703703
'responses' => [
@@ -723,7 +723,7 @@ public function testNormalizeWithOnlyDenormalizationGroups()
723723
]),
724724
],
725725
]),
726-
'Dummy_be35824b9d92d1dfc6f78fe086649b8f' => new \ArrayObject([
726+
'Dummy-dummy' => new \ArrayObject([
727727
'type' => 'object',
728728
'description' => 'This is a dummy.',
729729
'externalDocs' => ['url' => 'http://schema.example.com/Dummy'],
@@ -882,13 +882,13 @@ public function testNormalizeWithNormalizationAndDenormalizationGroups()
882882
'name' => 'dummy',
883883
'in' => 'body',
884884
'description' => 'The updated Dummy resource',
885-
'schema' => ['$ref' => '#/definitions/Dummy_be35824b9d92d1dfc6f78fe086649b8f'],
885+
'schema' => ['$ref' => '#/definitions/Dummy-dummy'],
886886
],
887887
],
888888
'responses' => [
889889
200 => [
890890
'description' => 'Dummy resource updated',
891-
'schema' => ['$ref' => '#/definitions/Dummy_be35824b9d92d1dfc6f78fe086649b8f'],
891+
'schema' => ['$ref' => '#/definitions/Dummy-dummy'],
892892
],
893893
400 => ['description' => 'Invalid input'],
894894
404 => ['description' => 'Resource not found'],
@@ -908,7 +908,7 @@ public function testNormalizeWithNormalizationAndDenormalizationGroups()
908908
]),
909909
],
910910
]),
911-
'Dummy_be35824b9d92d1dfc6f78fe086649b8f' => new \ArrayObject([
911+
'Dummy-dummy' => new \ArrayObject([
912912
'type' => 'object',
913913
'description' => 'This is a dummy.',
914914
'externalDocs' => ['url' => 'http://schema.example.com/Dummy'],
@@ -1136,8 +1136,8 @@ public function testNormalizeWithNestedNormalizationGroups()
11361136
$version = '1.2.3';
11371137
$documentation = new Documentation(new ResourceNameCollection([Dummy::class]), $title, $description, $version, $formats);
11381138
$groups = ['dummy', 'foo', 'bar'];
1139-
$ref = 'Dummy_'.md5(serialize($groups));
1140-
$relatedDummyRef = 'RelatedDummy_'.md5(serialize($groups));
1139+
$ref = 'Dummy-'.implode('_', $groups);
1140+
$relatedDummyRef = 'RelatedDummy-'.implode('_', $groups);
11411141

11421142
$propertyNameCollectionFactoryProphecy = $this->prophesize(PropertyNameCollectionFactoryInterface::class);
11431143
$propertyNameCollectionFactoryProphecy->create(Dummy::class, ['serializer_groups' => $groups])->shouldBeCalled(1)->willReturn(new PropertyNameCollection(['name', 'relatedDummy']));

0 commit comments

Comments
 (0)
Please sign in to comment.