-
-
Notifications
You must be signed in to change notification settings - Fork 215
Expand file tree
/
Copy pathRuntimeTargetTypeMappingTest.cs
More file actions
312 lines (287 loc) · 11.3 KB
/
RuntimeTargetTypeMappingTest.cs
File metadata and controls
312 lines (287 loc) · 11.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
namespace Riok.Mapperly.Tests.Mapping;
public class RuntimeTargetTypeMappingTest
{
[Fact]
public Task WithNullableObjectSourceAndTargetTypeShouldIncludeNullables()
{
var source = TestSourceBuilder.MapperWithBodyAndTypes(
"""
public partial object? Map(object? source, Type targetType);
private partial B MapToB(A source);
private partial D? MapToD(C? source);
private partial int? MapStringToInt(string? source);
private partial int? MapIntToInt(int source);
""",
"class A { public string Value { get; set; } }",
"class B { public string Value { get; set; } }",
"class C { public string Value2 { get; set; } }",
"class D { public string Value2 { get; set; } }"
);
return TestHelper.VerifyGenerator(source);
}
[Fact]
public Task WithGenericSourceAndTarget()
{
var source = TestSourceBuilder.MapperWithBodyAndTypes(
"""
public partial IQueryable<TTarget> Map<TSource, TTarget>(IQueryable<TSource> source);
private partial IQueryable<B> ProjectToB(IQueryable<A> q);
private partial IQueryable<D> ProjectToD(IQueryable<C> q);
""",
"class A { public string Value { get; set; } }",
"class B { public string Value { get; set; } }",
"class C { public string Value2 { get; set; } }",
"class D { public string Value2 { get; set; } }"
);
return TestHelper.VerifyGenerator(source);
}
[Fact]
public void WithNonNullableReturnTypeShouldOnlyIncludeNonNullableMappings()
{
var source = TestSourceBuilder.MapperWithBodyAndTypes(
"""
public partial object Map(object source, Type targetType);
private partial B MapToB(A source);
private partial D? MapToD(C source);
private partial int? MapToInt(string? source);
""",
"class A {}",
"class B {}",
"class C {}",
"class D {}"
);
TestHelper
.GenerateMapper(source)
.Should()
.HaveMapMethodBody(
"""
return source switch
{
global::A x when targetType.IsAssignableFrom(typeof(global::B)) => MapToB(x),
_ => throw new global::System.ArgumentException($"Cannot map {source.GetType()} to {targetType} as there is no known type mapping", nameof(source)),
};
"""
);
}
[Fact]
public void WithSubsetSourceTypeAndObjectTargetTypeShouldWork()
{
var source = TestSourceBuilder.MapperWithBodyAndTypes(
"""
public partial Base1Target Map(Base1Source source, Type targetType);
private partial B MapToB(A source);
private partial D MapToD(C source);
""",
"class Base1Source {}",
"class Base2Source {}",
"class Base1Target {}",
"class Base2Target {}",
"class A : Base1Source {}",
"class B : Base1Target {}",
"class C : Base2Source {}",
"class D : Base2Target {}"
);
TestHelper
.GenerateMapper(source)
.Should()
.HaveMapMethodBody(
"""
return source switch
{
global::A x when targetType.IsAssignableFrom(typeof(global::B)) => MapToB(x),
_ => throw new global::System.ArgumentException($"Cannot map {source.GetType()} to {targetType} as there is no known type mapping", nameof(source)),
};
"""
);
}
[Fact]
public void WithTypeHierarchyShouldPreferMostSpecificMapping()
{
var source = TestSourceBuilder.MapperWithBodyAndTypes(
"""
public partial object Map(object source, Type targetType);
private partial C MapAToC(A source);
private partial C MapBToC(B source);
private partial C MapB1ToC(Base1 source);
private partial C MapB2ToC(Base2 source);
""",
"class Base1 {}",
"class Base2 : Base1 {}",
"class A : Base2 {}",
"class B : Base1 {}",
"class C {}"
);
TestHelper
.GenerateMapper(source)
.Should()
.HaveMapMethodBody(
"""
return source switch
{
global::A x when targetType.IsAssignableFrom(typeof(global::C)) => MapAToC(x),
global::B x when targetType.IsAssignableFrom(typeof(global::C)) => MapBToC(x),
global::Base2 x when targetType.IsAssignableFrom(typeof(global::C)) => MapB2ToC(x),
global::Base1 x when targetType.IsAssignableFrom(typeof(global::C)) => MapB1ToC(x),
_ => throw new global::System.ArgumentException($"Cannot map {source.GetType()} to {targetType} as there is no known type mapping", nameof(source)),
};
"""
);
}
[Fact]
public void WithDerivedTypesShouldUseBaseType()
{
var source = TestSourceBuilder.MapperWithBodyAndTypes(
"""
public partial object Map(object source, Type targetType);
[MapDerivedType<A, B>]
[MapDerivedType<C, D>]
partial BaseDto MapDerivedTypes(Base source);
""",
"class Base {}",
"class BaseDto {}",
"class A : Base {}",
"class B : BaseDto {}",
"class C : Base {}",
"class D : BaseDto {}"
);
TestHelper
.GenerateMapper(source)
.Should()
.HaveMapMethodBody(
"""
return source switch
{
global::Base x when typeof(global::BaseDto).IsAssignableFrom(targetType) => MapDerivedTypes(x),
_ => throw new global::System.ArgumentException($"Cannot map {source.GetType()} to {targetType} as there is no known type mapping", nameof(source)),
};
"""
);
}
[Fact]
public void WithDerivedTypesOnSameMethodAndDuplicatedSourceTypeShouldIncludeAll()
{
var source = TestSourceBuilder.MapperWithBodyAndTypes(
"""
[MapDerivedType<A, B>]
[MapDerivedType<A, D>]
[MapDerivedType<C, B>]
[MapDerivedType<C, D>]
public partial object Map(object source, Type targetType);
""",
"class Base {}",
"class BaseDto {}",
"class A : Base {}",
"class B : BaseDto {}",
"class C : Base {}",
"class D : BaseDto {}"
);
TestHelper
.GenerateMapper(source)
.Should()
.HaveMapMethodBody(
"""
return source switch
{
global::A x when targetType.IsAssignableFrom(typeof(global::B)) => MapToB(x),
global::A x when targetType.IsAssignableFrom(typeof(global::D)) => MapToD(x),
global::C x when targetType.IsAssignableFrom(typeof(global::B)) => MapToB1(x),
global::C x when targetType.IsAssignableFrom(typeof(global::D)) => MapToD1(x),
_ => throw new global::System.ArgumentException($"Cannot map {source.GetType()} to {targetType} as there is no known type mapping", nameof(source)),
};
"""
);
}
[Fact]
public void WithUserImplementedMethodsShouldBeIncluded()
{
var source = TestSourceBuilder.MapperWithBodyAndTypes(
"""
[MapDerivedType<A, B>]
public partial object Map(object source, Type targetType);
private partial D MapToD(B source) => new D();
""",
"class Base {}",
"class BaseDto {}",
"class A : Base {}",
"class B : BaseDto {}",
"class C : Base {}",
"class D : BaseDto {}"
);
TestHelper
.GenerateMapper(source)
.Should()
.HaveMapMethodBody(
"""
return source switch
{
global::A x when targetType.IsAssignableFrom(typeof(global::B)) => MapToB(x),
global::B x when targetType.IsAssignableFrom(typeof(global::D)) => MapToD(x),
_ => throw new global::System.ArgumentException($"Cannot map {source.GetType()} to {targetType} as there is no known type mapping", nameof(source)),
};
"""
);
}
[Fact]
public void WithGenericUserImplementedMethodShouldBeIgnored()
{
var source = TestSourceBuilder.MapperWithBodyAndTypes(
"""
[MapDerivedType<A, B>]
public partial object Map(object source, Type targetType);
private partial T MapTo<T>(B source) where T : new() => new T();
""",
"class Base {}",
"class BaseDto {}",
"class A : Base {}",
"class B : BaseDto {}",
"class C : Base {}",
"class D : BaseDto {}"
);
TestHelper
.GenerateMapper(source)
.Should()
.HaveMapMethodBody(
"""
return source switch
{
global::A x when targetType.IsAssignableFrom(typeof(global::B)) => MapToB(x),
_ => throw new global::System.ArgumentException($"Cannot map {source.GetType()} to {targetType} as there is no known type mapping", nameof(source)),
};
"""
);
}
[Fact]
public Task WithReferenceHandlingEnabled()
{
var source = TestSourceBuilder.MapperWithBodyAndTypes(
"""
private partial object Map(object source, Type targetType);
private partial B MapToB(A source);
private partial D MapToD(C source);
""",
TestSourceBuilderOptions.WithReferenceHandling,
"class A { public int IntValue { get; set; } }",
"class B { public int IntValue { get; set; } }",
"class C { public int IntValue { get; set; } }",
"class D { public int IntValue { get; set; } }"
);
return TestHelper.VerifyGenerator(source);
}
[Fact]
public Task WithReferenceHandlerParameter()
{
var source = TestSourceBuilder.MapperWithBodyAndTypes(
"""
private partial object Map(object source, Type targetType, [ReferenceHandler] IReferenceHandler refHandler);
private partial B MapToB(A source, [ReferenceHandler] IReferenceHandler refHandler);
private partial D MapToD(C source, [ReferenceHandler] IReferenceHandler refHandler);
""",
TestSourceBuilderOptions.WithReferenceHandling,
"class A { public int IntValue { get; set; } }",
"class B { public int IntValue { get; set; } }",
"class C { public int IntValue { get; set; } }",
"class D { public int IntValue { get; set; } }"
);
return TestHelper.VerifyGenerator(source);
}
}