mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
27 lines
887 B
TypeScript
27 lines
887 B
TypeScript
import { resolve } from 'pathe'
|
|
import { describe } from 'vitest'
|
|
import { setupTest, testNitroBehavior, importModule } from './_tests'
|
|
|
|
describe('nitro:preset:lambda', () => {
|
|
const ctx = setupTest('lambda')
|
|
testNitroBehavior(ctx, async () => {
|
|
const { handler } = await importModule(resolve(ctx.outDir, 'server/index.mjs'))
|
|
return async ({ url: rawRelativeUrl, headers, method, body }) => {
|
|
// creating new URL object to parse query easier
|
|
const url = new URL(`https://example.com${rawRelativeUrl}`)
|
|
const queryStringParameters = Object.fromEntries(url.searchParams.entries())
|
|
const event = {
|
|
path: url.pathname,
|
|
headers: headers || {},
|
|
method: method || 'GET',
|
|
queryStringParameters,
|
|
body: body || ''
|
|
}
|
|
const res = await handler(event)
|
|
return {
|
|
data: res.body
|
|
}
|
|
}
|
|
})
|
|
})
|