Files
overleaf-cep/libraries/validation-tools/test/unit/src/validateReq.test.ts
Tim Down 64da16f0d1 Merge pull request #28670 from overleaf/td-rename-validate-req
Rename validateReq to parseReq

GitOrigin-RevId: a935aaa3f89495e164ce5d10b0bd80436571440f
2026-01-15 09:05:09 +00:00

86 lines
2.0 KiB
TypeScript

import { parseReq } from '../../../parseReq'
import { describe, expect, it } from 'vitest'
import { z } from 'zod'
import type { Request } from 'express'
import { zz } from '../../../zodHelpers'
describe('parseReq', () => {
describe('with a request that is valid for the schema', () => {
it('should return the parsed request', () => {
const req = {
params: {
id: '507f1f77bcf86cd799439011',
},
body: {
name: 'Valid Name',
},
} as Request<{ id: string }, any, { name: string }>
const schema = z.object({
params: z.object({
id: zz.objectId(),
}),
body: z.object({
name: z.string(),
}),
})
const result = parseReq(req, schema)
expect(result).toEqual({
params: {
id: '507f1f77bcf86cd799439011',
},
body: {
name: 'Valid Name',
},
})
})
})
describe('with a request that is not valid for the schema', () => {
it('should throw NotFoundError if params are invalid', () => {
const req = {
params: {
id: 'invalid-object-id',
},
} as Request<{ id: string }>
expect(() =>
parseReq(
req,
z.object({
params: z.object({
id: zz.objectId(),
}),
})
)
).toThrowError(expect.objectContaining({ name: 'ParamsError' }))
})
it('should throw an error containing issues if the schema is invalid', () => {
const req = {
body: {
name: 1234,
},
} as Request
expect(() =>
parseReq(
req,
z.object({
body: z.object({
name: z.string(),
}),
})
)
).toThrowError(
expect.objectContaining({
issues: expect.arrayContaining([
expect.objectContaining({ path: ['body', 'name'] }),
]),
})
)
})
})
})