Browse Source

🔀 Merge master, fix valid JSON Schema accepting bools (#9782)

pull/9787/head
Sebastián Ramírez 2 years ago
committed by GitHub
parent
commit
54feaad147
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      docs/en/docs/release-notes.md
  2. 46
      fastapi/openapi/models.py
  3. 133
      tests/test_additional_properties_bool.py

10
docs/en/docs/release-notes.md

@ -3,6 +3,16 @@
## Latest Changes ## Latest Changes
## 0.99.1
### Fixes
* 🐛 Fix JSON Schema accepting bools as valid JSON Schemas, e.g. `additionalProperties: false`. PR [#9781](https://github.com/tiangolo/fastapi/pull/9781) by [@tiangolo](https://github.com/tiangolo).
### Docs
* 📝 Update source examples to use new JSON Schema examples field. PR [#9776](https://github.com/tiangolo/fastapi/pull/9776) by [@tiangolo](https://github.com/tiangolo).
## 0.99.0 ## 0.99.0
### Features ### Features

46
fastapi/openapi/models.py

@ -177,27 +177,30 @@ class Schema(BaseModel):
dynamicAnchor: Optional[str] = Field(default=None, alias="$dynamicAnchor") dynamicAnchor: Optional[str] = Field(default=None, alias="$dynamicAnchor")
ref: Optional[str] = Field(default=None, alias="$ref") ref: Optional[str] = Field(default=None, alias="$ref")
dynamicRef: Optional[str] = Field(default=None, alias="$dynamicRef") dynamicRef: Optional[str] = Field(default=None, alias="$dynamicRef")
defs: Optional[Dict[str, "Schema"]] = Field(default=None, alias="$defs") defs: Optional[Dict[str, "SchemaOrBool"]] = Field(default=None, alias="$defs")
comment: Optional[str] = Field(default=None, alias="$comment") comment: Optional[str] = Field(default=None, alias="$comment")
# Ref: JSON Schema 2020-12: https://json-schema.org/draft/2020-12/json-schema-core.html#name-a-vocabulary-for-applying-s # Ref: JSON Schema 2020-12: https://json-schema.org/draft/2020-12/json-schema-core.html#name-a-vocabulary-for-applying-s
# A Vocabulary for Applying Subschemas # A Vocabulary for Applying Subschemas
allOf: Optional[List["Schema"]] = None allOf: Optional[List["SchemaOrBool"]] = None
anyOf: Optional[List["Schema"]] = None anyOf: Optional[List["SchemaOrBool"]] = None
oneOf: Optional[List["Schema"]] = None oneOf: Optional[List["SchemaOrBool"]] = None
not_: Optional["Schema"] = Field(default=None, alias="not") not_: Optional["SchemaOrBool"] = Field(default=None, alias="not")
if_: Optional["Schema"] = Field(default=None, alias="if") if_: Optional["SchemaOrBool"] = Field(default=None, alias="if")
then: Optional["Schema"] = None then: Optional["SchemaOrBool"] = None
else_: Optional["Schema"] = Field(default=None, alias="else") else_: Optional["SchemaOrBool"] = Field(default=None, alias="else")
dependentSchemas: Optional[Dict[str, "Schema"]] = None dependentSchemas: Optional[Dict[str, "SchemaOrBool"]] = None
prefixItems: Optional[List["Schema"]] = None prefixItems: Optional[List["SchemaOrBool"]] = None
items: Optional[Union["Schema", List["Schema"]]] = None # TODO: uncomment and remove below when deprecating Pydantic v1
contains: Optional["Schema"] = None # It generales a list of schemas for tuples, before prefixItems was available
properties: Optional[Dict[str, "Schema"]] = None # items: Optional["SchemaOrBool"] = None
patternProperties: Optional[Dict[str, "Schema"]] = None items: Optional[Union["SchemaOrBool", List["SchemaOrBool"]]] = None
additionalProperties: Optional["Schema"] = None contains: Optional["SchemaOrBool"] = None
propertyNames: Optional["Schema"] = None properties: Optional[Dict[str, "SchemaOrBool"]] = None
unevaluatedItems: Optional["Schema"] = None patternProperties: Optional[Dict[str, "SchemaOrBool"]] = None
unevaluatedProperties: Optional["Schema"] = None additionalProperties: Optional["SchemaOrBool"] = None
propertyNames: Optional["SchemaOrBool"] = None
unevaluatedItems: Optional["SchemaOrBool"] = None
unevaluatedProperties: Optional["SchemaOrBool"] = None
# Ref: JSON Schema Validation 2020-12: https://json-schema.org/draft/2020-12/json-schema-validation.html#name-a-vocabulary-for-structural # Ref: JSON Schema Validation 2020-12: https://json-schema.org/draft/2020-12/json-schema-validation.html#name-a-vocabulary-for-structural
# A Vocabulary for Structural Validation # A Vocabulary for Structural Validation
type: Optional[str] = None type: Optional[str] = None
@ -227,7 +230,7 @@ class Schema(BaseModel):
# A Vocabulary for the Contents of String-Encoded Data # A Vocabulary for the Contents of String-Encoded Data
contentEncoding: Optional[str] = None contentEncoding: Optional[str] = None
contentMediaType: Optional[str] = None contentMediaType: Optional[str] = None
contentSchema: Optional["Schema"] = None contentSchema: Optional["SchemaOrBool"] = None
# Ref: JSON Schema Validation 2020-12: https://json-schema.org/draft/2020-12/json-schema-validation.html#name-a-vocabulary-for-basic-meta # Ref: JSON Schema Validation 2020-12: https://json-schema.org/draft/2020-12/json-schema-validation.html#name-a-vocabulary-for-basic-meta
# A Vocabulary for Basic Meta-Data Annotations # A Vocabulary for Basic Meta-Data Annotations
title: Optional[str] = None title: Optional[str] = None
@ -259,6 +262,11 @@ class Schema(BaseModel):
extra = "allow" extra = "allow"
# Ref: https://json-schema.org/draft/2020-12/json-schema-core.html#name-json-schema-documents
# A JSON Schema MUST be an object or a boolean.
SchemaOrBool = Union[Schema, bool]
class Example(BaseModel): class Example(BaseModel):
summary: Optional[str] = None summary: Optional[str] = None
description: Optional[str] = None description: Optional[str] = None

133
tests/test_additional_properties_bool.py

@ -0,0 +1,133 @@
from typing import Union
from dirty_equals import IsDict
from fastapi import FastAPI
from fastapi._compat import PYDANTIC_V2
from fastapi.testclient import TestClient
from pydantic import BaseModel, ConfigDict
class FooBaseModel(BaseModel):
if PYDANTIC_V2:
model_config = ConfigDict(extra="forbid")
else:
class Config:
extra = "forbid"
class Foo(FooBaseModel):
pass
app = FastAPI()
@app.post("/")
async def post(
foo: Union[Foo, None] = None,
):
return foo
client = TestClient(app)
def test_call_invalid():
response = client.post("/", json={"foo": {"bar": "baz"}})
assert response.status_code == 422
def test_call_valid():
response = client.post("/", json={})
assert response.status_code == 200
assert response.json() == {}
def test_openapi_schema():
response = client.get("/openapi.json")
assert response.status_code == 200, response.text
assert response.json() == {
"openapi": "3.1.0",
"info": {"title": "FastAPI", "version": "0.1.0"},
"paths": {
"/": {
"post": {
"summary": "Post",
"operationId": "post__post",
"requestBody": {
"content": {
"application/json": {
"schema": IsDict(
{
"anyOf": [
{"$ref": "#/components/schemas/Foo"},
{"type": "null"},
],
"title": "Foo",
}
)
| IsDict(
# TODO: remove when deprecating Pydantic v1
{"$ref": "#/components/schemas/Foo"}
)
}
}
},
"responses": {
"200": {
"description": "Successful Response",
"content": {"application/json": {"schema": {}}},
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
},
},
},
}
}
},
"components": {
"schemas": {
"Foo": {
"properties": {},
"additionalProperties": False,
"type": "object",
"title": "Foo",
},
"HTTPValidationError": {
"properties": {
"detail": {
"items": {"$ref": "#/components/schemas/ValidationError"},
"type": "array",
"title": "Detail",
}
},
"type": "object",
"title": "HTTPValidationError",
},
"ValidationError": {
"properties": {
"loc": {
"items": {
"anyOf": [{"type": "string"}, {"type": "integer"}]
},
"type": "array",
"title": "Location",
},
"msg": {"type": "string", "title": "Message"},
"type": {"type": "string", "title": "Error Type"},
},
"type": "object",
"required": ["loc", "msg", "type"],
"title": "ValidationError",
},
}
},
}
Loading…
Cancel
Save