0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-22 02:27:49 +01:00
hono/.vitest.config/setup-vitest.ts

48 lines
901 B
TypeScript
Raw Normal View History

import * as nodeCrypto from 'node:crypto'
import { vi } from 'vitest'
/**
* crypto
*/
if (!globalThis.crypto) {
vi.stubGlobal('crypto', nodeCrypto)
vi.stubGlobal('CryptoKey', nodeCrypto.webcrypto.CryptoKey)
}
/**
* Cache API
*/
type StoreMap = Map<string | Request, Response>
class MockCache {
name: string
store: StoreMap
constructor(name: string, store: StoreMap) {
this.name = name
this.store = store
}
async match(key: Request | string): Promise<Response | null> {
return this.store.get(key) || null
}
async keys() {
return this.store.keys()
}
async put(key: Request | string, response: Response): Promise<void> {
this.store.set(key, response)
}
}
const globalStore: Map<string | Request, Response> = new Map()
const caches = {
open: (name: string) => {
return new MockCache(name, globalStore)
},
}
vi.stubGlobal('caches', caches)