-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathtest_main.py
46 lines (31 loc) · 1.27 KB
/
test_main.py
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
46
import pytest
from fastapi.testclient import TestClient
from main import app
@pytest.fixture
def client():
return TestClient(app)
def test_list_todos_empty(client):
response = client.get("/todos")
assert response.status_code == 200
assert response.json() == {}
def test_list_todo_not_found(client):
response = client.get("/todos/1")
assert response.status_code == 404
assert response.json() == {"detail": "Todo not found"}
def test_add_todo(client):
response = client.post("/todos", params={"todo": "Buy groceries"})
assert response.status_code == 200
assert response.json() == {"todo_id": 1, "todo": "Buy groceries"}
def test_list_todo(client):
client.post("/todos", params={"todo": "Buy groceries"})
response = client.get("/todos/1")
assert response.status_code == 200
assert response.json() == {"todo_id": 1, "todo": "Buy groceries"}
def test_delete_todo(client):
response = client.delete("/todos/1")
assert response.status_code == 200
assert response.json() == {"result": "Todo deleted"}
def test_delete_todo_not_found(client):
response = client.delete("/todos/1")
assert response.status_code == 404
assert response.json() == {"detail": "Todo not found"}