deno.land / x / abc@v1.3.3 / context_test.ts

context_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
import { assertEquals, assertStringIncludes,} from "./vendor/https/deno.land/std/testing/asserts.ts";import { Status } from "./vendor/https/deno.land/std/http/http_status.ts";import { createMockBodyReader, createMockRequest } from "./test_util.ts";import { Context } from "./context.ts";import { Header, MIME } from "./constants.ts";const { test } = Deno;
test("context string resp", function (): void { const options = { app: undefined!, r: createMockRequest() }; const results = [ `{foo: "bar"}`, `<h1>Title</h1>`, `foo`, `foo=bar`, `undefined`, `null`, `0`, `true`, ``, ]; const c = new Context(options); for (const r of results) { c.string(r); assertEquals(c.response.status, 200); assertEquals(c.response.body, new TextEncoder().encode(r)); assertStringIncludes( c.response.headers!.get("Content-Type") ?? "", "text/plain", ); }});
test("context json resp", function (): void { const options = { app: undefined!, r: createMockRequest() }; const results = [{ foo: "bar" }, `{foo: "bar"}`, [1, 2], {}, [], `[]`]; const c = new Context(options); for (const r of results) { c.json(r); assertEquals(c.response.status, 200); assertEquals( c.response.body, new TextEncoder().encode(typeof r === "object" ? JSON.stringify(r) : r), ); assertStringIncludes( c.response.headers!.get("Content-Type") ?? "", "application/json", ); }});
test("context html resp", function (): void { const options = { app: undefined!, r: createMockRequest() }; const results = [ `{foo: "bar"}`, `<h1>Title</h1>`, `foo`, `foo=bar`, `undefined`, `null`, `0`, `true`, ``, ]; const c = new Context(options); for (const r of results) { c.html(r); assertEquals(c.response.status, 200); assertEquals(c.response.body, new TextEncoder().encode(r)); assertStringIncludes( c.response.headers!.get("Content-Type") ?? "", "text/html", ); }});
test("context file resp", async function (): Promise<void> { const options = { app: undefined!, r: createMockRequest() }; const c = new Context(options); await c.file("./mod.ts"); assertEquals( c.response.headers!.get("Content-Type"), "application/javascript; charset=UTF-8", );});
test("context req with cookies", function RequestWithCookies(): void { const options = { app: undefined!, r: createMockRequest() }; const c = new Context(options); c.request.headers.append("Cookie", "PREF=al=en-GB&f1=123; wide=1; SID=123"); assertEquals(c.cookies, { PREF: "al=en-GB&f1=123", wide: "1", SID: "123", }); c.setCookie({ name: "hello", value: "world", }); assertEquals(c.response.headers?.get("Set-Cookie"), "hello=world");});
test("context redirect", function (): void { const options = { app: undefined!, r: createMockRequest() }; const c = new Context(options); c.redirect("https://a.com"); assertEquals(c.response.headers?.get(Header.Location), "https://a.com"); assertEquals(c.response.status, Status.Found); c.redirect("https://b.com", Status.UseProxy); assertEquals(c.response.headers?.get(Header.Location), "https://b.com"); assertEquals(c.response.status, Status.UseProxy);});
test("context multipart/form-data req", async function (): Promise<void> { const options = { app: undefined!, r: createMockRequest({ body: createMockBodyReader( `------WebKitFormBoundary4HgCv3WldXbH8Iob\r\nContent-Disposition: form-data; name="foo"\r\n\r\nbar\r\n------WebKitFormBoundary4HgCv3WldXbH8Iob\r\nContent-Disposition: form-data; name="foo1"\r\n\r\nbar1\r\n------WebKitFormBoundary4HgCv3WldXbH8Iob\r\nContent-Disposition: form-data; name="foo2"\r\n\r\nbar2\r\n------WebKitFormBoundary4HgCv3WldXbH8Iob--`, ), headers: new Headers({ [Header.ContentType]: MIME.MultipartForm + "; boundary=----WebKitFormBoundary4HgCv3WldXbH8Iob", }), }), }; const c = new Context(options); const body = await c.body;
assertEquals(body, { foo: "bar", foo1: "bar1", foo2: "bar2", });});
test("context application/x-www-form-urlencoded req", async function (): Promise< void> { const options = { app: undefined!, r: createMockRequest({ body: createMockBodyReader("foo=bar"), headers: new Headers({ [Header.ContentType]: MIME.ApplicationForm }), }), };
const c = new Context(options); const body = await c.body;
assertEquals(body, { foo: "bar" });});
test("context application/json req", async function (): Promise<void> { const options = { app: undefined!, r: createMockRequest({ body: createMockBodyReader(`{"foo":"bar"}`), headers: new Headers({ [Header.ContentType]: MIME.ApplicationJSON }), }), };
const c = new Context(options); const body = await c.body;
assertEquals(body, { foo: "bar" });});
test("context text/plain req", async function (): Promise<void> { const options = { app: undefined!, r: createMockRequest({ body: createMockBodyReader(`{"foo":"bar"}`), headers: new Headers({ [Header.ContentType]: MIME.TextPlain }), }), };
const c = new Context(options); const body = await c.body;
assertEquals(body, `{"foo":"bar"}`);});
test("context custom", function (): void { class CustomContext extends Context { constructor(c: Context) { super(c); }
hello(): string { return "hello"; } }
const options = { app: undefined!, r: createMockRequest() }; const c: Context = new CustomContext(new Context(options)); const cc = c.customContext;
assertEquals(cc.hello(), "hello");});
test("context get set", function (): void { const c = new Context({ app: undefined!, r: createMockRequest() });
c.set("Hello", "World"); assertEquals(c.get("hello"), undefined); assertEquals(c.get("Hello"), "World");
const key = Symbol("Hello"); c.set(key, "World"); assertEquals(c.get(Symbol("Hello")), undefined); assertEquals(c.get(key), "World");});
test("context read body twice", async function (): Promise<void> { const options = { app: undefined!, r: createMockRequest({ body: createMockBodyReader(`{"foo":"bar"}`), headers: new Headers({ [Header.ContentType]: MIME.ApplicationJSON }), }), };
const c = new Context(options); const body = await c.body;
assertEquals(body, { foo: "bar" }); assertEquals(await c.body, body);});
abc

Version Info

Tagged at
2 years ago