deno.land / x / opine@2.3.4 / test / units / bodyParser.urlencoded.test.ts

bodyParser.urlencoded.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
import { urlencoded } from "../../mod.ts";import { Buffer, expect } from "../deps.ts";import { describe, it } from "../utils.ts";
const encoder = new TextEncoder();const mockFormData = new URLSearchParams("hello=deno&opine=is+awesome");
const formHeaders = new Headers();formHeaders.set("Content-Type", "application/x-www-form-urlencoded");
const textHeaders = new Headers();textHeaders.set("Content-Type", "text/plain");textHeaders.set("Content-Length", "1");
describe("bodyParser: urlencoded", () => { it("should handle requests without bodies", (done) => { const req: any = { headers: formHeaders }; const parser = urlencoded();
parser(req, {} as any, (err?: any) => { if (err) throw err; expect(req.parsedBody).toEqual({}); done(); }); });
it("should handle requests with encoded urlencoded bodies", (done) => { const req: any = { body: new Buffer(encoder.encode(mockFormData.toString())), headers: formHeaders, }; req.headers.set("Content-Length", "1"); const parser = urlencoded();
parser(req, {} as any, (err?: any) => { if (err) throw err; expect(req.parsedBody).toEqual(Object.fromEntries(mockFormData)); done(); }); });
it("should not alter request bodies when the content type is not urlencoded", (done) => { const mockBody = Symbol("test-body"); const req: any = { body: mockBody, headers: textHeaders, }; req.headers.set("Content-Length", "1"); const parser = urlencoded();
parser(req, {} as any, (err?: any) => { if (err) throw err; expect(req.body).toEqual(mockBody); expect(req.parsedBody).toBeUndefined(); done(); }); });});
opine

Version Info

Tagged at
2 years ago