test_unit.py 495 B

12345678910111213141516171819202122232425
  1. """
  2. encoding: UTF-8
  3. @author:clx
  4. @file:test_unit.py
  5. @time:2023/5/30 20:06
  6. """
  7. import uvicorn
  8. from fastapi import FastAPI
  9. from fastapi.testclient import TestClient
  10. import pytest
  11. app = FastAPI()
  12. client = TestClient(app)
  13. def test_create_file():
  14. response = client.get("/item/res")
  15. assert response.status_code == 200
  16. assert response.json() == [
  17. {"id": 1, "name": "jack"},
  18. {"id": 2, "name": "mark"},
  19. {"id": 3, "name": "tom"},
  20. {"id": 4, "name": "sery"}
  21. ]