deno.land / x / opine@2.3.4 / test / units / res.redirect.test.ts

res.redirect.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
368
369
370
371
372
import opine from "../../mod.ts";import { describe, it, pick } from "../utils.ts";import { Deferred, deferred, expect, superdeno } from "../deps.ts";import type { SuperDenoResponse } from "../deps.ts";import type { Handler, OpineRequest, OpineResponse } from "../../src/types.ts";
type DeferredTestResult = Deferred< { status?: number; location?: string | null; contentType?: string | null; body: string | null; }>;
function createRedirectMiddleware( redirectArgs: any[], deferredPromise: DeferredTestResult,): Handler { return function redirectMiddleware(req, res, next) { (res.redirect as any)(...redirectArgs);
// Does not support Deno.Reader. let body: string | null = null;
if (typeof res.body === "string") { body = res.body; } else if (res.body instanceof Uint8Array) { body = new TextDecoder().decode(res.body); }
deferredPromise.resolve({ status: res.status, location: res.headers?.get("location"), contentType: res.headers?.get("content-type"), body: typeof body === "string" ? body : null, }); };}
function handleRedirectTarget(req: OpineRequest, res: OpineResponse) { res.json({ url: req.originalUrl, query: req.query });}
function shouldNotHaveBody() { return function (res: SuperDenoResponse) { expect(res.text === "" || res.text == null).toBe(true); };}
describe("res", function () { describe(".redirect(url)", function () { it("should default to a 302 redirect", async function (done) { const location = "/to"; const app = opine(); const output: DeferredTestResult = deferred();
app.use("/from", createRedirectMiddleware([location], output)); app.use("/to", handleRedirectTarget);
superdeno(app) .get("/from") .redirects(-1) .expect(200, { url: "/to", query: {} }, done);
expect(pick(await output, ["status", "location"])).toEqual({ status: 302, location, }); });
it('should encode "url"', async function (done) { const app = opine(); const location = "/to?q=\u2603 §10"; const escapedLocation = "/to?q=%E2%98%83%20%C2%A710"; const locationSearchParams = new URLSearchParams( location.slice(location.indexOf("?")), ); const output: DeferredTestResult = deferred();
app.use("/from", createRedirectMiddleware([location], output)); app.use("/to", handleRedirectTarget);
superdeno(app) .get("/from") .redirects(-1) .expect( 200, { url: escapedLocation, query: { q: locationSearchParams.get("q") }, }, done, );
expect(pick(await output, ["status", "location"])).toEqual({ status: 302, location: escapedLocation, }); });
it('should not touch already-encoded sequences in "url"', async function ( done, ) { const app = opine(); const location = "/to?q=%20%20deno%26"; const locationSearchParams = new URLSearchParams( location.slice(location.indexOf("?")), ); const output: DeferredTestResult = deferred();
app.use("/from", createRedirectMiddleware([location], output)); app.use("/to", handleRedirectTarget);
superdeno(app) .get("/from") .redirects(-1) .expect(200, { url: location, query: { q: locationSearchParams.get("q") }, }, done);
expect(pick(await output, ["status", "location"])).toEqual({ status: 302, location, }); }); });
describe(".redirect(status, url)", function () { it("should set the response status", async function (done) { const app = opine(); const expectedStatus = 303; const location = "/to"; const output: DeferredTestResult = deferred();
app.use( "/from", createRedirectMiddleware([expectedStatus, location], output), ); app.use("/to", handleRedirectTarget);
superdeno(app) .get("/from") .redirects(-1) .expect(200, { url: location, query: {} }, done);
expect(pick(await output, ["status", "location"])).toEqual({ status: expectedStatus, location, }); });
it( "should throw exception (500) if the first arg is not a number", async function ( done, ) { const app = opine(); const expectedStatus = "303"; const location = "/to"; const output: DeferredTestResult = deferred();
app.use( "/from", createRedirectMiddleware([expectedStatus, location], output), ); app.use("/to", handleRedirectTarget);
superdeno(app) .get("/from") .redirects(-1) .expect(500, done); }, ); });
describe("when url is back", function () { it("should redirect to the referrer header", async function (done) { const app = opine(); const output: DeferredTestResult = deferred(); const referrer = "/to?referrer=ok";
app.use("/from", createRedirectMiddleware(["back"], output)); app.use("/to", handleRedirectTarget);
superdeno(app) .get("/from") .redirects(-1) .set("Referrer", referrer) .expect(200, { url: referrer, query: { referrer: "ok" } }, done);
expect(pick(await output, ["status", "location"])).toEqual({ status: 302, location: referrer, }); }); });
describe("when the request method is HEAD", function () { it("should ignore the body", function (done) { const app = opine(); const location = "/to"; const output: DeferredTestResult = deferred();
app.use("/from", createRedirectMiddleware([location], output)); app.use("/to", handleRedirectTarget);
superdeno(app) .head("/from") .redirects(-1) .expect(shouldNotHaveBody()) .expect(200, done); }); });
describe("when accepting html", function () { it("should respond with html", async function (done) { const app = opine(); const expectedStatus = 307; const expectedBody = '<p>Temporary Redirect. Redirecting to <a href="/to">/to</a></p>'; const location = "/to"; const output: DeferredTestResult = deferred();
app.use( "/from", createRedirectMiddleware([expectedStatus, location], output), ); app.use("/to", handleRedirectTarget);
superdeno(app) .get("/from") .redirects(-1) .set("Accept", "text/html") .expect(200, { url: location, query: {} }, done);
expect(await output).toEqual({ status: expectedStatus, location, contentType: "text/html; charset=utf-8", body: expectedBody, }); });
it("should escape the url and include the redirect type", async function ( done, ) { const app = opine(); const location = "/<la'me>"; const expectedBody = `<p>Found. Redirecting to <a href="/%3Cla&#39;me%3E">/%3Cla&#39;me%3E</a></p>`; const escapedLocation = "/%3Cla'me%3E"; const output: DeferredTestResult = deferred();
app.use("/from", createRedirectMiddleware([location], output)); app.use("/*", handleRedirectTarget);
superdeno(app) .get("/from") .redirects(-1) .set("Accept", "text/html") .expect(200, { url: escapedLocation, query: {} }, done);
expect(await output).toEqual({ status: 302, location: escapedLocation, contentType: "text/html; charset=utf-8", body: expectedBody, }); }); });
describe("when accepting text", function () { it("should respond with text", async function (done) { const app = opine(); const location = "/to"; const output: DeferredTestResult = deferred();
app.use("/from", createRedirectMiddleware([location], output)); app.use("/to", handleRedirectTarget);
superdeno(app) .get("/from") .redirects(-1) .set("Accept", "text/plain, */*") .expect(200, { url: location, query: {} }, done);
expect(await output).toEqual({ status: 302, location, contentType: "text/plain; charset=utf-8", body: "Found. Redirecting to /to", }); });
it("should encode the url", async function (done) { const app = opine(); const location = `/to?param=<script>alert("hax");</script>`; const output: DeferredTestResult = deferred();
app.use("/from", createRedirectMiddleware([location], output)); app.use("/to", handleRedirectTarget);
superdeno(app) .get("/from") .redirects(-1) .set("Accept", "text/plain, */*") .expect(200, done);
expect(await output).toEqual({ status: 302, location: "/to?param=%3Cscript%3Ealert(%22hax%22);%3C/script%3E", contentType: "text/plain; charset=utf-8", body: "Found. Redirecting to /to?param=%3Cscript%3Ealert(%22hax%22);%3C/script%3E", }); });
it("should include the redirect type", async function (done) { const app = opine(); const location = "/to"; const output: DeferredTestResult = deferred(); const expectedBody = "Moved Permanently. Redirecting to /to";
app.use("/from", createRedirectMiddleware([301, location], output)); app.use("/to", handleRedirectTarget);
superdeno(app) .get("/from") .redirects(-1) .set("Accept", "text/plain, */*") .expect(200, done);
expect(await output).toEqual({ status: 301, location, contentType: "text/plain; charset=utf-8", body: expectedBody, }); }); });
describe("when accepting neither text or html", function () { it("should respond with an empty body", async function (done) { const app = opine(); const location = "/to"; const output: DeferredTestResult = deferred();
app.use("/from", createRedirectMiddleware([301, location], output)); app.use("/to", handleRedirectTarget);
superdeno(app) .get("/from") .redirects(-1) .set("Accept", "application/octet-stream") .expect(200, { url: "/to", query: {} }, done);
const resolvedOutput = await output;
expect(pick(resolvedOutput, ["status"])).toEqual({ status: 301, });
expect(resolvedOutput.contentType == null).toBe(true); expect(resolvedOutput.body == null || resolvedOutput.body === "").toBe( true, ); }); });});
opine

Version Info

Tagged at
2 years ago