generated from Avanade/avanade-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
PersonControllerTest.cs
310 lines (280 loc) · 10.9 KB
/
PersonControllerTest.cs
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
using NUnit.Framework;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
using UnitTestEx.Api;
using UnitTestEx.Api.Controllers;
using UnitTestEx.Api.Models;
using UnitTestEx.Expectations;
namespace UnitTestEx.NUnit.Test
{
[TestFixture]
public class PersonControllerTest
{
[Test]
public async Task Get_Test1()
{
using var test = ApiTester.Create<Startup>();
(await test.Controller<PersonController>()
.ExpectLogContains("Get using identifier 1")
.RunAsync(c => c.Get(1)))
.AssertOK()
.AssertValue(new Person { Id = 1, FirstName = "Bob", LastName = "Smith" });
}
[Test]
public void Get_Test2()
{
int id = 2;
using var test = ApiTester.Create<Startup>();
test.Controller<PersonController>()
.Run(c => c.Get(id))
.AssertOK()
.AssertValue(new Person { Id = id, FirstName = "Jane", LastName = "Jones" });
}
[Test]
public void Get_Test3()
{
var p = new Person { Id = 3, FirstName = "Brad", LastName = "Davies" };
using var test = ApiTester.Create<Startup>();
test.Controller<PersonController>().Run(c => c.Get(p.Id)).AssertOK().AssertValue(p);
}
[Test]
public void Get_Test4()
{
using var test = ApiTester.Create<Startup>();
test.Controller<PersonController>()
.Run(c => c.Get(4))
.AssertNotFound();
}
[Test]
public void Get_Test4_WithResetHost()
{
using var test = ApiTester.Create<Startup>().ResetHost();
test.Controller<PersonController>()
.Run(c => c.Get(4))
.AssertNotFound();
}
[Test]
public async Task Get_Test5_AnonymousType_OK()
{
using var test = ApiTester.Create<Startup>();
(await test.Controller<PersonController>()
.RunAsync(c => c.Get(1)))
.AssertOK()
.AssertValue(new { Id = 1, FirstName = "Bob", LastName = "Smith" });
}
[Test]
public void Get_Test5_AnonymousType_AssertFail()
{
Assert.Throws<AssertionException>(() =>
{
using var test = ApiTester.Create<Startup>();
test.Controller<PersonController>()
.Run(c => c.Get(1))
.AssertOK()
.AssertValue(new { Fruit = "Apple" });
});
}
[Test]
public void Get_Test5_AnonymousType_AssertFail2()
{
Assert.Throws<AssertionException>(() =>
{
using var test = ApiTester.Create<Startup>();
test.Controller<PersonController>()
.Run(c => c.Get(1))
.AssertOK()
.AssertJson("{\"data\": \"this_is_a_test\"}");
});
}
[Test]
public void GetByArgs_Test1()
{
using var test = ApiTester.Create<Startup>();
test.Controller<PersonController>()
.Run(c => c.GetByArgs("Mary", "Brown", new List<int> { 88, 99 }))
.AssertOK()
.AssertValue("Mary-Brown-88,99");
}
[Test]
public void GetByArgs_Test2()
{
using var test = ApiTester.Create<Startup>();
test.Controller<PersonController>()
.Run(c => c.GetByArgs(null, null, null))
.AssertOK()
.AssertValue("--");
}
[Test]
public void Update_Test1()
{
using var test = ApiTester.Create<Startup>();
test.Controller<PersonController>()
.Run(c => c.Update(1, new Person { FirstName = "Bob", LastName = "Smith" }))
.AssertOK()
.AssertValue(new Person { Id = 1, FirstName = "Bob", LastName = "Smith" });
}
[Test]
public void Update_Test2()
{
using var test = ApiTester.Create<Startup>();
test.Controller<PersonController>()
.Run(c => c.Update(1, new Person { FirstName = null, LastName = null }))
.AssertBadRequest()
.AssertErrors(
"First name is required.",
"Last name is required.");
}
[Test]
public void Update_Test3()
{
using var test = ApiTester.Create<Startup>();
test.Controller<PersonController>()
.Run(c => c.Update(1, new Person { FirstName = null, LastName = null }))
.AssertBadRequest()
.AssertErrors(
new ApiError("firstName", "First name is required."),
new ApiError("lastName", "Last name is required."));
}
[Test]
public void Update_Test4()
{
using var test = ApiTester.Create<Startup>();
test.Controller<PersonController>()
.ExpectStatusCode(System.Net.HttpStatusCode.BadRequest)
.ExpectErrors(
"First name is required.",
"Last name is required.")
.Run(c => c.Update(1, new Person { FirstName = null, LastName = null }));
}
[Test]
public void Update_Test5_ExpectationFailure()
{
var ex = Assert.Throws<AssertionException>(() =>
{
using var test = ApiTester.Create<Startup>();
test.Controller<PersonController>()
.ExpectStatusCode(System.Net.HttpStatusCode.BadRequest)
.ExpectErrors(
"First name is requiredx.",
"Last name is required.")
.Run(c => c.Update(1, new Person { FirstName = null, LastName = null }));
});
Assert.That(ex.Message, Does.Contain("Error: First name is requiredx."));
}
[Test]
public void Update_Test6()
{
using var test = ApiTester.Create<Startup>();
test.Controller<PersonController>()
.ExpectStatusCode(System.Net.HttpStatusCode.BadRequest)
.ExpectError("No can do eighty-eight.")
.Run(c => c.Update(88, new Person { FirstName = null, LastName = null }));
}
[Test]
public void Update_Test7_ExpectationFailure2()
{
using var test = ApiTester.Create<Startup>();
test.Controller<PersonController>()
.ExpectStatusCode(System.Net.HttpStatusCode.BadRequest)
.ExpectError("No can do eighty-eight.")
.Run(c => c.Update(88, new Person { FirstName = null, LastName = null }));
}
[Test]
public async Task Http_Get1()
{
using var test = ApiTester.Create<Startup>();
(await test.Http()
.ExpectLogContains("Get using identifier 1")
.RunAsync(HttpMethod.Get, "Person/1" ))
.AssertOK()
.AssertValue(new Person { Id = 1, FirstName = "Bob", LastName = "Smith" });
}
[Test]
public void Http_Get2()
{
using var test = ApiTester.Create<Startup>();
test.Http()
.Run(HttpMethod.Get, "Person/1")
.AssertOK()
.AssertValue(new Person { Id = 1, FirstName = "Bob", LastName = "Smith" });
}
[Test]
public void Http_Update1()
{
using var test = ApiTester.Create<Startup>();
test.Http()
.Run(HttpMethod.Post, "Person/1", new Person { FirstName = "Bob", LastName = "Smith" })
.AssertOK()
.AssertValue(new Person { Id = 1, FirstName = "Bob", LastName = "Smith" });
}
[Test]
public void Http_Update2()
{
using var test = ApiTester.Create<Startup>();
test.Http()
.ExpectStatusCode(System.Net.HttpStatusCode.MethodNotAllowed)
.Run(HttpMethod.Put, "Person/1", new Person { FirstName = "Bob", LastName = "Smith" });
}
[Test]
public void Http_Update_Http1()
{
using var test = ApiTester.Create<Startup>();
test.Http<Person>()
.Run(HttpMethod.Post, "Person/1", new Person { FirstName = "Bob", LastName = "Smith" })
.AssertOK()
.AssertValue(new Person { Id = 1, FirstName = "Bob", LastName = "Smith" });
}
[Test]
public void Http_Update_Http2()
{
using var test = ApiTester.Create<Startup>();
test.Http<Person>()
.ExpectStatusCode(System.Net.HttpStatusCode.OK)
.ExpectValue(new Person { Id = 1, FirstName = "Bob", LastName = "Smith" })
.Run(HttpMethod.Post, "Person/1", new Person { FirstName = "Bob", LastName = "Smith" });
}
[Test]
public void Http_Update_Http3()
{
using var test = ApiTester.Create<Startup>();
test.Http<Person>()
.ExpectStatusCode(System.Net.HttpStatusCode.OK)
.ExpectValue(_ => new Person { Id = 1, FirstName = "Bob", LastName = "Smith" })
.Run(HttpMethod.Post, "Person/1", new Person { FirstName = "Bob", LastName = "Smith" });
}
[Test]
public void Http_Update_Http3_AsJson()
{
using var test = ApiTester.Create<Startup>();
test.Http<Person>()
.ExpectStatusCode(System.Net.HttpStatusCode.OK)
.ExpectJson("{ \"id\": 1, \"firstName\": \"Bob\", \"lastName\": \"Smith\" }")
.Run(HttpMethod.Post, "Person/1", new Person { FirstName = "Bob", LastName = "Smith" });
}
[Test]
public void Http_Update_Http4()
{
using var test = ApiTester.Create<Startup>();
test.Http<Person>()
.Run(HttpMethod.Post, "Person/99", new Person { FirstName = "Bob", LastName = "Smith" })
.AssertNotFound();
}
[Test]
public void Http_Update_Http5()
{
using var test = ApiTester.Create<Startup>();
test.Http<Person>()
.Run(HttpMethod.Post, "Person/88", new Person { FirstName = "Bob", LastName = "Smith" })
.Assert(System.Net.HttpStatusCode.BadRequest, "No can do eighty-eight.");
}
[Test]
public void Http_Update_Http6()
{
using var test = ApiTester.Create<Startup>();
test.Http<Person>()
.Run(HttpMethod.Post, "Person/1", new Person { FirstName = "Bob", LastName = "Smith" })
.AssertValue(new Person { Id = 1, FirstName = "Bob", LastName = "Smith" });
}
}
}