|
@ -101,7 +101,7 @@ def test_post_with_only_name_price(client: TestClient): |
|
|
{ |
|
|
{ |
|
|
"type": "float_parsing", |
|
|
"type": "float_parsing", |
|
|
"loc": ["body", "price"], |
|
|
"loc": ["body", "price"], |
|
|
"msg": "Input should be a valid number, unable to parse string as an number", |
|
|
"msg": "Input should be a valid number, unable to parse string as a number", |
|
|
"input": "twenty", |
|
|
"input": "twenty", |
|
|
"url": match_pydantic_error_url("float_parsing"), |
|
|
"url": match_pydantic_error_url("float_parsing"), |
|
|
} |
|
|
} |
|
@ -240,11 +240,11 @@ def test_post_form_for_json(client: TestClient): |
|
|
{ |
|
|
{ |
|
|
"detail": [ |
|
|
"detail": [ |
|
|
{ |
|
|
{ |
|
|
"type": "dict_attributes_type", |
|
|
"type": "model_attributes_type", |
|
|
"loc": ["body"], |
|
|
"loc": ["body"], |
|
|
"msg": "Input should be a valid dictionary or instance to extract fields from", |
|
|
"msg": "Input should be a valid dictionary or object to extract fields from", |
|
|
"input": "name=Foo&price=50.5", |
|
|
"input": "name=Foo&price=50.5", |
|
|
"url": match_pydantic_error_url("dict_attributes_type"), |
|
|
"url": match_pydantic_error_url("model_attributes_type"), |
|
|
} |
|
|
} |
|
|
] |
|
|
] |
|
|
} |
|
|
} |
|
@ -304,12 +304,12 @@ def test_wrong_headers(client: TestClient): |
|
|
{ |
|
|
{ |
|
|
"detail": [ |
|
|
"detail": [ |
|
|
{ |
|
|
{ |
|
|
"type": "dict_attributes_type", |
|
|
"type": "model_attributes_type", |
|
|
"loc": ["body"], |
|
|
"loc": ["body"], |
|
|
"msg": "Input should be a valid dictionary or instance to extract fields from", |
|
|
"msg": "Input should be a valid dictionary or object to extract fields from", |
|
|
"input": '{"name": "Foo", "price": 50.5}', |
|
|
"input": '{"name": "Foo", "price": 50.5}', |
|
|
"url": match_pydantic_error_url( |
|
|
"url": match_pydantic_error_url( |
|
|
"dict_attributes_type" |
|
|
"model_attributes_type" |
|
|
), # "https://errors.pydantic.dev/0.38.0/v/dict_attributes_type", |
|
|
), # "https://errors.pydantic.dev/0.38.0/v/dict_attributes_type", |
|
|
} |
|
|
} |
|
|
] |
|
|
] |
|
@ -335,11 +335,11 @@ def test_wrong_headers(client: TestClient): |
|
|
{ |
|
|
{ |
|
|
"detail": [ |
|
|
"detail": [ |
|
|
{ |
|
|
{ |
|
|
"type": "dict_attributes_type", |
|
|
"type": "model_attributes_type", |
|
|
"loc": ["body"], |
|
|
"loc": ["body"], |
|
|
"msg": "Input should be a valid dictionary or instance to extract fields from", |
|
|
"msg": "Input should be a valid dictionary or object to extract fields from", |
|
|
"input": '{"name": "Foo", "price": 50.5}', |
|
|
"input": '{"name": "Foo", "price": 50.5}', |
|
|
"url": match_pydantic_error_url("dict_attributes_type"), |
|
|
"url": match_pydantic_error_url("model_attributes_type"), |
|
|
} |
|
|
} |
|
|
] |
|
|
] |
|
|
} |
|
|
} |
|
@ -363,11 +363,11 @@ def test_wrong_headers(client: TestClient): |
|
|
{ |
|
|
{ |
|
|
"detail": [ |
|
|
"detail": [ |
|
|
{ |
|
|
{ |
|
|
"type": "dict_attributes_type", |
|
|
"type": "model_attributes_type", |
|
|
"loc": ["body"], |
|
|
"loc": ["body"], |
|
|
"msg": "Input should be a valid dictionary or instance to extract fields from", |
|
|
"msg": "Input should be a valid dictionary or object to extract fields from", |
|
|
"input": '{"name": "Foo", "price": 50.5}', |
|
|
"input": '{"name": "Foo", "price": 50.5}', |
|
|
"url": match_pydantic_error_url("dict_attributes_type"), |
|
|
"url": match_pydantic_error_url("model_attributes_type"), |
|
|
} |
|
|
} |
|
|
] |
|
|
] |
|
|
} |
|
|
} |
|
|