Skip to content

Commit 35a28c6

Browse files
authoredApr 23, 2024··
chore: add fromZodError runtime check to throw TypeError on bad usage (#296)
* chore: handles and throws TypeError on fromZodError invalid use * chore: add changeset * chore: better TypeError message
1 parent 6b4e8a0 commit 35a28c6

File tree

3 files changed

+28
-1
lines changed

3 files changed

+28
-1
lines changed
 

‎.changeset/itchy-elephants-judge.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'zod-validation-error': minor
3+
---
4+
5+
Add runtime check in `fromZodError` and throw dev-friendly `TypeError` suggesting usage of `fromError` instead

‎lib/fromZodError.test.ts

+15
Original file line numberDiff line numberDiff line change
@@ -454,4 +454,19 @@ describe('fromZodError()', () => {
454454
}
455455
}
456456
});
457+
458+
test('throws a dev-friendly TypeError on invalid input', () => {
459+
const input = new Error("I wish I was a ZodError, but I'm not");
460+
461+
try {
462+
// @ts-expect-error
463+
fromZodError(input);
464+
} catch (err) {
465+
expect(err).toBeInstanceOf(TypeError);
466+
// @ts-expect-error
467+
expect(err.message).toMatchInlineSnapshot(
468+
`"Invalid zodError param; expected instance of ZodError. Did you mean to use the "fromError" method instead?"`
469+
);
470+
}
471+
});
457472
});

‎lib/fromZodError.ts

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import * as zod from 'zod';
12
import {
23
ISSUE_SEPARATOR,
34
MAX_ISSUES_IN_MESSAGE,
@@ -8,8 +9,8 @@ import {
89
import { getMessageFromZodIssue } from './fromZodIssue.ts';
910
import { prefixMessage } from './prefixMessage.ts';
1011
import { ValidationError } from './ValidationError.ts';
12+
import { fromError } from './fromError.ts';
1113
import type { FromZodIssueOptions } from './fromZodIssue.ts';
12-
import type * as zod from 'zod';
1314

1415
export type ZodError = zod.ZodError;
1516

@@ -21,6 +22,12 @@ export function fromZodError(
2122
zodError: ZodError,
2223
options: FromZodErrorOptions = {}
2324
): ValidationError {
25+
if (!(zodError instanceof zod.ZodError)) {
26+
throw new TypeError(
27+
`Invalid zodError param; expected instance of ZodError. Did you mean to use the "${fromError.name}" method instead?`
28+
);
29+
}
30+
2431
const {
2532
maxIssuesInMessage = MAX_ISSUES_IN_MESSAGE,
2633
issueSeparator = ISSUE_SEPARATOR,

0 commit comments

Comments
 (0)
Please sign in to comment.