Skip to content

Commit b0d37ce

Browse files
authored
Merge pull request #756 from lofcz/fix-interface-regression
Fix issue #755 - Regression in interfaces mapping introduced by #649
2 parents c620ed9 + 2c430e9 commit b0d37ce

File tree

2 files changed

+60
-1
lines changed

2 files changed

+60
-1
lines changed

src/Mapster.Tests/WhenMappingToInterface.cs

+59
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
using System;
44
using System.Collections.Generic;
55
using System.Linq;
6+
using System.Text.Json.Serialization;
7+
using Newtonsoft.Json;
68

79
namespace Mapster.Tests
810
{
@@ -266,6 +268,27 @@ public void MappingToInteraceWithReadonlyProps_AllPropsInitialized()
266268
);
267269
}
268270

271+
[TestMethod]
272+
public void MappingToInterface_VerifyReadonlyPropsInterfaceRule()
273+
{
274+
SampleInterfaceCls source = new SampleInterfaceCls
275+
{
276+
ActivityData = new SampleActivityData
277+
{
278+
Data = new SampleActivityParsedData
279+
{
280+
Steps = new List<string> { "A", "B", "C" }
281+
}
282+
}
283+
};
284+
285+
SampleInterfaceCls target = source.Adapt<SampleInterfaceCls>();
286+
target.ShouldNotBeNull();
287+
target.ShouldSatisfyAllConditions(
288+
() => target.ActivityData.ShouldBe(source.ActivityData)
289+
);
290+
}
291+
269292
public interface IInheritedDtoWithoutProperties : IInheritedDto
270293
{
271294
}
@@ -374,6 +397,42 @@ public class PropertyInitializationTestSource
374397
public int Property1 { get; set; }
375398
public int Property2 { get; set; }
376399
}
400+
401+
public interface IActivityData
402+
{
403+
404+
}
405+
406+
public class SampleInterfaceCls
407+
{
408+
[Newtonsoft.Json.JsonIgnore]
409+
public IActivityData? ActivityData { get; set; }
410+
411+
public SampleInterfaceCls()
412+
{
413+
414+
}
415+
416+
public SampleInterfaceCls(IActivityData data)
417+
{
418+
SetActivityData(data);
419+
}
420+
421+
public void SetActivityData(IActivityData data)
422+
{
423+
ActivityData = data;
424+
}
425+
}
426+
427+
public class SampleActivityData : IActivityData
428+
{
429+
public SampleActivityParsedData Data { get; set; }
430+
}
431+
432+
public class SampleActivityParsedData
433+
{
434+
public List<string> Steps { get; set; } = new List<string>();
435+
}
377436

378437
}
379438
}

src/Mapster/Adapters/ReadOnlyInterfaceAdapter.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ internal class ReadOnlyInterfaceAdapter : ClassAdapter
1010

1111
protected override bool CanMap(PreCompileArgument arg)
1212
{
13-
return arg.DestinationType.IsInterface;
13+
return arg.DestinationType.IsInterface && arg.DestinationType.GetProperties().Length > 0;
1414
}
1515

1616
protected override bool CanInline(Expression source, Expression? destination, CompileArgument arg)

0 commit comments

Comments
 (0)