Browse Source

Fix new/recent tests with new fixed `ValidationError` JSON Schema (#4806)

pull/4814/head
Sebastián Ramírez 3 years ago
committed by GitHub
parent
commit
ddd9da3db4
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 28
      tests/test_generate_unique_id_function.py
  2. 2
      tests/test_param_include_in_schema.py
  3. 2
      tests/test_tuples.py
  4. 2
      tests/test_tutorial/test_body/test_tutorial001_py310.py
  5. 2
      tests/test_tutorial/test_body_fields/test_tutorial001_py310.py
  6. 2
      tests/test_tutorial/test_body_multiple_params/test_tutorial001_py310.py
  7. 2
      tests/test_tutorial/test_body_multiple_params/test_tutorial003_py310.py
  8. 2
      tests/test_tutorial/test_body_nested_models/test_tutorial009_py39.py
  9. 2
      tests/test_tutorial/test_body_updates/test_tutorial001_py310.py
  10. 2
      tests/test_tutorial/test_body_updates/test_tutorial001_py39.py
  11. 2
      tests/test_tutorial/test_cookie_params/test_tutorial001_py310.py
  12. 2
      tests/test_tutorial/test_dependencies/test_tutorial001_py310.py
  13. 2
      tests/test_tutorial/test_dependencies/test_tutorial004_py310.py
  14. 2
      tests/test_tutorial/test_extra_data_types/test_tutorial001_py310.py
  15. 2
      tests/test_tutorial/test_extra_models/test_tutorial003_py310.py
  16. 2
      tests/test_tutorial/test_generate_clients/test_tutorial003.py
  17. 2
      tests/test_tutorial/test_header_params/test_tutorial001_py310.py
  18. 2
      tests/test_tutorial/test_path_operation_configurations/test_tutorial005_py310.py
  19. 2
      tests/test_tutorial/test_path_operation_configurations/test_tutorial005_py39.py
  20. 2
      tests/test_tutorial/test_query_params/test_tutorial006_py310.py
  21. 2
      tests/test_tutorial/test_query_params_str_validations/test_tutorial001_py310.py
  22. 2
      tests/test_tutorial/test_query_params_str_validations/test_tutorial011_py310.py
  23. 2
      tests/test_tutorial/test_query_params_str_validations/test_tutorial011_py39.py
  24. 2
      tests/test_tutorial/test_query_params_str_validations/test_tutorial012_py39.py
  25. 2
      tests/test_tutorial/test_query_params_str_validations/test_tutorial014.py
  26. 2
      tests/test_tutorial/test_query_params_str_validations/test_tutorial014_py310.py
  27. 2
      tests/test_tutorial/test_request_files/test_tutorial001_02.py
  28. 2
      tests/test_tutorial/test_request_files/test_tutorial001_02_py310.py
  29. 2
      tests/test_tutorial/test_request_files/test_tutorial001_03.py
  30. 2
      tests/test_tutorial/test_request_files/test_tutorial002_py39.py
  31. 2
      tests/test_tutorial/test_request_files/test_tutorial003.py
  32. 2
      tests/test_tutorial/test_request_files/test_tutorial003_py39.py
  33. 2
      tests/test_tutorial/test_response_model/test_tutorial003_py310.py
  34. 2
      tests/test_tutorial/test_response_model/test_tutorial004_py310.py
  35. 2
      tests/test_tutorial/test_response_model/test_tutorial004_py39.py
  36. 2
      tests/test_tutorial/test_response_model/test_tutorial005_py310.py
  37. 2
      tests/test_tutorial/test_response_model/test_tutorial006_py310.py
  38. 2
      tests/test_tutorial/test_schema_extra_example/test_tutorial004_py310.py
  39. 2
      tests/test_tutorial/test_security/test_tutorial003_py310.py
  40. 2
      tests/test_tutorial/test_security/test_tutorial005_py310.py
  41. 2
      tests/test_tutorial/test_security/test_tutorial005_py39.py
  42. 2
      tests/test_tutorial/test_sql_databases/test_sql_databases_middleware_py310.py
  43. 2
      tests/test_tutorial/test_sql_databases/test_sql_databases_middleware_py39.py
  44. 2
      tests/test_tutorial/test_sql_databases/test_sql_databases_py310.py
  45. 2
      tests/test_tutorial/test_sql_databases/test_sql_databases_py39.py

28
tests/test_generate_unique_id_function.py

@ -217,7 +217,9 @@ def test_top_level_generate_unique_id():
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {
"anyOf": [{"type": "string"}, {"type": "integer"}]
},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},
@ -416,7 +418,9 @@ def test_router_overrides_generate_unique_id():
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {
"anyOf": [{"type": "string"}, {"type": "integer"}]
},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},
@ -615,7 +619,9 @@ def test_router_include_overrides_generate_unique_id():
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {
"anyOf": [{"type": "string"}, {"type": "integer"}]
},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},
@ -887,7 +893,9 @@ def test_subrouter_top_level_include_overrides_generate_unique_id():
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {
"anyOf": [{"type": "string"}, {"type": "integer"}]
},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},
@ -1089,7 +1097,9 @@ def test_router_path_operation_overrides_generate_unique_id():
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {
"anyOf": [{"type": "string"}, {"type": "integer"}]
},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},
@ -1295,7 +1305,9 @@ def test_app_path_operation_overrides_generate_unique_id():
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {
"anyOf": [{"type": "string"}, {"type": "integer"}]
},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},
@ -1579,7 +1591,9 @@ def test_callback_override_generate_unique_id():
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {
"anyOf": [{"type": "string"}, {"type": "integer"}]
},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_param_include_in_schema.py

@ -149,7 +149,7 @@ openapi_shema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tuples.py

@ -200,7 +200,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_body/test_tutorial001_py310.py

@ -61,7 +61,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_body_fields/test_tutorial001_py310.py

@ -84,7 +84,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_body_multiple_params/test_tutorial001_py310.py

@ -77,7 +77,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_body_multiple_params/test_tutorial003_py310.py

@ -88,7 +88,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_body_nested_models/test_tutorial009_py39.py

@ -52,7 +52,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_body_updates/test_tutorial001_py310.py

@ -108,7 +108,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_body_updates/test_tutorial001_py39.py

@ -108,7 +108,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_cookie_params/test_tutorial001_py310.py

@ -48,7 +48,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_dependencies/test_tutorial001_py310.py

@ -102,7 +102,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_dependencies/test_tutorial004_py310.py

@ -60,7 +60,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_extra_data_types/test_tutorial001_py310.py

@ -87,7 +87,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_extra_models/test_tutorial003_py310.py

@ -77,7 +77,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_generate_clients/test_tutorial003.py

@ -147,7 +147,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_header_params/test_tutorial001_py310.py

@ -48,7 +48,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_path_operation_configurations/test_tutorial005_py310.py

@ -71,7 +71,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_path_operation_configurations/test_tutorial005_py39.py

@ -71,7 +71,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_query_params/test_tutorial006_py310.py

@ -66,7 +66,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_query_params_str_validations/test_tutorial001_py310.py

@ -57,7 +57,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_query_params_str_validations/test_tutorial011_py310.py

@ -52,7 +52,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_query_params_str_validations/test_tutorial011_py39.py

@ -52,7 +52,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_query_params_str_validations/test_tutorial012_py39.py

@ -53,7 +53,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_query_params_str_validations/test_tutorial014.py

@ -53,7 +53,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_query_params_str_validations/test_tutorial014_py310.py

@ -51,7 +51,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_request_files/test_tutorial001_02.py

@ -106,7 +106,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_request_files/test_tutorial001_02_py310.py

@ -107,7 +107,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_request_files/test_tutorial001_03.py

@ -120,7 +120,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_request_files/test_tutorial002_py39.py

@ -119,7 +119,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_request_files/test_tutorial003.py

@ -132,7 +132,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_request_files/test_tutorial003_py39.py

@ -132,7 +132,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_response_model/test_tutorial003_py310.py

@ -73,7 +73,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_response_model/test_tutorial004_py310.py

@ -69,7 +69,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_response_model/test_tutorial004_py39.py

@ -69,7 +69,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_response_model/test_tutorial005_py310.py

@ -97,7 +97,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_response_model/test_tutorial006_py310.py

@ -97,7 +97,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_schema_extra_example/test_tutorial004_py310.py

@ -102,7 +102,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_security/test_tutorial003_py310.py

@ -80,7 +80,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_security/test_tutorial005_py310.py

@ -134,7 +134,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_security/test_tutorial005_py39.py

@ -134,7 +134,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_sql_databases/test_sql_databases_middleware_py310.py

@ -263,7 +263,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_sql_databases/test_sql_databases_middleware_py39.py

@ -263,7 +263,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_sql_databases/test_sql_databases_py310.py

@ -263,7 +263,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

2
tests/test_tutorial/test_sql_databases/test_sql_databases_py39.py

@ -263,7 +263,7 @@ openapi_schema = {
"loc": {
"title": "Location",
"type": "array",
"items": {"type": "string"},
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]},
},
"msg": {"title": "Message", "type": "string"},
"type": {"title": "Error Type", "type": "string"},

Loading…
Cancel
Save