-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathFlattenTests.cs
More file actions
319 lines (270 loc) · 12.1 KB
/
Copy pathFlattenTests.cs
File metadata and controls
319 lines (270 loc) · 12.1 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
313
314
315
316
317
318
319
using ExpressMapper.Tests.Model.Models;
using ExpressMapper.Tests.Model.ViewModels;
using NUnit.Framework;
namespace ExpressMapper.Tests
{
[TestFixture]
public class FlattenTests : BaseTestClass
{
[Test]
public void FlattenFatherSonGrandsonDtoOk()
{
//SETUP
Mapper.Register<Father, FlattenFatherSonGrandsonDto>()
.Flatten();
Mapper.Compile(CompilationTypes.Source);
//ATTEMPT
var father = Father.CreateOne();
var dto = Mapper.Map<Father, FlattenFatherSonGrandsonDto>(father);
//VERIFY
Assert.AreEqual("Father", dto.MyString); //This is mapped by the normal ExpressMapper
Assert.AreEqual(1, dto.MyInt); //This is mapped by the normal ExpressMapper
Assert.AreEqual("Son", dto.SonMyString);
Assert.AreEqual(2, dto.SonMyInt);
Assert.AreEqual("Grandson", dto.SonGrandsonMyString);
Assert.AreEqual(3, dto.SonGrandsonMyInt);
}
[Test]
public void FlattenFatherSonGrandsonDtoWithDestinationOk()
{
//SETUP
Mapper.Register<Father, FlattenFatherSonGrandsonDto>()
.Flatten();
Mapper.Compile(CompilationTypes.Destination);
//ATTEMPT
var dto = new FlattenFatherSonGrandsonDto
{
MyInt = 29387465,
MyString = "whjqegfqwjehfg"
};
var father = Father.CreateOne();
Mapper.Map(father, dto);
//VERIFY
Assert.AreEqual("Father", dto.MyString); //This is mapped by the normal ExpressMapper
Assert.AreEqual(1, dto.MyInt); //This is mapped by the normal ExpressMapper
Assert.AreEqual("Son", dto.SonMyString);
Assert.AreEqual(2, dto.SonMyInt);
Assert.AreEqual("Grandson", dto.SonGrandsonMyString);
Assert.AreEqual(3, dto.SonGrandsonMyInt);
}
[Test]
public void FatherLowerCaseFlattenFatherSonGrandsonDtoOk()
{
//SETUP
Mapper.Register<FatherLowerCase, FlattenFatherSonGrandsonDto>()
.Flatten();
Mapper.Compile(CompilationTypes.Source);
//ATTEMPT
var dto = new FlattenFatherSonGrandsonDto();
Mapper.Map(FatherLowerCase.CreateOne(), dto);
//VERIFY
Assert.AreEqual("Father", dto.MyString); //This is mapped by the normal ExpressMapper
Assert.AreEqual(1, dto.MyInt); //This is mapped by the normal ExpressMapper
Assert.AreEqual("Son", dto.SonMyString);
Assert.AreEqual(2, dto.SonMyInt);
Assert.AreEqual("Grandson", dto.SonGrandsonMyString);
Assert.AreEqual(3, dto.SonGrandsonMyInt);
}
[Test]
public void FlattenFatherSonDtoForGrandsonDtoOk()
{
//SETUP
Mapper.Register<Father, FlattenFatherSonDtoForGrandsonDto>()
.Flatten();
Mapper.Register<Grandson, FlattenSimpleClass>();
Mapper.Compile(CompilationTypes.Source);
//ATTEMPT
var father = Father.CreateOne();
var dto = Mapper.Map<Father, FlattenFatherSonDtoForGrandsonDto>(father);
//VERIFY
Assert.AreEqual("Father", dto.MyString); //This is mapped by the normal ExpressMapper
Assert.AreEqual(1, dto.MyInt); //This is mapped by the normal ExpressMapper
Assert.AreEqual("Son", dto.SonMyString);
Assert.AreEqual(2, dto.SonMyInt);
Assert.AreEqual("Grandson", dto.SonGrandson.MyString);
Assert.AreEqual(3, dto.SonGrandson.MyInt);
}
[Test]
public void FlattenFatherSonDtoForGrandsonDtoForgetFlattenSimpleClassOk()
{
//SETUP
//Mapper.Register<Grandson, FlattenSimpleClass>(); //If you don't supply the mapping it does not happen
Mapper.Register<Father, FlattenFatherSonDtoForGrandsonDto>()
.Flatten();
Mapper.Compile(CompilationTypes.Source);
//ATTEMPT
var father = Father.CreateOne();
var dto = Mapper.Map<Father, FlattenFatherSonDtoForGrandsonDto>(father);
//VERIFY
Assert.AreEqual("Father", dto.MyString); //This is mapped by the normal ExpressMapper
Assert.AreEqual(1, dto.MyInt); //This is mapped by the normal ExpressMapper
Assert.AreEqual("Son", dto.SonMyString);
Assert.AreEqual(2, dto.SonMyInt);
Assert.AreEqual(null, dto.SonGrandson);
}
[Test]
public void FlattenFatherSonGrandsonLowerCaseDtoOk()
{
//SETUP
Mapper.Register<Father, FlattenFatherSonGrandsonLowerCaseDto>()
.Flatten();
Mapper.Compile(CompilationTypes.Source);
//ATTEMPT
var father = Father.CreateOne();
var dto = Mapper.Map<Father, FlattenFatherSonGrandsonLowerCaseDto>(father);
//VERIFY
Assert.AreEqual("Father", dto.mystring); //This is mapped by the normal ExpressMapper
Assert.AreEqual(1, dto.myInt); //This is mapped by the normal ExpressMapper
Assert.AreEqual("Son", dto.sonMyString);
Assert.AreEqual(2, dto.Sonmyint);
Assert.AreEqual("Grandson", dto.SongrandsonmYstring);
Assert.AreEqual(3, dto.sonGrandsonMyInt);
}
[Test]
public void FlattenFatherSonGrandsonDtoCaseSensativeOk()
{
//SETUP
Mapper.Register<Father, FlattenFatherSonGrandsonDto>().CaseSensitive(true)
.Flatten();
Mapper.Compile(CompilationTypes.Source);
//ATTEMPT
var father = Father.CreateOne();
var dto = Mapper.Map<Father, FlattenFatherSonGrandsonDto>(father);
//VERIFY
Assert.AreEqual("Father", dto.MyString); //This is mapped by the normal ExpressMapper
Assert.AreEqual(1, dto.MyInt); //This is mapped by the normal ExpressMapper
Assert.AreEqual("Son", dto.SonMyString);
Assert.AreEqual(2, dto.SonMyInt);
Assert.AreEqual("Grandson", dto.SonGrandsonMyString);
Assert.AreEqual(3, dto.SonGrandsonMyInt);
}
[Test]
public void FlattenFatherSonGrandsonLowerCaseDtoCaseSensativeOk()
{
//SETUP
Mapper.Register<Father, FlattenFatherSonGrandsonLowerCaseDto>()
.CaseSensitive(true)
.Flatten();
Mapper.Compile(CompilationTypes.Source);
//ATTEMPT
var dto = Mapper.Map<Father, FlattenFatherSonGrandsonLowerCaseDto>(Father.CreateOne());
//VERIFY
Assert.AreEqual(null, dto.mystring); //This is mapped by the normal ExpressMapper
Assert.AreEqual(0, dto.myInt); //This is mapped by the normal ExpressMapper
Assert.AreEqual(null, dto.sonMyString);
Assert.AreEqual(0, dto.Sonmyint);
Assert.AreEqual(null, dto.SongrandsonmYstring);
Assert.AreEqual(null, dto.sonGrandsonMyInt);
}
[Test]
public void FlattenFatherSonGrandsonDtoNoSon()
{
//SETUP
Mapper.Register<Father, FlattenFatherSonGrandsonDto>()
.Flatten();
Mapper.Compile(CompilationTypes.Source);
//ATTEMPT
var src = new Father
{
MyString = "Father",
MyInt = 1
};
var dto = Mapper.Map<Father, FlattenFatherSonGrandsonDto>(src);
//VERIFY
Assert.AreEqual("Father", dto.MyString); //This is mapped by the normal ExpressMapper
Assert.AreEqual(1, dto.MyInt); //This is mapped by the normal ExpressMapper
Assert.AreEqual(null, dto.SonMyString);
Assert.AreEqual(0, dto.SonMyInt);
Assert.AreEqual(null, dto.SonGrandsonMyString);
Assert.AreEqual(null, dto.SonGrandsonMyInt);
}
[Test]
public void FlattenFatherSonGrandsonDtoOverrideSonGrandsonMyStringOk()
{
//SETUP
Mapper.Register<Father, FlattenFatherSonGrandsonDto>()
.Member(dest => dest.SonGrandsonMyString, src => src.MyString)
.Flatten();
Mapper.Compile(CompilationTypes.Source);
//ATTEMPT
var father = Father.CreateOne();
var dto = Mapper.Map<Father, FlattenFatherSonGrandsonDto>(father);
//VERIFY
Assert.AreEqual("Father", dto.MyString);
Assert.AreEqual("Son", dto.SonMyString);
Assert.AreEqual("Father", dto.SonGrandsonMyString);
}
[Test]
public void FlattenFatherSonGrandsonDtoIgnoreSonMyStringOk()
{
//SETUP
Mapper.Register<Father, FlattenFatherSonGrandsonDto>()
.Ignore(dest => dest.SonMyString)
.Flatten();
Mapper.Compile(CompilationTypes.Source);
//ATTEMPT
var dto = Mapper.Map<Father, FlattenFatherSonGrandsonDto>(Father.CreateOne());
//VERIFY
Assert.AreEqual("Father", dto.MyString);
Assert.AreEqual(null, dto.SonMyString);
Assert.AreEqual("Grandson", dto.SonGrandsonMyString);
}
[Test]
public void FlattenFatherSonsCountDtoOk()
{
//SETUP
Mapper.Register<FatherSons, FlattenFatherSonsCountDto>()
.Flatten();
Mapper.Compile(CompilationTypes.Source);
//ATTEMPT
var fatherSons = FatherSons.CreateOne();
var dto = Mapper.Map<FatherSons, FlattenFatherSonsCountDto>(fatherSons);
//VERIFY
Assert.AreEqual("Father", dto.MyString);
Assert.AreEqual(5, dto.SonsCount);
}
[Test]
public void FlattenLinqCollectionMethodsDtoOk()
{
//SETUP
Mapper.Register<FatherSons, FlattenLinqCollectionMethodsDto>()
.Flatten();
Mapper.Compile(CompilationTypes.Source);
//ATTEMPT
var dto = Mapper.Map<FatherSons, FlattenLinqCollectionMethodsDto>(FatherSons.CreateOne());
//VERIFY
Assert.AreEqual(true, dto.SonsAny);
Assert.AreEqual(5, dto.SonsCount);
Assert.AreEqual(5, dto.SonsLongCount);
Assert.AreEqual("Son", dto.SonsFirstOrDefault.MyString);
}
[Test]
public void FlattenCircularReferenceDtoOk()
{
//SETUP
Mapper.Register<FlattenCircularReference, FlattenCircularReferenceDto>()
.Flatten();
Mapper.Compile(CompilationTypes.Source);
//ATTEMPT
var dto = Mapper.Map<FlattenCircularReference, FlattenCircularReferenceDto>(FlattenCircularReference.CreateOne());
//VERIFY
Assert.AreEqual("Outer", dto.MyString);
Assert.AreEqual("Son", dto.SonMyString);
Assert.AreEqual("Inner", dto.CircularRefMyString);
}
//----------------------------------
//Failure tests
[Test]
public void FlattenFatherSonsCountBadDtoOk()
{
//SETUP
Mapper.Reset();
Mapper.Register<FatherSons, FlattenFatherSonsCountBadDto>().Flatten();
//ATTEMPT
var ex = Assert.Throws<ExpressmapperException>(() => Mapper.Compile(CompilationTypes.Source));
//VERIFY
Assert.AreEqual("Error error occured trying to compile mapping for: source ExpressMapper.Tests.Model.Models.FatherSons, destination ExpressMapper.Tests.Model.ViewModels.FlattenFatherSonsCountBadDto. See the inner exception for details.", ex.Message);
Assert.AreEqual("We could not find the Method Count() which matched the property SonsCount of type System.String.", ex.InnerException.Message);
}
}
}