-
Notifications
You must be signed in to change notification settings - Fork 405
/
Copy pathexpress-error-handling.spec.ts
206 lines (178 loc) · 6.86 KB
/
express-error-handling.spec.ts
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
import express from 'express';
import { Server as HttpServer } from 'http';
import HttpStatusCodes from 'http-status-codes';
import { Get } from '../../src/decorator/Get';
import { Post } from '../../src/decorator/Post';
import { JsonController } from '../../src/decorator/JsonController';
import { Middleware } from '../../src/decorator/Middleware';
import { UseAfter } from '../../src/decorator/UseAfter';
import { BodyParam } from '../../src/decorator/BodyParam';
import { ExpressErrorMiddlewareInterface } from '../../src/driver/express/ExpressErrorMiddlewareInterface';
import { HttpError } from '../../src/http-error/HttpError';
import { NotFoundError } from '../../src/http-error/NotFoundError';
import { UnprocessableEntityError } from '../../src/http-error/UnprocessableEntityError';
import { createExpressServer, getMetadataArgsStorage } from '../../src/index';
import { axios } from '../utilities/axios';
import DoneCallback = jest.DoneCallback;
describe(``, () => {
let expressServer: HttpServer;
describe('express error handling', () => {
let errorHandlerCalled: boolean;
let errorHandledSpecifically: boolean;
beforeEach(() => {
errorHandlerCalled = undefined;
errorHandledSpecifically = undefined;
});
beforeAll((done: DoneCallback) => {
getMetadataArgsStorage().reset();
@Middleware({ type: 'after' })
class AllErrorsHandler implements ExpressErrorMiddlewareInterface {
error(error: HttpError, request: express.Request, response: express.Response, next: express.NextFunction): any {
errorHandlerCalled = true;
// ERROR HANDLED GLOBALLY
next(error);
}
}
class SpecificErrorHandler implements ExpressErrorMiddlewareInterface {
error(error: HttpError, request: express.Request, response: express.Response, next: express.NextFunction): any {
errorHandledSpecifically = true;
// ERROR HANDLED SPECIFICALLY
next(error);
}
}
class SoftErrorHandler implements ExpressErrorMiddlewareInterface {
error(error: HttpError, request: express.Request, response: express.Response, next: express.NextFunction): any {
// ERROR WAS IGNORED
next();
}
}
class ToJsonError extends HttpError {
public publicData: string;
public secretData: string;
constructor(httpCode: number, publicMsg?: string, privateMsg?: string) {
super(httpCode);
Object.setPrototypeOf(this, ToJsonError.prototype);
this.publicData = publicMsg || 'public';
this.secretData = privateMsg || 'secret';
}
toJSON(): any {
return {
status: this.httpCode,
publicData: `${this.publicData} (${this.httpCode})`,
};
}
}
@JsonController()
class ExpressErrorHandlerController {
@Get('/blogs')
blogs(): any {
return {
id: 1,
title: 'About me',
};
}
@Get('/posts')
posts(): never {
throw new Error('System error, cannot retrieve posts');
}
@Get('/videos')
videos(): never {
throw new NotFoundError('Videos were not found.');
}
@Get('/questions')
@UseAfter(SpecificErrorHandler)
questions(): never {
throw new Error('Something is wrong... Cannot load questions');
}
@Get('/files')
@UseAfter(SoftErrorHandler)
files(): never {
throw new Error('Something is wrong... Cannot load files');
}
@Get('/photos')
photos(): string {
return '1234';
}
@Get('/stories')
stories(): never {
throw new ToJsonError(503, 'sorry, try it again later', 'impatient user');
}
@Post('/videos')
createVideo(@BodyParam('meta') meta: string): never {
throw new UnprocessableEntityError('Meta is an array of strings.');
}
}
expressServer = createExpressServer().listen(3001, done);
});
afterAll((done: DoneCallback) => {
expressServer.close(done);
});
it('should not call global error handler middleware if there was no errors', async () => {
expect.assertions(2);
const response = await axios.get('/blogs');
expect(errorHandlerCalled).toBeFalsy();
expect(response.status).toEqual(HttpStatusCodes.OK);
});
it('should call global error handler middleware', async () => {
expect.assertions(3);
try {
await axios.get('/posts');
} catch (error) {
expect(errorHandlerCalled).toBeTruthy();
expect(errorHandledSpecifically).toBeFalsy();
expect(error.response.status).toEqual(HttpStatusCodes.INTERNAL_SERVER_ERROR);
}
});
it('should call global error handler middleware', async () => {
expect.assertions(3);
try {
await axios.get('/videos');
} catch (error) {
expect(errorHandlerCalled).toBeTruthy();
expect(errorHandledSpecifically).toBeFalsy();
expect(error.response.status).toEqual(HttpStatusCodes.NOT_FOUND);
}
});
it('should call error handler middleware if used', async () => {
expect.assertions(3);
try {
await axios.get('/questions');
} catch (error) {
expect(errorHandlerCalled).toBeTruthy();
expect(errorHandledSpecifically).toBeTruthy();
expect(error.response.status).toEqual(HttpStatusCodes.INTERNAL_SERVER_ERROR);
}
});
it('should not execute next middleware if soft error handled specifically and stopped error bubbling', async () => {
expect.assertions(3);
try {
await axios.get('/files');
} catch (error) {
expect(errorHandlerCalled).toBeFalsy();
expect(errorHandledSpecifically).toBeFalsy();
expect(error.response.status).toEqual(HttpStatusCodes.INTERNAL_SERVER_ERROR);
}
});
it('should process JsonErrors by their toJSON method if it exists', async () => {
expect.assertions(4);
try {
await axios.get('/stories');
} catch (error) {
expect(error.response.status).toEqual(HttpStatusCodes.SERVICE_UNAVAILABLE);
expect(error.response.data.status).toEqual(HttpStatusCodes.SERVICE_UNAVAILABLE);
expect(error.response.data.publicData).toEqual('sorry, try it again later (503)');
expect(error.response.data.secretData).toBeUndefined();
}
});
it('should call global error handler middleware for validation params', async () => {
expect.assertions(3);
try {
await axios.post('/videos', { meta: 'new' });
} catch (error) {
expect(errorHandlerCalled).toBeTruthy();
expect(error.response.status).toEqual(HttpStatusCodes.UNPROCESSABLE_ENTITY);
expect(error.response.data.message).toEqual('Meta is an array of strings.');
}
});
});
});