@ -3,20 +3,20 @@ from fastapi.testclient import TestClient
from pydantic import BaseModel
class Test ( BaseModel ) :
class Model1 ( BaseModel ) :
foo : str
bar : str
class Test 2( BaseModel ) :
test : Test
class Model 2( BaseModel ) :
ref : Model1
baz : str
class Test 3( BaseModel ) :
class Model 3( BaseModel ) :
name : str
age : int
test2 : Test 2
ref2 : Model 2
app = FastAPI ( )
@ -24,87 +24,88 @@ app = FastAPI()
@app . get (
" /simple_include " ,
response_model = Test 2,
response_model_include = { " baz " : . . . , " test " : { " foo " } } ,
response_model = Model 2,
response_model_include = { " baz " : . . . , " ref " : { " foo " } } ,
)
def simple_include ( ) :
return Test 2(
test = Test ( foo = " simple_include test foo " , bar = " simple_include test bar " ) ,
baz = " simple_include test 2 baz " ,
return Model 2(
ref = Model1 ( foo = " simple_include model foo " , bar = " simple_include model bar " ) ,
baz = " simple_include model 2 baz " ,
)
@app . get (
" /simple_include_dict " ,
response_model = Test 2,
response_model_include = { " baz " : . . . , " test " : { " foo " } } ,
response_model = Model 2,
response_model_include = { " baz " : . . . , " ref " : { " foo " } } ,
)
def simple_include_dict ( ) :
return {
" test " : {
" foo " : " simple_include_dict test foo " ,
" bar " : " simple_include_dict test bar " ,
" ref " : {
" foo " : " simple_include_dict model foo " ,
" bar " : " simple_include_dict model bar " ,
} ,
" baz " : " simple_include_dict test 2 baz " ,
" baz " : " simple_include_dict model 2 baz " ,
}
@app . get (
" /simple_exclude " ,
response_model = Test 2,
response_model_exclude = { " test " : { " bar " } } ,
response_model = Model 2,
response_model_exclude = { " ref " : { " bar " } } ,
)
def simple_exclude ( ) :
return Test 2(
test = Test ( foo = " simple_exclude test foo " , bar = " simple_exclude test bar " ) ,
baz = " simple_exclude test 2 baz " ,
return Model 2(
ref = Model1 ( foo = " simple_exclude model foo " , bar = " simple_exclude model bar " ) ,
baz = " simple_exclude model 2 baz " ,
)
@app . get (
" /simple_exclude_dict " ,
response_model = Test 2,
response_model_exclude = { " test " : { " bar " } } ,
response_model = Model 2,
response_model_exclude = { " ref " : { " bar " } } ,
)
def simple_exclude_dict ( ) :
return {
" test " : {
" foo " : " simple_exclude_dict test foo " ,
" bar " : " simple_exclude_dict test bar " ,
" ref " : {
" foo " : " simple_exclude_dict model foo " ,
" bar " : " simple_exclude_dict model bar " ,
} ,
" baz " : " simple_exclude_dict test 2 baz " ,
" baz " : " simple_exclude_dict model 2 baz " ,
}
@app . get (
" /mixed " ,
response_model = Test 3,
response_model_include = { " test 2" , " name " } ,
response_model_exclude = { " test 2" : { " baz " } } ,
response_model = Model 3,
response_model_include = { " ref 2" , " name " } ,
response_model_exclude = { " ref 2" : { " baz " } } ,
)
def mixed ( ) :
return Test 3(
name = " mixed test 3 name " ,
return Model 3(
name = " mixed model 3 name " ,
age = 3 ,
test2 = Test2 (
test = Test ( foo = " mixed test foo " , bar = " mixed test bar " ) , baz = " mixed test2 baz "
ref2 = Model2 (
ref = Model1 ( foo = " mixed model foo " , bar = " mixed model bar " ) ,
baz = " mixed model2 baz " ,
) ,
)
@app . get (
" /mixed_dict " ,
response_model = Test 3,
response_model_include = { " test 2" , " name " } ,
response_model_exclude = { " test 2" : { " baz " } } ,
response_model = Model 3,
response_model_include = { " ref 2" , " name " } ,
response_model_exclude = { " ref 2" : { " baz " } } ,
)
def mixed_dict ( ) :
return {
" name " : " mixed_dict test 3 name " ,
" name " : " mixed_dict model 3 name " ,
" age " : 3 ,
" test 2" : {
" test " : { " foo " : " mixed_dict test foo " , " bar " : " mixed_dict test bar " } ,
" baz " : " mixed_dict test 2 baz " ,
" ref 2" : {
" ref " : { " foo " : " mixed_dict model foo " , " bar " : " mixed_dict model bar " } ,
" baz " : " mixed_dict model 2 baz " ,
} ,
}
@ -118,8 +119,8 @@ def test_nested_include_simple():
assert response . status_code == 200 , response . text
assert response . json ( ) == {
" baz " : " simple_include test 2 baz " ,
" test " : { " foo " : " simple_include test foo " } ,
" baz " : " simple_include model 2 baz " ,
" ref " : { " foo " : " simple_include model foo " } ,
}
@ -129,8 +130,8 @@ def test_nested_include_simple_dict():
assert response . status_code == 200 , response . text
assert response . json ( ) == {
" baz " : " simple_include_dict test 2 baz " ,
" test " : { " foo " : " simple_include_dict test foo " } ,
" baz " : " simple_include_dict model 2 baz " ,
" ref " : { " foo " : " simple_include_dict model foo " } ,
}
@ -138,8 +139,8 @@ def test_nested_exclude_simple():
response = client . get ( " /simple_exclude " )
assert response . status_code == 200 , response . text
assert response . json ( ) == {
" baz " : " simple_exclude test 2 baz " ,
" test " : { " foo " : " simple_exclude test foo " } ,
" baz " : " simple_exclude model 2 baz " ,
" ref " : { " foo " : " simple_exclude model foo " } ,
}
@ -147,8 +148,8 @@ def test_nested_exclude_simple_dict():
response = client . get ( " /simple_exclude_dict " )
assert response . status_code == 200 , response . text
assert response . json ( ) == {
" baz " : " simple_exclude_dict test 2 baz " ,
" test " : { " foo " : " simple_exclude_dict test foo " } ,
" baz " : " simple_exclude_dict model 2 baz " ,
" ref " : { " foo " : " simple_exclude_dict model foo " } ,
}
@ -156,9 +157,9 @@ def test_nested_include_mixed():
response = client . get ( " /mixed " )
assert response . status_code == 200 , response . text
assert response . json ( ) == {
" name " : " mixed test 3 name " ,
" test 2" : {
" test " : { " foo " : " mixed test foo " , " bar " : " mixed test bar " } ,
" name " : " mixed model 3 name " ,
" ref 2" : {
" ref " : { " foo " : " mixed model foo " , " bar " : " mixed model bar " } ,
} ,
}
@ -167,8 +168,8 @@ def test_nested_include_mixed_dict():
response = client . get ( " /mixed_dict " )
assert response . status_code == 200 , response . text
assert response . json ( ) == {
" name " : " mixed_dict test 3 name " ,
" test 2" : {
" test " : { " foo " : " mixed_dict test foo " , " bar " : " mixed_dict test bar " } ,
" name " : " mixed_dict model 3 name " ,
" ref 2" : {
" ref " : { " foo " : " mixed_dict model foo " , " bar " : " mixed_dict model bar " } ,
} ,
}