pytest.py 477 B

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