forked from oakserver/oak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplication_test.ts
367 lines (331 loc) · 7.77 KB
/
application_test.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
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
// Copyright 2018-2020 the oak authors. All rights reserved. MIT license.
import {
test,
assert,
assertEquals,
assertStrictEq,
assertThrowsAsync,
} from "./test_deps.ts";
import { Application, ListenOptions, ListenOptionsTls } from "./application.ts";
import { Context } from "./context.ts";
import {
serve as denoServe,
serveTLS as denoServeTls,
Server,
ServerRequest,
} from "./deps.ts";
import { Data, KeyStack } from "./keyStack.ts";
import { httpErrors } from "./httpError.ts";
let serverRequestStack: ServerRequest[] = [];
let requestResponseStack: ServerResponse[] = [];
let addrStack: Array<string | ListenOptions> = [];
let httpsOptionsStack: Array<Omit<ListenOptionsTls, "secure">> = [];
function teardown() {
serverRequestStack = [];
requestResponseStack = [];
addrStack = [];
httpsOptionsStack = [];
}
class MockServer {
close(): void {}
async *[Symbol.asyncIterator]() {
for await (const request of serverRequestStack) {
yield request;
}
}
}
const serve: typeof denoServe = function (
addr: string | ListenOptions,
): Server {
addrStack.push(addr);
return new MockServer() as Server;
};
const serveTls: typeof denoServeTls = function (
options: Omit<ListenOptionsTls, "secure">,
): Server {
httpsOptionsStack.push(options);
return new MockServer() as Server;
};
interface ServerResponse {
status?: number;
headers?: Headers;
body?: Uint8Array;
}
function createMockRequest(
url = "https://example.com/",
proto = "HTTP/1.1",
): ServerRequest {
return {
url,
headers: new Headers(),
async respond(response: ServerResponse) {
requestResponseStack.push(response);
},
proto,
} as any;
}
test({
name: "construct App()",
fn() {
const app = new Application();
assert(app instanceof Application);
},
});
test({
name: "register middleware",
async fn() {
serverRequestStack.push(createMockRequest());
const app = new Application({ serve });
let called = 0;
app.use((context, next) => {
assert(context instanceof Context);
assertEquals(typeof next, "function");
called++;
});
await app.listen(":8000");
assertEquals(called, 1);
teardown();
},
});
test({
name: "middleware execution order 1",
async fn() {
serverRequestStack.push(createMockRequest());
const app = new Application({ serve });
const callStack: number[] = [];
app.use(() => {
callStack.push(1);
});
app.use(() => {
callStack.push(2);
});
await app.listen(":8000");
assertEquals(callStack, [1]);
teardown();
},
});
test({
name: "middleware execution order 2",
async fn() {
serverRequestStack.push(createMockRequest());
const app = new Application({ serve });
const callStack: number[] = [];
app.use((_context, next) => {
callStack.push(1);
next();
});
app.use(() => {
callStack.push(2);
});
await app.listen(":8000");
assertEquals(callStack, [1, 2]);
teardown();
},
});
test({
name: "middleware execution order 3",
async fn() {
serverRequestStack.push(createMockRequest());
const app = new Application({ serve });
const callStack: number[] = [];
app.use((_context, next) => {
callStack.push(1);
next();
callStack.push(2);
});
app.use(async () => {
callStack.push(3);
await Promise.resolve();
callStack.push(4);
});
await app.listen(":8000");
assertEquals(callStack, [1, 3, 2, 4]);
teardown();
},
});
test({
name: "middleware execution order 4",
async fn() {
serverRequestStack.push(createMockRequest());
const app = new Application({ serve });
const callStack: number[] = [];
app.use(async (_context, next) => {
callStack.push(1);
await next();
callStack.push(2);
});
app.use(async () => {
callStack.push(3);
await Promise.resolve();
callStack.push(4);
});
await app.listen(":8000");
assertEquals(callStack, [1, 3, 4, 2]);
teardown();
},
});
test({
name: "app.listen",
async fn() {
const app = new Application({ serve });
app.use(() => {});
await app.listen("127.0.0.1:8080");
assertEquals(addrStack, [{ hostname: "127.0.0.1", port: 8080 }]);
teardown();
},
});
test({
name: "app.listen IPv6 Loopback",
async fn() {
const app = new Application({ serve });
app.use(() => {});
await app.listen("[::1]:8080");
assertEquals(addrStack, [{ hostname: "::1", port: 8080 }]);
teardown();
},
});
test({
name: "app.listen(options)",
async fn() {
const app = new Application({ serve });
app.use(() => {});
await app.listen({ port: 8000 });
assertEquals(addrStack, [{ port: 8000 }]);
teardown();
},
});
test({
name: "app.listenTLS",
async fn() {
const app = new Application({ serve, serveTls });
app.use(() => {});
await app.listen({
port: 8000,
secure: true,
certFile: "",
keyFile: "",
});
assertEquals(httpsOptionsStack, [
{
port: 8000,
secure: true,
certFile: "",
keyFile: "",
},
]);
teardown();
},
});
test({
name: "app.state",
async fn() {
serverRequestStack.push(createMockRequest());
const app = new Application<{ foo?: string }>({ state: {}, serve });
app.state.foo = "bar";
let called = false;
app.use((context) => {
assertEquals(context.state, { foo: "bar" });
assertStrictEq(app.state, context.state);
called = true;
});
await app.listen(":8000");
assert(called);
teardown();
},
});
test({
name: "app.keys undefined",
fn() {
const app = new Application();
assertEquals(app.keys, undefined);
},
});
test({
name: "app.keys passed as array",
fn() {
const app = new Application({ keys: ["foo"] });
assert(app.keys instanceof KeyStack);
},
});
test({
name: "app.keys passed as KeyStack-like",
fn() {
const keys = {
sign(data: Data): string {
return "";
},
verify(data: Data, digest: string): boolean {
return true;
},
indexOf(data: Data, digest: string): number {
return 0;
},
} as KeyStack;
const app = new Application({ keys });
assert(app.keys === keys);
},
});
test({
name: "app.keys set as array",
fn() {
const app = new Application();
app.keys = ["foo"];
assert(app.keys instanceof KeyStack);
},
});
test({
name: "app.listen({ signal })",
async fn() {
const app = new Application({ serve });
const abortController = new AbortController();
serverRequestStack.push(createMockRequest());
serverRequestStack.push(createMockRequest());
let count = 0;
app.use(() => {
count++;
});
const p = app.listen("localhost:8000");
abortController.abort();
await p;
assertEquals(count, 2);
teardown();
},
});
test({
name: "app.addEventListener()",
async fn() {
const app = new Application({ serve });
app.addEventListener("error", (evt) => {
assert(evt.error instanceof httpErrors.InternalServerError);
});
serverRequestStack.push(createMockRequest());
app.use((ctx) => {
ctx.throw(500, "oops!");
});
await app.listen({ port: 8000 });
teardown();
},
});
test({
name: "uncaught errors impact response",
async fn() {
const app = new Application({ serve });
serverRequestStack.push(createMockRequest());
app.use((ctx) => {
ctx.throw(404, "File Not Found");
});
await app.listen({ port: 8000 });
const [response] = requestResponseStack;
assertEquals(response.status, 404);
teardown();
},
});
test({
name: "app.listen() without middleware",
async fn() {
const app = new Application({ serve });
await assertThrowsAsync(async () => {
await app.listen(":8000");
}, TypeError);
},
});