Skip to content

Commit 751d123

Browse files
authored
Fix edge case for resolving embedded entries without a strong type (#355)
1 parent 77b0a35 commit 751d123

8 files changed

+631
-8
lines changed

Contentful.AspNetCore/Contentful.AspNetCore.csproj

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Description>Official .NET SDK for the Contentful Content Delivery and Management API for ASP.NET core.</Description>
44
<PackageId>contentful.aspnetcore</PackageId>
55
<NeutralLanguage>en-US</NeutralLanguage>
6-
<VersionPrefix>8.2.1</VersionPrefix>
6+
<VersionPrefix>8.3.0</VersionPrefix>
77
<TargetFramework>netstandard2.0</TargetFramework>
88
<Authors>Contentful</Authors>
99
<Copyright>Contentful GmbH.</Copyright>
@@ -13,10 +13,10 @@
1313
<PackageProjectUrl>https://github.com/contentful/contentful.net</PackageProjectUrl>
1414
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1515
<RepositoryType>git</RepositoryType>
16-
<Version>8.2.1</Version>
17-
<AssemblyVersion>8.2.1.0</AssemblyVersion>
16+
<Version>8.3.0</Version>
17+
<AssemblyVersion>8.3.0.0</AssemblyVersion>
1818
<RepositoryUrl>https://github.com/contentful/contentful.net</RepositoryUrl>
19-
<FileVersion>8.2.1.0</FileVersion>
19+
<FileVersion>8.3.0.0</FileVersion>
2020
</PropertyGroup>
2121
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
2222
<DocumentationFile>bin\Release\netstandard1.5\Contentful.AspNetCore.xml</DocumentationFile>
@@ -25,7 +25,7 @@
2525
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
2626
</PropertyGroup>
2727
<ItemGroup>
28-
<PackageReference Include="contentful.csharp" Version="8.2.1" />
28+
<PackageReference Include="contentful.csharp" Version="8.3.0" />
2929
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.2.2" />
3030
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
3131
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor" Version="2.2.0" />

Contentful.Core.Tests/ClientTestsBase.cs

+12
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,18 @@ public class SelfReferencerInArray
274274
public SelfReferencer[] SubCategories { get; set; }
275275
}
276276

277+
public class InlineListReferences
278+
{
279+
public SystemProperties Sys { get; set; }
280+
public List<SubWithRichText> List { get; set; }
281+
}
282+
283+
public class SubWithRichText
284+
{
285+
public Document Rich { get; set; }
286+
public Document Rich2 { get; set; }
287+
}
288+
277289
public interface IMarker
278290
{
279291

Contentful.Core.Tests/Contentful.Core.Tests.csproj

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<None Remove="JsonFiles\CreateScheduledAction.json" />
1111
<None Remove="JsonFiles\EditorInterfaceWithMetadata.json" />
1212
<None Remove="JsonFiles\EntriesCollectionWithCrossReference.json" />
13+
<None Remove="JsonFiles\EntriesCollectionWithNestedEmbeddedEntry.json" />
1314
<None Remove="JsonFiles\EntriesCollectionWithRichTextField.json" />
1415
<None Remove="JsonFiles\EntriesCollectionWithRichTextFieldCalledFields.json" />
1516
<None Remove="JsonFiles\EntriesCollectionWithRichTextFieldTable.json" />
@@ -31,6 +32,7 @@
3132
<ItemGroup>
3233
<EmbeddedResource Include="JsonFiles\ApiKey.json" />
3334
<EmbeddedResource Include="JsonFiles\CancelScheduledAction.json" />
35+
<EmbeddedResource Include="JsonFiles\EntriesCollectionWithNestedEmbeddedEntry.json" />
3436
<EmbeddedResource Include="JsonFiles\UpdateScheduledAction.json" />
3537
<EmbeddedResource Include="JsonFiles\GetScheduledAction.json" />
3638
<EmbeddedResource Include="JsonFiles\CreateScheduledAction.json" />

Contentful.Core.Tests/ContentfulClientTests.cs

+13
Original file line numberDiff line numberDiff line change
@@ -1407,6 +1407,19 @@ public async Task ComplexStructureWithSelfReferenceInArrayIsDeserializedCorrectl
14071407
Assert.Equal(res.First().SubCategories.First().Sys.Id, res.Skip(3).First().Sys.Id);
14081408
}
14091409

1410+
[Fact]
1411+
public async Task ComplexStructureWithEmbeddedReferenceInArrayIsDeserializedCorrectly()
1412+
{
1413+
//Arrange
1414+
_handler.Response = GetResponseFromFile(@"EntriesCollectionWithNestedEmbeddedEntry.json");
1415+
1416+
//Act
1417+
var res = await _client.GetEntries<InlineListReferences>();
1418+
1419+
//Assert
1420+
Assert.Single(res);
1421+
}
1422+
14101423
[Fact]
14111424
public async Task SettingEnvironmentShouldYieldCorrectUrlForSingleAsset()
14121425
{

0 commit comments

Comments
 (0)