-
Notifications
You must be signed in to change notification settings - Fork 37
Refactor errors to use @fastify/error and throw correct validation error #110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
c850613
Refactor errors to use @fastify/error and throw correct validation error
Bram-dc 97efde0
Renamed ResponseValidationError to ResponseSerializationError and add…
Bram-dc 39e8d31
remove unnecessary console.log statement
Bram-dc 7cbaad6
Add method and url to ResponseSerializationError
Bram-dc 7007fe1
Refactor resolveSchema function to use regular function syntax
Bram-dc File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| import createError from '@fastify/error'; | ||
| import type { FastifySchemaValidationError } from 'fastify/types/schema'; | ||
| import type { ZodError } from 'zod'; | ||
|
|
||
| export const ResponseValidationError = createError<[{ cause: Error }]>( | ||
| 'FST_ERR_RESPONSE_VALIDATION', | ||
| "Response doesn't match the schema", | ||
| 500, | ||
| ); | ||
|
|
||
| export const InvalidSchemaError = createError<[string]>( | ||
| 'FST_ERR_INVALID_SCHEMA', | ||
| 'Invalid schema passed: %s', | ||
| 500, | ||
| ); | ||
|
|
||
| export const createValidationError = ( | ||
| error: ZodError, | ||
| method: string, | ||
| url: string, | ||
| ): FastifySchemaValidationError[] => | ||
| error.errors.map((issue) => ({ | ||
| keyword: issue.code, | ||
| instancePath: `/${issue.path.join('/')}`, | ||
| schemaPath: `#/${issue.path.join('/')}/${issue.code}`, | ||
| params: { | ||
| issue, | ||
| zodError: error, | ||
| method, | ||
| url, | ||
| }, | ||
| message: error.message, | ||
| })); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why can't we return details here and assert that validation error exposes enough details?
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is no details on ResponseSerializationError.
We would now have to access it through error.cause.
edited since I stated it wrong
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that's fine, can we use that field to preserve the initial test logic?
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done, I also made a mistake so I renamed ResponseValidationError to ResponseSerializationError since that is what it is.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Validation errors can be accessed through error.validation as described in the docs.
https://fastify.dev/docs/latest/Reference/Validation-and-Serialization/#error-handling
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fastify error model really isn't very flexible :-/
trying to augment errors we are getting there currently