forked from fastapi/sqlmodel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_tutorial005.py
More file actions
45 lines (38 loc) · 1.18 KB
/
Copy pathtest_tutorial005.py
File metadata and controls
45 lines (38 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import importlib
from types import ModuleType
import pytest
from sqlalchemy.exc import NoResultFound
from sqlmodel import Session, create_engine, delete
from ...conftest import PrintMock
@pytest.fixture(
name="mod",
params=[
pytest.param("tutorial005_py310"),
],
)
def get_module(request: pytest.FixtureRequest) -> ModuleType:
mod = importlib.import_module(f"docs_src.tutorial.one.{request.param}")
mod.sqlite_url = "sqlite://"
mod.engine = create_engine(mod.sqlite_url)
return mod
def test_tutorial(print_mock: PrintMock, mod: ModuleType):
with pytest.raises(NoResultFound):
mod.main()
with Session(mod.engine) as session:
# TODO: create delete() function
# TODO: add overloads for .exec() with delete object
session.exec(delete(mod.Hero))
session.add(mod.Hero(name="Test Hero", secret_name="Secret Test Hero", age=24))
session.commit()
mod.select_heroes()
assert print_mock.calls == [
[
"Hero:",
{
"id": 1,
"name": "Test Hero",
"secret_name": "Secret Test Hero",
"age": 24,
},
]
]