Coverage for docs_src/tutorial/relationship_attributes/cascade_delete_relationships/tutorial002.py: 100%

70 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2024-09-09 00:02 +0000

1from typing import List, Optional 1abcdef

2 

3from sqlmodel import Field, Relationship, Session, SQLModel, create_engine, select 1abcdef

4 

5 

6class Team(SQLModel, table=True): 1abcdef

7 id: Optional[int] = Field(default=None, primary_key=True) 1abcdef

8 name: str = Field(index=True) 1abcdef

9 headquarters: str 1abcdef

10 

11 heroes: List["Hero"] = Relationship(back_populates="team") 1abcdef

12 

13 

14class Hero(SQLModel, table=True): 1abcdef

15 id: Optional[int] = Field(default=None, primary_key=True) 1abcdef

16 name: str = Field(index=True) 1abcdef

17 secret_name: str 1abcdef

18 age: Optional[int] = Field(default=None, index=True) 1abcdef

19 

20 team_id: Optional[int] = Field( 1abcdef

21 default=None, foreign_key="team.id", ondelete="SET NULL" 

22 ) 

23 team: Optional[Team] = Relationship(back_populates="heroes") 1abcdef

24 

25 

26sqlite_file_name = "database.db" 1abcdef

27sqlite_url = f"sqlite:///{sqlite_file_name}" 1abcdef

28 

29engine = create_engine(sqlite_url, echo=True) 1abcdef

30 

31 

32def create_db_and_tables(): 1abcdef

33 SQLModel.metadata.create_all(engine) 1abcdef

34 

35 

36def create_heroes(): 1abcdef

37 with Session(engine) as session: 1abcdef

38 team_preventers = Team(name="Preventers", headquarters="Sharp Tower") 1abcdef

39 team_z_force = Team(name="Z-Force", headquarters="Sister Margaret's Bar") 1abcdef

40 

41 hero_deadpond = Hero( 1abcdef

42 name="Deadpond", secret_name="Dive Wilson", team=team_z_force 

43 ) 

44 hero_rusty_man = Hero( 1abcdef

45 name="Rusty-Man", secret_name="Tommy Sharp", age=48, team=team_preventers 

46 ) 

47 hero_spider_boy = Hero(name="Spider-Boy", secret_name="Pedro Parqueador") 1abcdef

48 session.add(hero_deadpond) 1abcdef

49 session.add(hero_rusty_man) 1abcdef

50 session.add(hero_spider_boy) 1abcdef

51 session.commit() 1abcdef

52 

53 session.refresh(hero_deadpond) 1abcdef

54 session.refresh(hero_rusty_man) 1abcdef

55 session.refresh(hero_spider_boy) 1abcdef

56 

57 print("Created hero:", hero_deadpond) 1abcdef

58 print("Created hero:", hero_rusty_man) 1abcdef

59 print("Created hero:", hero_spider_boy) 1abcdef

60 

61 hero_spider_boy.team = team_preventers 1abcdef

62 session.add(hero_spider_boy) 1abcdef

63 session.commit() 1abcdef

64 session.refresh(hero_spider_boy) 1abcdef

65 print("Updated hero:", hero_spider_boy) 1abcdef

66 

67 hero_black_lion = Hero(name="Black Lion", secret_name="Trevor Challa", age=35) 1abcdef

68 hero_sure_e = Hero(name="Princess Sure-E", secret_name="Sure-E") 1abcdef

69 team_wakaland = Team( 1abcdef

70 name="Wakaland", 

71 headquarters="Wakaland Capital City", 

72 heroes=[hero_black_lion, hero_sure_e], 

73 ) 

74 session.add(team_wakaland) 1abcdef

75 session.commit() 1abcdef

76 session.refresh(team_wakaland) 1abcdef

77 print("Team Wakaland:", team_wakaland) 1abcdef

78 

79 

80def delete_team(): 1abcdef

81 with Session(engine) as session: 1abcdef

82 statement = select(Team).where(Team.name == "Wakaland") 1abcdef

83 team = session.exec(statement).one() 1abcdef

84 session.delete(team) 1abcdef

85 session.commit() 1abcdef

86 print("Deleted team:", team) 1abcdef

87 

88 

89def select_deleted_heroes(): 1abcdef

90 with Session(engine) as session: 1abcdef

91 statement = select(Hero).where(Hero.name == "Black Lion") 1abcdef

92 result = session.exec(statement) 1abcdef

93 hero = result.first() 1abcdef

94 print("Black Lion has no team:", hero) 1abcdef

95 

96 statement = select(Hero).where(Hero.name == "Princess Sure-E") 1abcdef

97 result = session.exec(statement) 1abcdef

98 hero = result.first() 1abcdef

99 print("Princess Sure-E has no team:", hero) 1abcdef

100 

101 

102def main(): 1abcdef

103 create_db_and_tables() 1abcdef

104 create_heroes() 1abcdef

105 delete_team() 1abcdef

106 select_deleted_heroes() 1abcdef

107 

108 

109if __name__ == "__main__": 1abcdef

110 main()