-
Notifications
You must be signed in to change notification settings - Fork 1
/
schema.test.ts
268 lines (251 loc) Β· 8.45 KB
/
schema.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
// Copyright 2018-2024 the oak authors. All rights reserved.
import { isHttpError } from "@oak/commons/http_errors";
import { assert } from "@std/assert/assert";
import { assertEquals } from "@std/assert/equals";
import { assertRejects } from "@std/assert/rejects";
import * as v from "@valibot/valibot";
import { MockRequestEvent } from "./testing_utils.ts";
import { Schema } from "./schema.ts";
Deno.test({
name: "Schema - empty schema should passthrough values for querystring",
async fn() {
const schema = new Schema(undefined, false);
const requestEvent = new MockRequestEvent("http://localhost/?a=1&b=2", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ c: 3 }),
});
const result = await schema.validateQueryString(requestEvent);
assertEquals(result, { output: { a: "1", b: "2" } });
},
});
Deno.test({
name: "Schema - empty schema should passthrough values for body",
async fn() {
const schema = new Schema(undefined, false);
const requestEvent = new MockRequestEvent("http://localhost/?a=1&b=2", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ c: 3 }),
});
const result = await schema.validateBody(requestEvent);
assertEquals(result, { output: { c: 3 } });
},
});
Deno.test({
name: "Schema - empty schema should passthrough values for response",
async fn() {
const schema = new Schema(undefined, false);
const result = await schema.validateResponse({ hello: "world" });
assertEquals(result, { output: { hello: "world" } });
},
});
Deno.test({
name: "Schema - querystring schema should validate querystring",
async fn() {
const schema = new Schema({
querystring: v.object({ a: v.string(), b: v.string() }),
}, false);
const requestEvent = new MockRequestEvent("http://localhost/?a=1&b=2", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ c: 3 }),
});
const result = await schema.validateQueryString(requestEvent);
assertEquals(result, { output: { a: "1", b: "2" } });
},
});
Deno.test({
name: "Schema - body schema should validate body",
async fn() {
const schema = new Schema({ body: v.object({ c: v.number() }) }, false);
const requestEvent = new MockRequestEvent("http://localhost/?a=1&b=2", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ c: 3 }),
});
const result = await schema.validateBody(requestEvent);
assertEquals(result, { output: { c: 3 } });
},
});
Deno.test({
name: "Schema - response schema should validate response",
async fn() {
const schema = new Schema(
{ response: v.object({ hello: v.string() }) },
false,
);
const result = await schema.validateResponse({ hello: "world" });
assertEquals(result, { output: { hello: "world" } });
},
});
Deno.test({
name: "Schema - invalid querystring should reject with 400",
async fn() {
const schema = new Schema({
querystring: v.object({ a: v.string(), b: v.string() }),
}, false);
const requestEvent = new MockRequestEvent("http://localhost/?a=1", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ c: 3 }),
});
const error = await assertRejects(async () => {
await schema.validateQueryString(requestEvent);
});
assert(isHttpError(error));
assertEquals(error.status, 400);
},
});
Deno.test({
name: "Schema - invalid body should reject with 400",
async fn() {
const schema = new Schema({ body: v.object({ c: v.string() }) }, false);
const requestEvent = new MockRequestEvent("http://localhost/?a=1&b=2", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ c: 3 }),
});
const error = await assertRejects(async () => {
await schema.validateBody(requestEvent);
});
assert(isHttpError(error));
assertEquals(error.status, 400);
},
});
Deno.test({
name: "Schema - invalid response should should reject with 500",
async fn() {
const schema = new Schema(
{ response: v.object({ hello: v.number() }) },
false,
);
const error = await assertRejects(async () => {
await schema.validateResponse({ hello: "world" });
});
assert(isHttpError(error));
assertEquals(error.status, 500);
},
});
Deno.test({
name: "Schema - invalid querystring should call invalid handler",
async fn() {
const schema = new Schema({
querystring: v.object({ a: v.string(), b: v.string() }),
invalidHandler(type, issues) {
assert(type === "querystring");
assertEquals(issues.length, 1);
return new Response("Invalid querystring", { status: 400 });
},
}, false);
const requestEvent = new MockRequestEvent("http://localhost/?a=1", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ c: 3 }),
});
const result = await schema.validateQueryString(requestEvent);
assert(result.invalidResponse instanceof Response);
assertEquals(result.invalidResponse.status, 400);
},
});
Deno.test({
name: "Schema - invalid body should call invalid handler",
async fn() {
const schema = new Schema({
body: v.object({ c: v.string() }),
invalidHandler(type, issues) {
assert(type === "body");
assertEquals(issues.length, 1);
return new Response("Invalid querystring", { status: 400 });
},
}, false);
const requestEvent = new MockRequestEvent("http://localhost/?a=1", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ c: 3 }),
});
const result = await schema.validateBody(requestEvent);
assert(result.invalidResponse instanceof Response);
assertEquals(result.invalidResponse.status, 400);
},
});
Deno.test({
name: "Schema - invalid response should should call invalid handler",
async fn() {
const schema = new Schema({
response: v.object({ hello: v.number() }),
invalidHandler(type, issues) {
assert(type === "response");
assertEquals(issues.length, 1);
return new Response("Invalid querystring", { status: 400 });
},
}, false);
const result = await schema.validateResponse({ hello: "world" });
assert(result.invalidResponse instanceof Response);
assertEquals(result.invalidResponse.status, 400);
},
});
Deno.test({
name: "Schema - throwing in invalid handler should throw 500 for querystring",
async fn() {
const schema = new Schema({
querystring: v.object({ a: v.string(), b: v.string() }),
invalidHandler() {
throw new Error("Boom");
},
}, false);
const requestEvent = new MockRequestEvent("http://localhost/?a=1", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ c: 3 }),
});
const error = await assertRejects(async () => {
await schema.validateQueryString(requestEvent);
});
assert(isHttpError(error));
assertEquals(error.status, 500);
assert(error.cause instanceof Error);
assertEquals(error.cause.message, "Boom");
},
});
Deno.test({
name: "Schema - throwing in invalid handler should throw 500 for body",
async fn() {
const schema = new Schema({
body: v.object({ c: v.string() }),
invalidHandler() {
throw new Error("Boom");
},
}, false);
const requestEvent = new MockRequestEvent("http://localhost/?a=1", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ c: 3 }),
});
const error = await assertRejects(async () => {
await schema.validateBody(requestEvent);
});
assert(isHttpError(error));
assertEquals(error.status, 500);
assert(error.cause instanceof Error);
assertEquals(error.cause.message, "Boom");
},
});
Deno.test({
name: "Schema - throwing in invalid handler should throw 500 for response",
async fn() {
const schema = new Schema({
response: v.object({ hello: v.number() }),
invalidHandler() {
throw new Error("Boom");
},
}, false);
const error = await assertRejects(async () => {
await schema.validateResponse({ hello: "world" });
});
assert(isHttpError(error));
assertEquals(error.status, 500);
assert(error.cause instanceof Error);
assertEquals(error.cause.message, "Boom");
},
});