mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 17:13:56 +00:00
27 lines
871 B
TypeScript
27 lines
871 B
TypeScript
import { resolve } from 'path'
|
|
import { testNitroBuild, setupTest, testNitroBehavior } from './_utils'
|
|
|
|
describe('nitro:preset:lambda', () => {
|
|
const ctx = setupTest()
|
|
testNitroBuild(ctx, 'lambda')
|
|
testNitroBehavior(ctx, async () => {
|
|
const { handler } = await import(resolve(ctx.outDir, 'server/index.js'))
|
|
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
|
|
}
|
|
}
|
|
})
|
|
})
|