Coverage for tests/test_tutorial/test_indexes/test_tutorial001.py: 100%
21 statements
« prev ^ index » next coverage.py v7.7.1, created at 2025-03-24 00:02 +0000
« prev ^ index » next coverage.py v7.7.1, created at 2025-03-24 00:02 +0000
1from unittest.mock import patch 1ghijkl
3from sqlalchemy import inspect 1ghijkl
4from sqlalchemy.engine.reflection import Inspector 1ghijkl
5from sqlmodel import create_engine 1ghijkl
7from ...conftest import get_testing_print_function 1ghijkl
10def test_tutorial(clear_sqlmodel): 1ghijkl
11 from docs_src.tutorial.indexes import tutorial001 as mod 1abcdef
13 mod.sqlite_url = "sqlite://" 1abcdef
14 mod.engine = create_engine(mod.sqlite_url) 1abcdef
15 calls = [] 1abcdef
17 new_print = get_testing_print_function(calls) 1abcdef
19 with patch("builtins.print", new=new_print): 1abcdef
20 mod.main() 1abcdef
21 assert calls == [ 1abcdef
22 [{"secret_name": "Dive Wilson", "age": None, "id": 1, "name": "Deadpond"}]
23 ]
25 insp: Inspector = inspect(mod.engine) 1abcdef
26 indexes = insp.get_indexes(str(mod.Hero.__tablename__)) 1abcdef
27 expected_indexes = [ 1abcdef
28 {
29 "name": "ix_hero_name",
30 "dialect_options": {},
31 "column_names": ["name"],
32 "unique": 0,
33 },
34 {
35 "name": "ix_hero_age",
36 "dialect_options": {},
37 "column_names": ["age"],
38 "unique": 0,
39 },
40 ]
41 for index in expected_indexes: 1abcdef
42 assert index in indexes, "This expected index should be in the indexes in DB" 1abcdef
43 # Now that this index was checked, remove it from the list of indexes
44 indexes.pop(indexes.index(index)) 1abcdef
45 assert len(indexes) == 0, "The database should only have the expected indexes" 1abcdef