-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathCanMapMemberFromTypeBinaryExpression.cs
More file actions
229 lines (195 loc) · 7.85 KB
/
CanMapMemberFromTypeBinaryExpression.cs
File metadata and controls
229 lines (195 loc) · 7.85 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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using Xunit;
namespace AutoMapper.Extensions.ExpressionMapping.UnitTests
{
public class CanMapMemberFromTypeBinaryExpression
{
[Fact]
public void Can_map_using_type_binary_expression_to_test_the_parameter_expression()
{
//arrange
var config = ConfigurationHelper.GetMapperConfiguration(cfg =>
{
cfg.AddExpressionMapping();
cfg.CreateMap<Shape, ShapeDto>()
.ForMember(dto => dto.ShapeType, o => o.MapFrom(s => s is Triangle ? ShapeType.Triangle : s is Circle ? ShapeType.Circle : ShapeType.Unknown))
.ForMember(dto => dto.DynamicProperties, o => o.Ignore());
});
var mapper = config.CreateMapper();
Expression<Func<ShapeDto, bool>> where = x => x.ShapeType == ShapeType.Circle;
//act
Expression<Func<Shape, bool>> whereMapped = mapper.MapExpression<Expression<Func<Shape, bool>>>(where);
var list = new List<Shape> { new Circle(), new Triangle() }.AsQueryable().Where(whereMapped).ToList();
//assert
Assert.Single(list);
#if NET8_0_OR_GREATER
Assert.Equal
(
"x => (Convert(IIF((x Is Triangle), Triangle, IIF((x Is Circle), Circle, Unknown)), Int32) == 2)",
whereMapped.ToString()
);
#else
Assert.Equal
(
"x => (Convert(IIF((x Is Triangle), Triangle, IIF((x Is Circle), Circle, Unknown))) == 2)",
whereMapped.ToString()
);
#endif
}
[Fact]
public void Can_map_using_type_binary_expression_to_test_a_member_expression()
{
//arrange
var config = ConfigurationHelper.GetMapperConfiguration(cfg =>
{
cfg.AddExpressionMapping();
cfg.CreateMap<ShapeHolder, ShapeHolderDto>();
cfg.CreateMap<Shape, ShapeDto>()
.ForMember(dto => dto.ShapeType, o => o.MapFrom(s => s is Triangle ? ShapeType.Triangle : s is Circle ? ShapeType.Circle : ShapeType.Unknown))
.ForMember(dto => dto.DynamicProperties, o => o.Ignore());
});
var mapper = config.CreateMapper();
Expression<Func<ShapeHolderDto, bool>> where = x => x.Shape.ShapeType == ShapeType.Circle;
//act
Expression<Func<ShapeHolder, bool>> whereMapped = mapper.MapExpression<Expression<Func<ShapeHolder, bool>>>(where);
var list = new List<ShapeHolder>
{
new ShapeHolder { Shape = new Circle() },
new ShapeHolder { Shape = new Triangle() }
}
.AsQueryable()
.Where(whereMapped).ToList();
//assert
Assert.Single(list);
#if NET8_0_OR_GREATER
Assert.Equal
(
"x => (Convert(IIF((x.Shape Is Triangle), Triangle, IIF((x.Shape Is Circle), Circle, Unknown)), Int32) == 2)",
whereMapped.ToString()
);
#else
Assert.Equal
(
"x => (Convert(IIF((x.Shape Is Triangle), Triangle, IIF((x.Shape Is Circle), Circle, Unknown))) == 2)",
whereMapped.ToString()
);
#endif
}
[Fact]
public void Can_map_using_instance_method_call_to_test_the_parameter_expression()
{
//arrange
var config = ConfigurationHelper.GetMapperConfiguration(cfg =>
{
cfg.AddExpressionMapping();
cfg.CreateMap<Shape, ShapeDto>()
.ForMember(dto => dto.ShapeType, o => o.MapFrom(s => s.GetType() == typeof(Triangle) ? ShapeType.Triangle : s.GetType() == typeof(Circle) ? ShapeType.Circle : ShapeType.Unknown))
.ForMember(dto => dto.DynamicProperties, o => o.Ignore());
});
var mapper = config.CreateMapper();
Expression<Func<ShapeDto, bool>> where = x => x.ShapeType == ShapeType.Circle;
//act
Expression<Func<Shape, bool>> whereMapped = mapper.MapExpression<Expression<Func<Shape, bool>>>(where);
var list = new List<Shape> { new Circle(), new Triangle() }.AsQueryable().Where(whereMapped).ToList();
//assert
Assert.Single(list);
}
[Fact]
public void Can_map_using_static_method_call_to_test_the_parameter_expression()
{
//arrange
var config = ConfigurationHelper.GetMapperConfiguration(cfg =>
{
cfg.AddExpressionMapping();
cfg.CreateMap<Shape, ShapeDto>()
.ForMember(dto => dto.HasMany, o => o.MapFrom(s => s.HasMessages()));
});
var mapper = config.CreateMapper();
Expression<Func<ShapeDto, bool>> where = x => x.HasMany;
//act
Expression<Func<Shape, bool>> whereMapped = mapper.MapExpression<Expression<Func<Shape, bool>>>(where);
var list = new List<Shape> { new Circle() { Messages = new List<string> { "" } }, new Triangle() { Messages = new List<string>() } }.AsQueryable().Where(whereMapped).ToList();
//assert
Assert.Single(list);
Assert.Equal
(
"x => x.HasMessages()",
whereMapped.ToString()
);
}
[Fact]
public void Can_map_using_static_generic_method_call_to_test_the_parameter_expression()
{
//arrange
var config = ConfigurationHelper.GetMapperConfiguration(cfg =>
{
cfg.AddExpressionMapping();
cfg.CreateMap<Shape, ShapeDto>()
.ForMember(dto => dto.IsCircle, o => o.MapFrom(s => s.IsCircle<Shape>()));
});
var mapper = config.CreateMapper();
Expression<Func<ShapeDto, bool>> where = x => x.IsCircle;
//act
Expression<Func<Shape, bool>> whereMapped = mapper.MapExpression<Expression<Func<Shape, bool>>>(where);
var list = new List<Shape> { new Circle(), new Triangle()}.AsQueryable().Where(whereMapped).ToList();
//assert
Assert.Single(list);
Assert.Equal
(
"x => x.IsCircle()",
whereMapped.ToString()
);
}
public class ShapeHolder
{
public Shape Shape { get; set; }
}
public class Shape
{
public string Name { get; set; }
public List<string> Messages { get; set; }
}
public class Triangle : Shape
{
public double A { get; set; }
public double B { get; set; }
public double C { get; set; }
}
public class Circle : Shape
{
public double R { get; set; }
}
public enum ShapeType
{
Unknown,
Triangle,
Circle,
}
public class ShapeDto
{
public string Name { get; set; }
public IDictionary<string, object> DynamicProperties { get; set; }
public ShapeType ShapeType { get; set; }
public bool HasMany { get; set; }
public bool IsCircle { get; set; }
}
public class ShapeHolderDto
{
public ShapeDto Shape { get; set; }
}
}
public static class ShapeExtentions
{
public static bool HasMessages(this CanMapMemberFromTypeBinaryExpression.Shape shape)
{
return shape.Messages.Any();
}
public static bool IsCircle<T>(this T shape)
{
return shape.GetType() == typeof(CanMapMemberFromTypeBinaryExpression.Circle);
}
}
}