Skip to content
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

[Bug] Json validator throws 500 instead of 400 #227

Open
ameyarao98 opened this issue Sep 12, 2023 · 0 comments
Open

[Bug] Json validator throws 500 instead of 400 #227

ameyarao98 opened this issue Sep 12, 2023 · 0 comments

Comments

@ameyarao98
Copy link

ameyarao98 commented Sep 12, 2023

Describe the bug
Json validator throws 500 instead of 400:

Error while handling error: 'NoneType' object has no attribute '__name__'
Stack: Traceback (most recent call last):
  File "/usr/local/lib/python3.11/site-packages/sanic_ext/extras/validation/validators.py", line 25, in validate_body
    return validator(model, body)
           ^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/site-packages/sanic_ext/extras/validation/validators.py", line 35, in _validate_instance
    return model(**data)
           ^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/site-packages/pydantic/main.py", line 165, in __init__
    __pydantic_self__.__pydantic_validator__.validate_python(data, self_instance=__pydantic_self__)
pydantic_core._pydantic_core.ValidationError: 1 validation error for SiweMessageSchema
message
  Input should be a valid string [type=string_type, input_value=11, input_type=int]
    For further information visit https://errors.pydantic.dev/2.3/v/string_type

To Reproduce

class MessageSchema(BaseModel):
    message: str

@validate(json=MessageSchema)
async def verify(request: Request, body: SiweMessageSchema):

Send request to endpoint with non str message field

Expected behavior
A 400 is thrown with the validation error. a 500 is thrown instead

Environment (please complete the following information):

python = "^3.11"
sanic = { extras = ["ext"], version = "^23.6.0" }
pydantic = "^2.2.0"

Additional context
Seems like a property change in pydantic v2?

@ameyarao98 ameyarao98 changed the title [Bug] [Bug] Json validator throws 500 instead of 400 Sep 12, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant