2022-01-05 18:22:53 +00:00
|
|
|
import { Context } from '../src/context'
|
|
|
|
|
|
|
|
describe('Context', () => {
|
2022-01-11 17:14:53 +00:00
|
|
|
const req = new Request('http://localhost/')
|
2022-01-05 18:22:53 +00:00
|
|
|
const c = new Context(req, new Response())
|
|
|
|
|
|
|
|
it('c.text', async () => {
|
2022-01-08 21:53:26 +00:00
|
|
|
const res = c.text('text in c', 201, { 'X-Custom': 'Message' })
|
|
|
|
expect(res.status).toBe(201)
|
2022-01-08 04:46:49 +00:00
|
|
|
expect(res.headers.get('Content-Type')).toBe('text/plain')
|
2022-01-05 18:22:53 +00:00
|
|
|
expect(await res.text()).toBe('text in c')
|
2022-01-08 21:53:26 +00:00
|
|
|
expect(res.headers.get('X-Custom')).toBe('Message')
|
2022-01-05 18:22:53 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
it('c.json', async () => {
|
2022-01-08 21:53:26 +00:00
|
|
|
const res = c.json({ message: 'Hello' }, 201, { 'X-Custom': 'Message' })
|
|
|
|
expect(res.status).toBe(201)
|
2022-01-08 04:46:49 +00:00
|
|
|
expect(res.headers.get('Content-Type')).toMatch('application/json')
|
2022-01-05 18:22:53 +00:00
|
|
|
const text = await res.text()
|
|
|
|
const object = JSON.parse(text)
|
|
|
|
expect(object.message).toBe('Hello')
|
2022-01-08 21:53:26 +00:00
|
|
|
expect(res.headers.get('X-Custom')).toBe('Message')
|
2022-01-05 18:22:53 +00:00
|
|
|
})
|
2022-01-08 04:46:49 +00:00
|
|
|
|
|
|
|
it('c.html', async () => {
|
2022-01-08 21:53:26 +00:00
|
|
|
const res = c.html('<h1>Hello! Hono!</h1>', 201, { 'X-Custom': 'Message' })
|
|
|
|
expect(res.status).toBe(201)
|
2022-01-08 04:46:49 +00:00
|
|
|
expect(res.headers.get('Content-Type')).toMatch('text/html')
|
|
|
|
expect(await res.text()).toBe('<h1>Hello! Hono!</h1>')
|
2022-01-08 21:53:26 +00:00
|
|
|
expect(res.headers.get('X-Custom')).toBe('Message')
|
2022-01-08 04:46:49 +00:00
|
|
|
})
|
2022-01-09 12:46:46 +00:00
|
|
|
|
|
|
|
it('c.redirect', async () => {
|
2022-01-09 15:03:48 +00:00
|
|
|
let res = c.redirect('/destination')
|
2022-01-09 12:46:46 +00:00
|
|
|
expect(res.status).toBe(302)
|
2022-01-09 15:03:48 +00:00
|
|
|
expect(res.headers.get('Location')).toMatch(/^https?:\/\/.+\/destination$/)
|
|
|
|
res = c.redirect('https://example.com/destination')
|
|
|
|
expect(res.status).toBe(302)
|
|
|
|
expect(res.headers.get('Location')).toBe('https://example.com/destination')
|
2022-01-09 12:46:46 +00:00
|
|
|
})
|
2022-01-05 18:22:53 +00:00
|
|
|
})
|