Coverage for tests/test_tutorial/test_custom_response/test_tutorial009.py: 100%

12 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2024-08-08 03:53 +0000

1from pathlib import Path 1abcde

2 

3from fastapi.testclient import TestClient 1abcde

4 

5from docs_src.custom_response import tutorial009 1abcde

6from docs_src.custom_response.tutorial009 import app 1abcde

7 

8client = TestClient(app) 1abcde

9 

10 

11def test_get(tmp_path: Path): 1abcde

12 file_path: Path = tmp_path / "large-video-file.mp4" 1abcde

13 tutorial009.some_file_path = str(file_path) 1abcde

14 test_content = b"Fake video bytes" 1abcde

15 file_path.write_bytes(test_content) 1abcde

16 response = client.get("/") 1abcde

17 assert response.content == test_content 1abcde