feat: passing hooks int test suite

This commit is contained in:
Jarrod Flesch
2024-02-16 22:27:43 -05:00
parent 1c75ac12e8
commit e597ecfe78
3 changed files with 51 additions and 41 deletions

View File

@@ -13,20 +13,20 @@ const ContextHooks: CollectionConfig = {
},
hooks: {
beforeOperation: [
async ({ context, args }) => {
({ context, args }) => {
// eslint-disable-next-line prefer-destructuring
const req: PayloadRequest = args.req
if (!req.query || !Object.keys(req.query).length) {
if (req.searchParams.size === 0) {
return args
}
Object.keys(req.query).forEach((key) => {
req.searchParams.forEach((value, key) => {
if (key.startsWith('context_')) {
// Strip 'context_' from key, add it to context object and remove it from query params
const newKey = key.substring('context_'.length)
context[newKey] = req.query[key]
delete req.query[key]
context[newKey] = value
req.searchParams.delete(key)
}
})

View File

@@ -1,9 +1,11 @@
import type { Payload } from '../../packages/payload/src'
import type { NestedAfterReadHook } from './payload-types'
import payload from '../../packages/payload/src'
import { getPayload } from '../../packages/payload/src'
import { AuthenticationError } from '../../packages/payload/src/errors'
import { devUser, regularUser } from '../credentials'
import { initPayloadTest } from '../helpers/configHelpers'
import { NextRESTClient } from '../helpers/NextRESTClient'
import { startMemoryDB } from '../startMemoryDB'
import { afterOperationSlug } from './collections/AfterOperation'
import { chainingHooksSlug } from './collections/ChainingHooks'
import { contextHooksSlug } from './collections/ContextHooks'
@@ -16,15 +18,17 @@ import {
import { relationsSlug } from './collections/Relations'
import { transformSlug } from './collections/Transform'
import { hooksUsersSlug } from './collections/Users'
import { HooksConfig } from './config'
import configPromise, { HooksConfig } from './config'
import { dataHooksGlobalSlug } from './globals/Data'
let apiUrl
let restClient: NextRESTClient
let payload: Payload
describe('Hooks', () => {
beforeAll(async () => {
const { serverURL } = await initPayloadTest({ __dirname, init: { local: false } })
apiUrl = `${serverURL}/api`
const config = await startMemoryDB(configPromise)
payload = await getPayload({ config })
restClient = new NextRESTClient(payload.config)
})
afterAll(async () => {
@@ -268,18 +272,17 @@ describe('Hooks', () => {
context_secretValue: 'data from rest API',
})
// send context as query params. It will be parsed by the beforeOperation hook
const response = await fetch(`${apiUrl}/${contextHooksSlug}?${params.toString()}`, {
body: JSON.stringify({
value: 'wrongvalue',
}),
method: 'post',
})
const document = (await response.json()).doc
const { doc } = await restClient
.POST(`/${contextHooksSlug}?${params.toString()}`, {
body: JSON.stringify({
value: 'wrongvalue',
}),
})
.then((res) => res.json())
const retrievedDoc = await payload.findByID({
collection: contextHooksSlug,
id: document.id,
id: doc.id,
})
expect(retrievedDoc.value).toEqual('data from rest API')