2021-12-14 19:58:45 +00:00
|
|
|
const fetch = require('node-fetch')
|
2022-01-01 06:29:41 +00:00
|
|
|
const { Hono } = require('./hono')
|
2021-12-14 19:58:45 +00:00
|
|
|
|
2021-12-20 01:18:33 +00:00
|
|
|
describe('GET Request', () => {
|
2022-01-01 06:29:41 +00:00
|
|
|
const app = new Hono()
|
|
|
|
|
2021-12-14 19:58:45 +00:00
|
|
|
app.get('/hello', () => {
|
|
|
|
return new fetch.Response('hello', {
|
2021-12-17 07:43:40 +00:00
|
|
|
status: 200,
|
2021-12-14 19:58:45 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
app.notFound = () => {
|
|
|
|
return new fetch.Response('not found', {
|
2021-12-17 07:43:40 +00:00
|
|
|
status: 404,
|
2021-12-14 19:58:45 +00:00
|
|
|
})
|
|
|
|
}
|
2021-12-20 17:35:03 +00:00
|
|
|
it('GET /hello is ok', async () => {
|
2021-12-14 19:58:45 +00:00
|
|
|
let req = new fetch.Request('https://example.com/hello')
|
2021-12-21 08:37:02 +00:00
|
|
|
let res = await app.dispatch(req, new fetch.Response())
|
2021-12-14 19:58:45 +00:00
|
|
|
expect(res).not.toBeNull()
|
|
|
|
expect(res.status).toBe(200)
|
2021-12-21 08:37:02 +00:00
|
|
|
expect(await res.text()).toBe('hello')
|
2021-12-14 19:58:45 +00:00
|
|
|
})
|
2021-12-20 17:35:03 +00:00
|
|
|
it('GET / is not found', async () => {
|
2021-12-14 19:58:45 +00:00
|
|
|
let req = new fetch.Request('https://example.com/')
|
2021-12-21 08:37:02 +00:00
|
|
|
let res = await app.dispatch(req, new fetch.Response())
|
2021-12-14 19:58:45 +00:00
|
|
|
expect(res).not.toBeNull()
|
|
|
|
expect(res.status).toBe(404)
|
|
|
|
})
|
|
|
|
})
|
2021-12-20 01:18:33 +00:00
|
|
|
|
|
|
|
describe('params and query', () => {
|
2022-01-01 06:29:41 +00:00
|
|
|
const app = new Hono()
|
2021-12-21 08:37:02 +00:00
|
|
|
|
|
|
|
app.get('/entry/:id', async (c) => {
|
|
|
|
const id = await c.req.params('id')
|
2021-12-20 01:18:33 +00:00
|
|
|
return new fetch.Response(`id is ${id}`, {
|
|
|
|
status: 200,
|
|
|
|
})
|
|
|
|
})
|
2021-12-21 08:37:02 +00:00
|
|
|
|
|
|
|
app.get('/search', async (c) => {
|
|
|
|
const name = await c.req.query('name')
|
|
|
|
return new fetch.Response(`name is ${name}`, {
|
2021-12-20 01:18:33 +00:00
|
|
|
status: 200,
|
|
|
|
})
|
|
|
|
})
|
2021-12-21 08:37:02 +00:00
|
|
|
|
2021-12-20 01:18:33 +00:00
|
|
|
it('params of /entry/:id is found', async () => {
|
|
|
|
let req = new fetch.Request('https://example.com/entry/123')
|
2021-12-20 17:35:03 +00:00
|
|
|
let res = await app.dispatch(req)
|
2021-12-20 01:18:33 +00:00
|
|
|
expect(res.status).toBe(200)
|
|
|
|
expect(await res.text()).toBe('id is 123')
|
|
|
|
})
|
|
|
|
it('query of /search?name=sam is found', async () => {
|
|
|
|
let req = new fetch.Request('https://example.com/search?name=sam')
|
2021-12-20 17:35:03 +00:00
|
|
|
let res = await app.dispatch(req)
|
2021-12-20 01:18:33 +00:00
|
|
|
expect(res.status).toBe(200)
|
|
|
|
expect(await res.text()).toBe('name is sam')
|
|
|
|
})
|
|
|
|
})
|
2021-12-20 02:19:35 +00:00
|
|
|
|
2021-12-21 08:37:02 +00:00
|
|
|
describe('Middleware', () => {
|
2022-01-01 06:29:41 +00:00
|
|
|
const app = new Hono()
|
2021-12-20 17:35:03 +00:00
|
|
|
|
2021-12-28 05:24:31 +00:00
|
|
|
const logger = async (c, next) => {
|
2021-12-21 08:37:02 +00:00
|
|
|
console.log(`${c.req.method} : ${c.req.url}`)
|
2021-12-20 17:35:03 +00:00
|
|
|
next()
|
2021-12-20 02:19:35 +00:00
|
|
|
}
|
2021-12-21 08:37:02 +00:00
|
|
|
|
2021-12-28 05:24:31 +00:00
|
|
|
const rootHeader = async (c, next) => {
|
2021-12-20 17:35:03 +00:00
|
|
|
next()
|
2021-12-28 05:24:31 +00:00
|
|
|
await c.res.headers.append('x-custom', 'root')
|
|
|
|
}
|
|
|
|
|
|
|
|
const customHeader = async (c, next) => {
|
|
|
|
next()
|
|
|
|
await c.res.headers.append('x-message', 'custom-header')
|
|
|
|
}
|
|
|
|
const customHeader2 = async (c, next) => {
|
|
|
|
next()
|
|
|
|
await c.res.headers.append('x-message-2', 'custom-header-2')
|
2021-12-20 17:35:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
app.use('*', logger)
|
2021-12-28 05:24:31 +00:00
|
|
|
app.use('*', rootHeader)
|
2021-12-20 17:35:03 +00:00
|
|
|
app.use('/hello', customHeader)
|
2021-12-28 05:24:31 +00:00
|
|
|
app.use('/hello/*', customHeader2)
|
2021-12-20 17:35:03 +00:00
|
|
|
app.get('/hello', () => {
|
|
|
|
return new fetch.Response('hello')
|
2021-12-20 02:19:35 +00:00
|
|
|
})
|
2021-12-28 05:24:31 +00:00
|
|
|
app.get('/hello/:message', (c) => {
|
|
|
|
const message = c.req.params('message')
|
|
|
|
return new fetch.Response(`${message}`)
|
|
|
|
})
|
2021-12-20 17:35:03 +00:00
|
|
|
|
|
|
|
it('logging and custom header', async () => {
|
|
|
|
let req = new fetch.Request('https://example.com/hello')
|
|
|
|
let res = await app.dispatch(req)
|
2021-12-20 02:19:35 +00:00
|
|
|
expect(res.status).toBe(200)
|
2021-12-20 17:35:03 +00:00
|
|
|
expect(await res.text()).toBe('hello')
|
2021-12-28 05:24:31 +00:00
|
|
|
expect(await res.headers.get('x-custom')).toBe('root')
|
2021-12-21 08:37:02 +00:00
|
|
|
expect(await res.headers.get('x-message')).toBe('custom-header')
|
2021-12-28 05:24:31 +00:00
|
|
|
expect(await res.headers.get('x-message-2')).toBe('custom-header-2')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('logging and custom header with named params', async () => {
|
|
|
|
let req = new fetch.Request('https://example.com/hello/message')
|
|
|
|
let res = await app.dispatch(req)
|
|
|
|
expect(res.status).toBe(200)
|
|
|
|
expect(await res.text()).toBe('message')
|
|
|
|
expect(await res.headers.get('x-custom')).toBe('root')
|
|
|
|
expect(await res.headers.get('x-message-2')).toBe('custom-header-2')
|
2021-12-20 02:19:35 +00:00
|
|
|
})
|
|
|
|
})
|