-
-
Notifications
You must be signed in to change notification settings - Fork 668
/
Copy pathrequest.test.ts
329 lines (290 loc) · 9.21 KB
/
request.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
import { HonoRequest } from './request'
import type { RouterRoute } from './types'
type RecursiveRecord<K extends string, T> = {
[key in K]: T | RecursiveRecord<K, T>
}
describe('Query', () => {
test('req.query() and req.queries()', () => {
const rawRequest = new Request('http://localhost?page=2&tag=A&tag=B')
const req = new HonoRequest(rawRequest)
const page = req.query('page')
expect(page).not.toBeUndefined()
expect(page).toBe('2')
const q = req.query('q')
expect(q).toBeUndefined()
const tags = req.queries('tag')
expect(tags).not.toBeUndefined()
expect(tags).toEqual(['A', 'B'])
const q2 = req.queries('q2')
expect(q2).toBeUndefined()
})
test('decode special chars', () => {
const rawRequest = new Request('http://localhost?mail=framework%40hono.dev&tag=%401&tag=%402')
const req = new HonoRequest(rawRequest)
const mail = req.query('mail')
expect(mail).toBe('[email protected]')
const tags = req.queries('tag')
expect(tags).toEqual(['@1', '@2'])
})
})
describe('Param', () => {
test('req.param() with ParamStash', () => {
const rawRequest = new Request('http://localhost?page=2&tag=A&tag=B')
const req = new HonoRequest<'/:id/:name'>(rawRequest, '/123/key', [
[
[[undefined, {} as RouterRoute], { id: 0 }],
[[undefined, {} as RouterRoute], { id: 0, name: 1 }],
],
['123', 'key'],
])
expect(req.param('id')).toBe('123')
expect(req.param('name')).toBe(undefined)
req.routeIndex = 1
expect(req.param('id')).toBe('123')
expect(req.param('name')).toBe('key')
})
test('req.param() without ParamStash', () => {
const rawRequest = new Request('http://localhost?page=2&tag=A&tag=B')
const req = new HonoRequest<'/:id/:name'>(rawRequest, '/123/key', [
[
[[undefined, {} as RouterRoute], { id: '123' }],
[[undefined, {} as RouterRoute], { id: '456', name: 'key' }],
],
])
expect(req.param('id')).toBe('123')
expect(req.param('name')).toBe(undefined)
req.routeIndex = 1
expect(req.param('id')).toBe('456')
expect(req.param('name')).toBe('key')
})
})
describe('matchedRoutes', () => {
test('req.routePath', () => {
const handlerA = () => {}
const handlerB = () => {}
const rawRequest = new Request('http://localhost?page=2&tag=A&tag=B')
const req = new HonoRequest<'/:id/:name'>(rawRequest, '/123/key', [
[
[[handlerA, { handler: handlerA, method: 'GET', path: '/:id' }], { id: '123' }],
[
[handlerA, { handler: handlerB, method: 'GET', path: '/:id/:name' }],
{ id: '456', name: 'key' },
],
],
])
expect(req.matchedRoutes).toEqual([
{ handler: handlerA, method: 'GET', path: '/:id' },
{ handler: handlerB, method: 'GET', path: '/:id/:name' },
])
})
})
describe('routePath', () => {
test('req.routePath', () => {
const handlerA = () => {}
const handlerB = () => {}
const rawRequest = new Request('http://localhost?page=2&tag=A&tag=B')
const req = new HonoRequest<'/:id/:name'>(rawRequest, '/123/key', [
[
[[handlerA, { handler: handlerA, method: 'GET', path: '/:id' }], { id: '123' }],
[
[handlerA, { handler: handlerB, method: 'GET', path: '/:id/:name' }],
{ id: '456', name: 'key' },
],
],
])
expect(req.routePath).toBe('/:id')
req.routeIndex = 1
expect(req.routePath).toBe('/:id/:name')
})
})
describe('req.addValidatedData() and req.data()', () => {
const rawRequest = new Request('http://localhost')
const payload = {
title: 'hello',
author: {
name: 'young man',
age: 20,
},
}
test('add data - json', () => {
const req = new HonoRequest<'/', { json: typeof payload }>(rawRequest)
req.addValidatedData('json', payload)
const data = req.valid('json')
expect(data).toEqual(payload)
})
test('replace data - json', () => {
const req = new HonoRequest<'/', { json: typeof payload }>(rawRequest)
req.addValidatedData('json', payload)
req.addValidatedData('json', {
tag: ['sport', 'music'],
author: {
tall: 170,
},
})
const data = req.valid('json')
expect(data).toEqual({
author: {
tall: 170,
},
tag: ['sport', 'music'],
})
})
})
describe('headers', () => {
test('empty string is a valid header value', () => {
const req = new HonoRequest(new Request('http://localhost', { headers: { foo: '' } }))
const foo = req.header('foo')
expect(foo).toEqual('')
})
test('Keys of the arguments for req.header() are not case-sensitive', () => {
const req = new HonoRequest(
new Request('http://localhost', {
headers: {
'Content-Type': 'application/json',
apikey: 'abc',
lowercase: 'lowercase value',
},
})
)
expect(req.header('Content-Type')).toBe('application/json')
expect(req.header('ApiKey')).toBe('abc')
})
})
const text = '{"foo":"bar"}'
const json = { foo: 'bar' }
const buffer = new TextEncoder().encode('{"foo":"bar"}').buffer
describe('Body methods with caching', () => {
test('req.text()', async () => {
const req = new HonoRequest(
new Request('http://localhost', {
method: 'POST',
body: text,
})
)
expect(await req.text()).toEqual(text)
expect(await req.json()).toEqual(json)
expect(await req.arrayBuffer()).toEqual(buffer)
expect(await req.blob()).toEqual(
new Blob([text], {
type: 'text/plain;charset=utf-8',
})
)
})
test('req.json()', async () => {
const req = new HonoRequest(
new Request('http://localhost', {
method: 'POST',
body: '{"foo":"bar"}',
})
)
expect(await req.json()).toEqual(json)
expect(await req.text()).toEqual(text)
expect(await req.arrayBuffer()).toEqual(buffer)
expect(await req.blob()).toEqual(
new Blob([text], {
type: 'text/plain;charset=utf-8',
})
)
})
test('req.arrayBuffer()', async () => {
const buffer = new TextEncoder().encode('{"foo":"bar"}').buffer
const req = new HonoRequest(
new Request('http://localhost', {
method: 'POST',
body: buffer,
})
)
expect(await req.arrayBuffer()).toEqual(buffer)
expect(await req.text()).toEqual(text)
expect(await req.json()).toEqual(json)
expect(await req.blob()).toEqual(
new Blob([text], {
type: '',
})
)
})
test('req.blob()', async () => {
const blob = new Blob(['{"foo":"bar"}'], {
type: 'application/json',
})
const req = new HonoRequest(
new Request('http://localhost', {
method: 'POST',
body: blob,
})
)
expect(await req.blob()).toEqual(blob)
expect(await req.text()).toEqual(text)
expect(await req.json()).toEqual(json)
expect(await req.arrayBuffer()).toEqual(buffer)
})
test('req.formData()', async () => {
const data = new FormData()
data.append('foo', 'bar')
const req = new HonoRequest(
new Request('http://localhost', {
method: 'POST',
body: data,
})
)
expect((await req.formData()).get('foo')).toBe('bar')
expect(async () => await req.text()).not.toThrow()
expect(async () => await req.arrayBuffer()).not.toThrow()
expect(async () => await req.blob()).not.toThrow()
})
describe('req.parseBody()', async () => {
it('should parse form data', async () => {
const data = new FormData()
data.append('foo', 'bar')
const req = new HonoRequest(
new Request('http://localhost', {
method: 'POST',
body: data,
})
)
expect((await req.parseBody())['foo']).toBe('bar')
expect(async () => await req.text()).not.toThrow()
expect(async () => await req.arrayBuffer()).not.toThrow()
expect(async () => await req.blob()).not.toThrow()
})
describe('Return type', () => {
let req: HonoRequest
beforeEach(() => {
const data = new FormData()
data.append('foo', 'bar')
req = new HonoRequest(
new Request('http://localhost', {
method: 'POST',
body: data,
})
)
})
it('without options', async () => {
expectTypeOf((await req.parseBody())['key']).toEqualTypeOf<string | File>()
})
it('{all: true}', async () => {
expectTypeOf((await req.parseBody({ all: true }))['key']).toEqualTypeOf<
string | File | (string | File)[]
>()
})
it('{dot: true}', async () => {
expectTypeOf((await req.parseBody({ dot: true }))['key']).toEqualTypeOf<
string | File | RecursiveRecord<string, string | File>
>()
})
it('{all: true, dot: true}', async () => {
expectTypeOf((await req.parseBody({ all: true, dot: true }))['key']).toEqualTypeOf<
| string
| File
| (string | File)[]
| RecursiveRecord<string, string | File | (string | File)[]>
>()
})
it('specify return type explicitly', async () => {
expectTypeOf(
await req.parseBody<{ key1: string; key2: string }>({ all: true, dot: true })
).toEqualTypeOf<{ key1: string; key2: string }>()
})
})
})
})