Add tests

This commit is contained in:
Sebastián Ramírez
2021-08-24 15:15:26 +02:00
parent 362f2e2e17
commit 79089f7a6c
114 changed files with 6742 additions and 0 deletions

View File

@@ -0,0 +1,87 @@
from typing import Any, Dict, List, Union
from unittest.mock import patch
from sqlmodel import create_engine
from ...conftest import get_testing_print_function
expected_calls = [
[
"Hero 1:",
{"id": 2, "name": "Spider-Boy", "secret_name": "Pedro Parqueador", "age": None},
],
[
"Hero 2:",
{
"id": 7,
"name": "Captain North America",
"secret_name": "Esteban Rogelios",
"age": 93,
},
],
[
"Updated hero 1:",
{
"id": 2,
"name": "Spider-Youngster",
"secret_name": "Pedro Parqueador",
"age": 16,
},
],
[
"Updated hero 2:",
{
"id": 7,
"name": "Captain North America Except Canada",
"secret_name": "Esteban Rogelios",
"age": 110,
},
],
[
"Hero: ",
{
"id": 2,
"name": "Spider-Youngster",
"secret_name": "Pedro Parqueador",
"age": 16,
},
],
[
"Deleted hero:",
{
"id": 2,
"name": "Spider-Youngster",
"secret_name": "Pedro Parqueador",
"age": 16,
},
],
["There's no hero named Spider-Youngster"],
]
def test_tutorial001(clear_sqlmodel):
from docs_src.tutorial.delete import tutorial001 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()
assert calls == expected_calls
def test_tutorial002(clear_sqlmodel):
from docs_src.tutorial.delete import tutorial002 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()
assert calls == expected_calls