📝 Add source examples for Python 3.9 and 3.10 (#715)
* 📝 Add source examples for Python 3.9 and 3.10 * ✅ Add tests for new source examples for Python 3.9 and 3.10, still needs pytest markers * ✅ Add tests for fastapi examples * ✅ Update tests for FastAPI app testing, for Python 3.9 and 3.10, fixing multi-app testing conflicts * ✅ Require Python 3.9 and 3.10 for tests * ✅ Update tests with missing markers
This commit is contained in:
committed by
GitHub
parent
cce30d7546
commit
d8effcbc5c
@@ -0,0 +1,163 @@
|
||||
from typing import Any, Dict, List, Union
|
||||
from unittest.mock import patch
|
||||
|
||||
from sqlmodel import create_engine
|
||||
|
||||
from tests.conftest import get_testing_print_function, needs_py310
|
||||
|
||||
|
||||
def check_calls(calls: List[List[Union[str, Dict[str, Any]]]]):
|
||||
assert calls[0] == ["Before interacting with the database"]
|
||||
assert calls[1] == [
|
||||
"Hero 1:",
|
||||
{
|
||||
"id": None,
|
||||
"name": "Deadpond",
|
||||
"secret_name": "Dive Wilson",
|
||||
"age": None,
|
||||
},
|
||||
]
|
||||
assert calls[2] == [
|
||||
"Hero 2:",
|
||||
{
|
||||
"id": None,
|
||||
"name": "Spider-Boy",
|
||||
"secret_name": "Pedro Parqueador",
|
||||
"age": None,
|
||||
},
|
||||
]
|
||||
assert calls[3] == [
|
||||
"Hero 3:",
|
||||
{
|
||||
"id": None,
|
||||
"name": "Rusty-Man",
|
||||
"secret_name": "Tommy Sharp",
|
||||
"age": 48,
|
||||
},
|
||||
]
|
||||
assert calls[4] == ["After adding to the session"]
|
||||
assert calls[5] == [
|
||||
"Hero 1:",
|
||||
{
|
||||
"id": None,
|
||||
"name": "Deadpond",
|
||||
"secret_name": "Dive Wilson",
|
||||
"age": None,
|
||||
},
|
||||
]
|
||||
assert calls[6] == [
|
||||
"Hero 2:",
|
||||
{
|
||||
"id": None,
|
||||
"name": "Spider-Boy",
|
||||
"secret_name": "Pedro Parqueador",
|
||||
"age": None,
|
||||
},
|
||||
]
|
||||
assert calls[7] == [
|
||||
"Hero 3:",
|
||||
{
|
||||
"id": None,
|
||||
"name": "Rusty-Man",
|
||||
"secret_name": "Tommy Sharp",
|
||||
"age": 48,
|
||||
},
|
||||
]
|
||||
assert calls[8] == ["After committing the session"]
|
||||
assert calls[9] == ["Hero 1:", {}]
|
||||
assert calls[10] == ["Hero 2:", {}]
|
||||
assert calls[11] == ["Hero 3:", {}]
|
||||
assert calls[12] == ["After committing the session, show IDs"]
|
||||
assert calls[13] == ["Hero 1 ID:", 1]
|
||||
assert calls[14] == ["Hero 2 ID:", 2]
|
||||
assert calls[15] == ["Hero 3 ID:", 3]
|
||||
assert calls[16] == ["After committing the session, show names"]
|
||||
assert calls[17] == ["Hero 1 name:", "Deadpond"]
|
||||
assert calls[18] == ["Hero 2 name:", "Spider-Boy"]
|
||||
assert calls[19] == ["Hero 3 name:", "Rusty-Man"]
|
||||
assert calls[20] == ["After refreshing the heroes"]
|
||||
assert calls[21] == [
|
||||
"Hero 1:",
|
||||
{
|
||||
"id": 1,
|
||||
"name": "Deadpond",
|
||||
"secret_name": "Dive Wilson",
|
||||
"age": None,
|
||||
},
|
||||
]
|
||||
assert calls[22] == [
|
||||
"Hero 2:",
|
||||
{
|
||||
"id": 2,
|
||||
"name": "Spider-Boy",
|
||||
"secret_name": "Pedro Parqueador",
|
||||
"age": None,
|
||||
},
|
||||
]
|
||||
assert calls[23] == [
|
||||
"Hero 3:",
|
||||
{
|
||||
"id": 3,
|
||||
"name": "Rusty-Man",
|
||||
"secret_name": "Tommy Sharp",
|
||||
"age": 48,
|
||||
},
|
||||
]
|
||||
assert calls[24] == ["After the session closes"]
|
||||
assert calls[21] == [
|
||||
"Hero 1:",
|
||||
{
|
||||
"id": 1,
|
||||
"name": "Deadpond",
|
||||
"secret_name": "Dive Wilson",
|
||||
"age": None,
|
||||
},
|
||||
]
|
||||
assert calls[22] == [
|
||||
"Hero 2:",
|
||||
{
|
||||
"id": 2,
|
||||
"name": "Spider-Boy",
|
||||
"secret_name": "Pedro Parqueador",
|
||||
"age": None,
|
||||
},
|
||||
]
|
||||
assert calls[23] == [
|
||||
"Hero 3:",
|
||||
{
|
||||
"id": 3,
|
||||
"name": "Rusty-Man",
|
||||
"secret_name": "Tommy Sharp",
|
||||
"age": 48,
|
||||
},
|
||||
]
|
||||
|
||||
|
||||
@needs_py310
|
||||
def test_tutorial_001(clear_sqlmodel):
|
||||
from docs_src.tutorial.automatic_id_none_refresh import tutorial001_py310 as mod
|
||||
|
||||
mod.sqlite_url = "sqlite://"
|
||||
mod.engine = create_engine(mod.sqlite_url)
|
||||
calls = []
|
||||
|
||||
new_print = get_testing_print_function(calls)
|
||||
|
||||
with patch("builtins.print", new=new_print):
|
||||
mod.main()
|
||||
check_calls(calls)
|
||||
|
||||
|
||||
@needs_py310
|
||||
def test_tutorial_002(clear_sqlmodel):
|
||||
from docs_src.tutorial.automatic_id_none_refresh import tutorial002_py310 as mod
|
||||
|
||||
mod.sqlite_url = "sqlite://"
|
||||
mod.engine = create_engine(mod.sqlite_url)
|
||||
calls = []
|
||||
|
||||
new_print = get_testing_print_function(calls)
|
||||
|
||||
with patch("builtins.print", new=new_print):
|
||||
mod.main()
|
||||
check_calls(calls)
|
||||
Reference in New Issue
Block a user