Coverage for docs_src/tutorial/fastapi/app_testing/tutorial001/main.py: 100%

67 statements  

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

1from typing import List, Optional 1fabcde

2 

3from fastapi import Depends, FastAPI, HTTPException, Query 1fabcde

4from sqlmodel import Field, Session, SQLModel, create_engine, select 1fabcde

5 

6 

7class HeroBase(SQLModel): 1fabcde

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

9 secret_name: str 1fabcde

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

11 

12 

13class Hero(HeroBase, table=True): 1fabcde

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

15 

16 

17class HeroCreate(HeroBase): 1fabcde

18 pass 1fabcde

19 

20 

21class HeroPublic(HeroBase): 1fabcde

22 id: int 1fabcde

23 

24 

25class HeroUpdate(SQLModel): 1fabcde

26 name: Optional[str] = None 1fabcde

27 secret_name: Optional[str] = None 1fabcde

28 age: Optional[int] = None 1fabcde

29 

30 

31sqlite_file_name = "database.db" 1fabcde

32sqlite_url = f"sqlite:///{sqlite_file_name}" 1fabcde

33 

34connect_args = {"check_same_thread": False} 1fabcde

35engine = create_engine(sqlite_url, echo=True, connect_args=connect_args) 1fabcde

36 

37 

38def create_db_and_tables(): 1fabcde

39 SQLModel.metadata.create_all(engine) 2FbGbHbIbJbKb

40 

41 

42def get_session(): 1fabcde

43 with Session(engine) as session: 2LbMbNbObPbQb

44 yield session 2LbMbNbObPbQb

45 

46 

47app = FastAPI() 1fabcde

48 

49 

50@app.on_event("startup") 1fabcde

51def on_startup(): 1abcde

52 create_db_and_tables() 2FbGbHbIbJbKb

53 

54 

55@app.post("/heroes/", response_model=HeroPublic) 1fabcde

56def create_hero(*, session: Session = Depends(get_session), hero: HeroCreate): 1fabcde

57 db_hero = Hero.model_validate(hero) 2m n o p q r s t u v w x y z A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 0 1 2 3 4 5 6 7 8 9 ! # $ % ' ( ) * + , - . / : ; = ? @ [ ] ^ _ ` { | } ~ ab

58 session.add(db_hero) 2m n o p q r s t u v w x y z A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 0 1 2 3 4 5 6 7 8 9 ! # $ % ' ( ) * + , - . / : ; = ? @ [ ] ^ _ ` { | } ~ ab

59 session.commit() 2m n o p q r s t u v w x y z A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 0 1 2 3 4 5 6 7 8 9 ! # $ % ' ( ) * + , - . / : ; = ? @ [ ] ^ _ ` { | } ~ ab

60 session.refresh(db_hero) 2m n o p q r s t u v w x y z A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 0 1 2 3 4 5 6 7 8 9 ! # $ % ' ( ) * + , - . / : ; = ? @ [ ] ^ _ ` { | } ~ ab

61 return db_hero 2m n o p q r s t u v w x y z A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 0 1 2 3 4 5 6 7 8 9 ! # $ % ' ( ) * + , - . / : ; = ? @ [ ] ^ _ ` { | } ~ ab

62 

63 

64@app.get("/heroes/", response_model=List[HeroPublic]) 1fabcde

65def read_heroes( 1abcde

66 *, 

67 session: Session = Depends(get_session), 

68 offset: int = 0, 

69 limit: int = Query(default=100, le=100), 

70): 

71 heroes = session.exec(select(Hero).offset(offset).limit(limit)).all() 2RbSbTbUbVbWb

72 return heroes 2RbSbTbUbVbWb

73 

74 

75@app.get("/heroes/{hero_id}", response_model=HeroPublic) 1fabcde

76def read_hero(*, session: Session = Depends(get_session), hero_id: int): 1fabcde

77 hero = session.get(Hero, hero_id) 2hbibjbkblbmbnbobpbqbrbsb

78 if not hero: 2hbibjbkblbmbnbobpbqbrbsb

79 raise HTTPException(status_code=404, detail="Hero not found") 2hbjblbnbpbrb

80 return hero 2ibkbmbobqbsb

81 

82 

83@app.patch("/heroes/{hero_id}", response_model=HeroPublic) 1fabcde

84def update_hero( 1abcde

85 *, session: Session = Depends(get_session), hero_id: int, hero: HeroUpdate 

86): 

87 db_hero = session.get(Hero, hero_id) 2tbg ubh vbi wbj xbk ybl

88 if not db_hero: 2tbg ubh vbi wbj xbk ybl

89 raise HTTPException(status_code=404, detail="Hero not found") 2tbubvbwbxbyb

90 hero_data = hero.model_dump(exclude_unset=True) 1ghijkl

91 for key, value in hero_data.items(): 1ghijkl

92 setattr(db_hero, key, value) 1ghijkl

93 session.add(db_hero) 1ghijkl

94 session.commit() 1ghijkl

95 session.refresh(db_hero) 1ghijkl

96 return db_hero 1ghijkl

97 

98 

99@app.delete("/heroes/{hero_id}") 1fabcde

100def delete_hero(*, session: Session = Depends(get_session), hero_id: int): 1fabcde

101 hero = session.get(Hero, hero_id) 2zbbbAbcbBbdbCbebDbfbEbgb

102 if not hero: 2zbbbAbcbBbdbCbebDbfbEbgb

103 raise HTTPException(status_code=404, detail="Hero not found") 2zbAbBbCbDbEb

104 session.delete(hero) 2bbcbdbebfbgb

105 session.commit() 2bbcbdbebfbgb

106 return {"ok": True} 2bbcbdbebfbgb