-
Notifications
You must be signed in to change notification settings - Fork 235
/
middleware.test.ts
128 lines (113 loc) · 3.24 KB
/
middleware.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
// Copyright 2018-2024 the oak authors. All rights reserved. MIT license.
// deno-lint-ignore-file
import { assertEquals, assertStrictEquals } from "./deps_test.ts";
import { assert, errors } from "./deps.ts";
import { createMockContext } from "./testing.ts";
import {
compose,
isMiddlewareObject,
type Middleware,
type MiddlewareObject,
type Next,
} from "./middleware.ts";
import { Context } from "./context.ts";
Deno.test({
name: "test compose()",
async fn() {
const callStack: number[] = [];
const mockContext = createMockContext();
const mw1: Middleware = async (context, next) => {
assertStrictEquals(context, mockContext);
assertEquals(typeof next, "function");
callStack.push(1);
await next();
};
const mw2: Middleware = async (context, next) => {
assertStrictEquals(context, mockContext);
assertEquals(typeof next, "function");
callStack.push(2);
await next();
};
await compose([mw1, mw2])(mockContext);
assertEquals(callStack, [1, 2]);
},
});
Deno.test({
name: "isMiddlewareObject()",
async fn() {
class MockMiddlewareObject implements MiddlewareObject {
handleRequest(
_context: Context<Record<string, any>, Record<string, any>>,
_next: Next,
): unknown {
return;
}
}
assert(isMiddlewareObject(new MockMiddlewareObject()));
assert(isMiddlewareObject({ handleRequest() {} }));
assert(!isMiddlewareObject(function () {}));
},
});
Deno.test({
name: "middleware objects are composed correctly",
async fn() {
const callStack: number[] = [];
const mockContext = createMockContext();
class MockMiddlewareObject implements MiddlewareObject {
#counter = 0;
async handleRequest(_context: any, next: Next) {
assertEquals(typeof next, "function");
callStack.push(this.#counter++);
await next();
}
}
const mwo = new MockMiddlewareObject();
const fn = compose([mwo]);
await fn(mockContext);
await fn(mockContext);
assertEquals(callStack, [0, 1]);
},
});
Deno.test({
name: "next() is catchable",
async fn() {
let caught: any;
const mw1: Middleware = async (ctx, next) => {
try {
await next();
} catch (err) {
caught = err;
}
};
const mw2: Middleware = async (ctx) => {
ctx.throw(500);
};
const context = createMockContext();
await compose([mw1, mw2])(context);
assert(caught instanceof errors.InternalServerError);
},
});
Deno.test({
name: "composed middleware accepts next middleware",
async fn() {
const callStack: number[] = [];
const mockContext = createMockContext();
const mw0: Middleware = async (context, next): Promise<void> => {
assertEquals(typeof next, "function");
callStack.push(3);
await next();
};
const mw1: Middleware = async (context, next) => {
assertEquals(typeof next, "function");
callStack.push(1);
await next();
};
const mw2: Middleware = async (context, next) => {
assertEquals(typeof next, "function");
callStack.push(2);
await next();
};
await compose([mw1, mw2])(mockContext, mw0 as () => Promise<void>);
assertEquals(callStack, [1, 2, 3]);
},
});