0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-25 13:19:30 +01:00
hono/test_node/index.test.ts
Yusuke Wada ad880dba43
feat: env support enviroment variables for multi runtimes (#949)
* feat: `env` support enviroment variables for multi runtimes

* typo

* denoify

* fixed ci settings

* fixed deno command

* comment out lagon test

* remove warnings
2023-03-06 21:12:22 +09:00

98 lines
2.8 KiB
TypeScript

import { createAdaptorServer } from '@hono/node-server'
import request from 'supertest'
import { Hono } from '../src'
import { env } from '../src/adapter'
import { Context } from '../src/context'
import { basicAuth } from '../src/middleware/basic-auth'
import { jwt } from '../src/middleware/jwt'
// Test only minimal patterns.
// See <https://github.com/honojs/node-server> for more tests and information.
describe('Basic', () => {
const app = new Hono()
app.get('/', (c) => {
return c.text('Hello! Node.js!')
})
app.get('/runtime-name', (c) => {
return c.text(c.runtime)
})
const server = createAdaptorServer(app)
it('Should return 200 response', async () => {
const res = await request(server).get('/')
expect(res.status).toBe(200)
expect(res.text).toBe('Hello! Node.js!')
})
it('Should return correct runtime name', async () => {
const res = await request(server).get('/runtime-name')
expect(res.status).toBe(200)
expect(res.text).toBe('node')
})
})
describe('Environment Variables', () => {
it('Should return the environment variable', async () => {
const c = new Context(new Request('http://localhost/'))
const { NAME } = env<{ NAME: string }>(c)
expect(NAME).toBe('Node')
})
})
describe('Basic Auth Middleware', () => {
const app = new Hono()
const username = 'hono-user-a'
const password = 'hono-password-a'
app.use(
'/auth/*',
basicAuth({
username,
password,
})
)
app.get('/auth/*', () => new Response('auth'))
const server = createAdaptorServer(app)
it('Should not authorize, return 401 Response', async () => {
const res = await request(server).get('/auth/a')
expect(res.status).toBe(401)
expect(res.text).toBe('Unauthorized')
})
it('Should authorize, return 200 Response', async () => {
const credential = 'aG9uby11c2VyLWE6aG9uby1wYXNzd29yZC1h'
const res = await request(server).get('/auth/a').set('Authorization', `Basic ${credential}`)
expect(res.status).toBe(200)
expect(res.text).toBe('auth')
})
})
describe('JWT Auth Middleware', () => {
const app = new Hono()
app.use('/jwt/*', jwt({ secret: 'a-secret' }))
app.get('/jwt/a', (c) => c.text('auth'))
const server = createAdaptorServer(app)
it('Should not authorize, return 401 Response', async () => {
const res = await request(server).get('/jwt/a')
expect(res.status).toBe(401)
expect(res.text).toBe('Unauthorized')
})
it('Should authorize, return 200 Response', async () => {
const credential =
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJtZXNzYWdlIjoiaGVsbG8gd29ybGQifQ.B54pAqIiLbu170tGQ1rY06Twv__0qSHTA0ioQPIOvFE'
const res = await request(server).get('/jwt/a').set('Authorization', `Bearer ${credential}`)
expect(res.status).toBe(200)
expect(res.text).toBe('auth')
})
})