import { createAdaptorServer } from '@hono/node-server' import request from 'supertest' import { Hono } from '../src' import { basicAuth } from '../src/middleware/basic-auth' import { jwt } from '../src/middleware/jwt' // Test only minimal patterns. // See 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('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') }) })