2024-09-24 14:43:49 +02:00
|
|
|
import { createHash } from 'crypto'
|
2023-08-21 08:22:37 +02:00
|
|
|
import { getRuntimeKey } from '../../src/helper/adapter'
|
2023-05-02 14:16:17 +02:00
|
|
|
import { Hono } from '../../src/index'
|
|
|
|
import { basicAuth } from '../../src/middleware/basic-auth'
|
|
|
|
import { jwt } from '../../src/middleware/jwt'
|
2023-01-07 01:17:41 +01:00
|
|
|
|
2023-05-02 09:26:39 +02:00
|
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
|
|
// @ts-ignore
|
|
|
|
globalThis.fastly = true
|
|
|
|
|
2023-01-07 01:17:41 +01:00
|
|
|
const app = new Hono()
|
|
|
|
|
|
|
|
describe('Hello World', () => {
|
|
|
|
app.get('/', (c) => c.text('Hello! Compute!'))
|
|
|
|
app.get('/runtime-name', (c) => {
|
2023-08-21 08:22:37 +02:00
|
|
|
return c.text(getRuntimeKey())
|
2023-01-07 01:17:41 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should return 200', async () => {
|
|
|
|
const res = await app.request('http://localhost/')
|
|
|
|
expect(res.status).toBe(200)
|
|
|
|
expect(await res.text()).toBe('Hello! Compute!')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should return the correct runtime name', async () => {
|
|
|
|
const res = await app.request('http://localhost/runtime-name')
|
|
|
|
expect(res.status).toBe(200)
|
|
|
|
expect(await res.text()).toBe('fastly')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('Basic Auth Middleware without `hashFunction`', () => {
|
|
|
|
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'))
|
|
|
|
|
2023-09-08 10:42:28 +02:00
|
|
|
it('Should not authorize, return 401 Response', async () => {
|
2023-01-07 01:17:41 +01:00
|
|
|
const req = new Request('http://localhost/auth/a')
|
|
|
|
const res = await app.request(req)
|
|
|
|
expect(res.status).toBe(401)
|
2023-09-08 10:42:28 +02:00
|
|
|
expect(await res.text()).toBe('Unauthorized')
|
2023-01-07 01:17:41 +01:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('Basic Auth Middleware with `hashFunction`', () => {
|
|
|
|
const app = new Hono()
|
|
|
|
|
|
|
|
const username = 'hono-user-a'
|
|
|
|
const password = 'hono-password-a'
|
|
|
|
app.use(
|
|
|
|
'/auth/*',
|
|
|
|
basicAuth({
|
|
|
|
username,
|
|
|
|
password,
|
2024-09-24 14:43:49 +02:00
|
|
|
hashFunction: (m: string) => createHash('sha256').update(m).digest('hex'),
|
2023-01-07 01:17:41 +01:00
|
|
|
})
|
|
|
|
)
|
|
|
|
|
|
|
|
app.get('/auth/*', () => new Response('auth'))
|
|
|
|
|
|
|
|
it('Should not authorize, return 401 Response', async () => {
|
|
|
|
const req = new Request('http://localhost/auth/a')
|
|
|
|
const res = await app.request(req)
|
|
|
|
expect(res.status).toBe(401)
|
|
|
|
expect(await res.text()).toBe('Unauthorized')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should authorize, return 200 Response', async () => {
|
|
|
|
const credential = 'aG9uby11c2VyLWE6aG9uby1wYXNzd29yZC1h'
|
|
|
|
const req = new Request('http://localhost/auth/a')
|
|
|
|
req.headers.set('Authorization', `Basic ${credential}`)
|
|
|
|
const res = await app.request(req)
|
|
|
|
expect(res.status).toBe(200)
|
|
|
|
expect(await res.text()).toBe('auth')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('JWT Auth Middleware does not work', () => {
|
|
|
|
const app = new Hono()
|
|
|
|
|
2023-12-17 13:17:18 +01:00
|
|
|
// Since nodejs 20 or later, global WebCrypto object becomes stable (experimental on nodejs 18)
|
|
|
|
// but WebCrypto does not have compatibility with Fastly Compute runtime (lacking some objects/methods in Fastly)
|
|
|
|
// so following test should run only be polyfill-ed via vite-plugin-fastly-js-compute plugin.
|
|
|
|
// To confirm polyfill-ed or not, check __fastlyComputeNodeDefaultCrypto field is true.
|
|
|
|
it.runIf(!globalThis.__fastlyComputeNodeDefaultCrypto)('Should throw error', () => {
|
2023-01-07 01:17:41 +01:00
|
|
|
expect(() => {
|
|
|
|
app.use('/jwt/*', jwt({ secret: 'secret' }))
|
|
|
|
}).toThrow(/`crypto.subtle.importKey` is undefined/)
|
|
|
|
})
|
|
|
|
})
|