forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExceptionHandlingTests.cs
More file actions
547 lines (489 loc) · 18.6 KB
/
Copy pathExceptionHandlingTests.cs
File metadata and controls
547 lines (489 loc) · 18.6 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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
using System;
using System.Net;
using System.Runtime.Serialization;
using System.Threading.Tasks;
using NUnit.Framework;
using Funq;
using ServiceStack.Text;
using ServiceStack.Web;
namespace ServiceStack.WebHost.Endpoints.Tests
{
[Route("/users")]
public class User { }
public class UserResponse : IHasResponseStatus
{
public ResponseStatus ResponseStatus { get; set; }
}
public class UserService : Service
{
public object Get(User request)
{
return new HttpError(HttpStatusCode.BadRequest, "CanNotExecute", "Failed to execute!");
}
public object Post(User request)
{
throw new HttpError(HttpStatusCode.BadRequest, "CanNotExecute", "Failed to execute!");
}
public object Delete(User request)
{
throw new HttpError(HttpStatusCode.Forbidden, "CanNotExecute", "Failed to execute!");
}
public object Put(User request)
{
throw new ArgumentException();
}
}
public class CustomException : ArgumentException
{
public CustomException() : base("User Defined Error") { }
}
public class ExceptionWithResponseStatus { }
public class ExceptionWithResponseStatusResponse
{
public ResponseStatus ResponseStatus { get; set; }
}
public class ExceptionWithResponseStatusService : Service
{
public object Any(ExceptionWithResponseStatus request)
{
throw new CustomException();
}
}
public class ExceptionNoResponseStatus { }
public class ExceptionNoResponseStatusResponse { }
public class ExceptionNoResponseStatusService : Service
{
public object Any(ExceptionNoResponseStatus request)
{
throw new CustomException();
}
}
public class ExceptionNoResponseDto { }
public class ExceptionNoResponseDtoService : Service
{
public object Any(ExceptionNoResponseDto request)
{
throw new CustomException();
}
}
public class ExceptionReturnVoid : IReturnVoid { }
public class ExceptionReturnVoidService : Service
{
public void Any(ExceptionReturnVoid request)
{
throw new CustomException();
}
}
public class CaughtException { }
public class CaughtExceptionAsync { }
public class CaughtExceptionService : Service
{
public object Any(CaughtException request)
{
throw new ArgumentException();
}
public async Task<object> Any(CaughtExceptionAsync request)
{
await Task.Yield();
throw new ArgumentException();
}
}
public class UncatchedException { }
public class UncatchedExceptionAsync { }
public class UncatchedExceptionResponse { }
public class UncatchedExceptionService : Service
{
public object Any(UncatchedException request)
{
//We don't wrap a try..catch block around the service (which happens with ServiceBase<> automatically)
//so the global exception handling strategy is invoked
throw new ArgumentException();
}
public async Task<object> Any(UncatchedExceptionAsync request)
{
await Task.Yield();
throw new ArgumentException();
}
}
[Route("/binding-error/{Id}")]
public class ExceptionWithRequestBinding
{
public int Id { get; set; }
}
public class ExceptionWithRequestBindingService : Service
{
public object Any(ExceptionWithRequestBinding request)
{
return request;
}
}
public class CustomHttpError
{
public int StatusCode { get; set; }
public string StatusDescription { get; set; }
}
public class CustomHttpErrorResponse
{
public string Custom { get; set; }
public ResponseStatus ResponseStatus { get; set; }
}
public class CustomHttpErrorService : Service
{
public object Any(CustomHttpError request)
{
throw new HttpError(request.StatusCode, request.StatusDescription);
}
}
public class CustomFieldHttpError { }
public class CustomFieldHttpErrorResponse
{
public string Custom { get; set; }
public ResponseStatus ResponseStatus { get; set; }
}
public class CustomFieldHttpErrorService : Service
{
public object Any(CustomFieldHttpError request)
{
throw new HttpError(new CustomFieldHttpErrorResponse
{
Custom = "Ignored",
ResponseStatus = new ResponseStatus("StatusErrorCode", "StatusErrorMessage")
},
500,
"HeaderErrorCode");
}
}
public class DirectHttpError { }
public class DirectResponseService : Service
{
public object Any(DirectHttpError request)
{
base.Response.StatusCode = 500;
base.Response.StatusDescription = "HeaderErrorCode";
return new CustomFieldHttpErrorResponse
{
Custom = "Not Ignored",
ResponseStatus = new ResponseStatus("StatusErrorCode", "StatusErrorMessage")
};
}
}
[TestFixture]
public class ExceptionHandlingTests
{
private const string ListeningOn = "http://localhost:1337/";
public class ExceptionHandlingAppHostHttpListener
: AppHostHttpListenerBase
{
public ExceptionHandlingAppHostHttpListener()
: base("Exception handling tests", typeof(UserService).Assembly) { }
public override void Configure(Container container)
{
JsConfig.EmitCamelCaseNames = true;
SetConfig(new HostConfig { DebugMode = false });
//Custom global uncaught exception handling strategy
this.UncaughtExceptionHandlers.Add((req, res, operationName, ex) =>
{
res.Write(string.Format("UncaughtException {0}", ex.GetType().Name));
res.EndRequest(skipHeaders: true);
});
this.ServiceExceptionHandlers.Add((httpReq, request, ex) =>
{
if (request is UncatchedException || request is UncatchedExceptionAsync)
throw ex;
if (request is CaughtException || request is CaughtExceptionAsync)
{
return DtoUtils.CreateErrorResponse(request, new ArgumentException("ExceptionCaught"));
}
return null;
});
}
public override void OnExceptionTypeFilter(Exception ex, ResponseStatus responseStatus)
{
"In OnExceptionTypeFilter...".Print();
base.OnExceptionTypeFilter(ex, responseStatus);
}
public override void OnUncaughtException(IRequest httpReq, IResponse httpRes, string operationName, Exception ex)
{
"In OnUncaughtException...".Print();
base.OnUncaughtException(httpReq, httpRes, operationName, ex);
}
}
ExceptionHandlingAppHostHttpListener appHost;
[TestFixtureSetUp]
public void OnTestFixtureSetUp()
{
appHost = new ExceptionHandlingAppHostHttpListener();
appHost.Init();
appHost.Start(ListeningOn);
}
[TestFixtureTearDown]
public void OnTestFixtureTearDown()
{
appHost.Dispose();
appHost.UncaughtExceptionHandlers = null;
}
static IRestClient[] ServiceClients =
{
new JsonServiceClient(ListeningOn),
new XmlServiceClient(ListeningOn),
new JsvServiceClient(ListeningOn)
//SOAP not supported in HttpListener
//new Soap11ServiceClient(ServiceClientBaseUri),
//new Soap12ServiceClient(ServiceClientBaseUri)
};
[Test, TestCaseSource("ServiceClients")]
public void Handles_Returned_Http_Error(IRestClient client)
{
try
{
client.Get<UserResponse>("/users");
Assert.Fail();
}
catch (WebServiceException ex)
{
Assert.That(ex.ErrorCode, Is.EqualTo("CanNotExecute"));
Assert.That(ex.StatusCode, Is.EqualTo((int)System.Net.HttpStatusCode.BadRequest));
Assert.That(ex.Message, Is.EqualTo("CanNotExecute"));
}
}
[Test, TestCaseSource("ServiceClients")]
public void Handles_Thrown_Http_Error(IRestClient client)
{
try
{
client.Post<UserResponse>("/users", new User());
Assert.Fail();
}
catch (WebServiceException ex)
{
Assert.That(ex.ErrorCode, Is.EqualTo("CanNotExecute"));
Assert.That(ex.StatusCode, Is.EqualTo((int)System.Net.HttpStatusCode.BadRequest));
Assert.That(ex.Message, Is.EqualTo("CanNotExecute"));
}
}
[Test, TestCaseSource("ServiceClients")]
public void Handles_Thrown_Http_Error_With_Forbidden_status_code(IRestClient client)
{
try
{
client.Delete<UserResponse>("/users");
Assert.Fail();
}
catch (WebServiceException ex)
{
Assert.That(ex.ErrorCode, Is.EqualTo("CanNotExecute"));
Assert.That(ex.StatusCode, Is.EqualTo((int)System.Net.HttpStatusCode.Forbidden));
Assert.That(ex.Message, Is.EqualTo("CanNotExecute"));
}
}
[Test, TestCaseSource("ServiceClients")]
public void Handles_Normal_Exception(IRestClient client)
{
try
{
client.Put<UserResponse>("/users", new User());
Assert.Fail();
}
catch (WebServiceException ex)
{
Assert.That(ex.ErrorCode, Is.EqualTo("ArgumentException"));
Assert.That(ex.StatusCode, Is.EqualTo((int)System.Net.HttpStatusCode.BadRequest));
}
}
public string PredefinedJsonUrl<T>()
{
return ListeningOn + "json/reply/" + typeof(T).Name;
}
[Test]
public void Returns_populated_dto_when_has_ResponseStatus()
{
try
{
var json = PredefinedJsonUrl<ExceptionWithResponseStatus>().GetJsonFromUrl();
Assert.Fail("Should throw");
}
catch (WebException webEx)
{
var errorResponse = ((HttpWebResponse)webEx.Response);
var body = errorResponse.GetResponseStream().ReadFully().FromUtf8Bytes();
Assert.That(body, Is.EqualTo(
"{\"responseStatus\":{\"errorCode\":\"CustomException\",\"message\":\"User Defined Error\",\"errors\":[]}}"));
}
}
[Test]
public void Returns_empty_dto_when_NoResponseStatus()
{
try
{
var json = PredefinedJsonUrl<ExceptionNoResponseStatus>().GetJsonFromUrl();
Assert.Fail("Should throw");
}
catch (WebException webEx)
{
var errorResponse = ((HttpWebResponse)webEx.Response);
var body = errorResponse.GetResponseStream().ReadFully().FromUtf8Bytes();
Assert.That(body, Is.EqualTo("{}"));
}
}
[Test]
public void Returns_no_body_when_NoResponseDto()
{
try
{
var json = PredefinedJsonUrl<ExceptionNoResponseDto>().GetJsonFromUrl();
Assert.Fail("Should throw");
}
catch (WebException webEx)
{
var errorResponse = ((HttpWebResponse)webEx.Response);
var body = errorResponse.GetResponseStream().ReadFully().FromUtf8Bytes();
Assert.That(body, Is.StringStarting("{\"responseStatus\":{\"errorCode\":\"CustomException\",\"message\":\"User Defined Error\""));
}
}
[Test]
public void Returns_exception_when_ReturnVoid()
{
try
{
var json = PredefinedJsonUrl<ExceptionReturnVoid>().GetJsonFromUrl();
Assert.Fail("Should throw");
}
catch (WebException webEx)
{
var errorResponse = ((HttpWebResponse)webEx.Response);
var body = errorResponse.GetResponseStream().ReadFully().FromUtf8Bytes();
Assert.That(body, Is.StringStarting("{\"responseStatus\":{\"errorCode\":\"CustomException\",\"message\":\"User Defined Error\""));
}
try
{
var client = new JsonServiceClient(ListeningOn);
client.Get(new ExceptionReturnVoid());
Assert.Fail("Should throw");
}
catch (WebServiceException ex)
{
Assert.That(ex.StatusCode, Is.EqualTo(400));
Assert.That(ex.StatusDescription, Is.EqualTo(typeof(CustomException).Name));
Assert.That(ex.ErrorCode, Is.EqualTo(typeof(CustomException).Name));
Assert.That(ex.ErrorMessage, Is.EqualTo("User Defined Error"));
Assert.That(ex.ResponseBody, Is.StringStarting("{\"responseStatus\":{\"errorCode\":\"CustomException\",\"message\":\"User Defined Error\""));
}
}
[Test]
public void Returns_custom_ResponseStatus_with_CustomFieldHttpError()
{
try
{
var json = PredefinedJsonUrl<CustomFieldHttpError>().GetJsonFromUrl();
Assert.Fail("Should throw");
}
catch (WebException webEx)
{
var errorResponse = ((HttpWebResponse)webEx.Response);
Assert.That((int)errorResponse.StatusCode, Is.EqualTo(500));
Assert.That(errorResponse.StatusDescription, Is.EqualTo("HeaderErrorCode"));
var body = errorResponse.GetResponseStream().ReadFully().FromUtf8Bytes();
var customResponse = body.FromJson<CustomFieldHttpErrorResponse>();
var errorStatus = customResponse.ResponseStatus;
Assert.That(errorStatus.ErrorCode, Is.EqualTo("StatusErrorCode"));
Assert.That(errorStatus.Message, Is.EqualTo("StatusErrorMessage"));
Assert.That(customResponse.Custom, Is.Null);
}
}
[Test]
public void Returns_custom_Status_and_Description_with_CustomHttpError()
{
try
{
var json = PredefinedJsonUrl<CustomHttpError>()
.AddQueryParam("StatusCode", 406)
.AddQueryParam("StatusDescription", "CustomDescription")
.GetJsonFromUrl();
Assert.Fail("Should throw");
}
catch (WebException webEx)
{
var errorResponse = ((HttpWebResponse)webEx.Response);
Assert.That((int)errorResponse.StatusCode, Is.EqualTo(406));
Assert.That(errorResponse.StatusDescription, Is.EqualTo("CustomDescription"));
}
}
[Test]
public void Returns_custom_ResponseStatus_with_DirectHttpError()
{
try
{
var json = PredefinedJsonUrl<DirectHttpError>().GetJsonFromUrl();
Assert.Fail("Should throw");
}
catch (WebException webEx)
{
var errorResponse = ((HttpWebResponse)webEx.Response);
Assert.That((int)errorResponse.StatusCode, Is.EqualTo(500));
Assert.That(errorResponse.StatusDescription, Is.EqualTo("HeaderErrorCode"));
var body = errorResponse.GetResponseStream().ReadFully().FromUtf8Bytes();
var customResponse = body.FromJson<CustomFieldHttpErrorResponse>();
var errorStatus = customResponse.ResponseStatus;
Assert.That(errorStatus.ErrorCode, Is.EqualTo("StatusErrorCode"));
Assert.That(errorStatus.Message, Is.EqualTo("StatusErrorMessage"));
Assert.That(customResponse.Custom, Is.EqualTo("Not Ignored"));
}
}
[Test]
public void Can_override_global_exception_handling()
{
var req = (HttpWebRequest)WebRequest.Create(PredefinedJsonUrl<UncatchedException>());
var res = req.GetResponse().ReadToEnd();
Assert.AreEqual("UncaughtException ArgumentException", res);
}
[Test]
public void Can_override_global_exception_handling_async()
{
var req = (HttpWebRequest)WebRequest.Create(PredefinedJsonUrl<UncatchedExceptionAsync>());
var res = req.GetResponse().ReadToEnd();
Assert.AreEqual("UncaughtException ArgumentException", res);
}
[Test]
public void Can_override_caught_exception()
{
try
{
var req = (HttpWebRequest)WebRequest.Create(PredefinedJsonUrl<CaughtException>());
var res = req.GetResponse().ReadToEnd();
Assert.Fail("Should Throw");
}
catch (WebException ex)
{
Assert.That(ex.IsAny400());
var json = ex.GetResponseBody();
var response = json.FromJson<ErrorResponse>();
Assert.That(response.ResponseStatus.Message, Is.EqualTo("ExceptionCaught"));
}
}
[Test]
public void Can_override_caught_exception_async()
{
try
{
var req = (HttpWebRequest)WebRequest.Create(PredefinedJsonUrl<CaughtExceptionAsync>());
var res = req.GetResponse().ReadToEnd();
Assert.Fail("Should Throw");
}
catch (WebException ex)
{
Assert.That(ex.IsAny400());
var json = ex.GetResponseBody();
var response = json.FromJson<ErrorResponse>();
Assert.That(response.ResponseStatus.Message, Is.EqualTo("ExceptionCaught"));
}
}
[Test]
public void Request_binding_error_raises_UncaughtException()
{
var response = PredefinedJsonUrl<ExceptionWithRequestBinding>()
.AddQueryParam("Id", "NaN")
.GetStringFromUrl();
Assert.That(response, Is.EqualTo("UncaughtException SerializationException"));
}
}
}