committed by
GitHub
3 changed files with 14 additions and 13 deletions
@ -0,0 +1,12 @@ |
|||
import os |
|||
from pathlib import Path |
|||
|
|||
import pytest |
|||
|
|||
|
|||
@pytest.fixture(name="path_to_log_file") |
|||
def log_path(): |
|||
log = Path("log.txt") |
|||
yield log |
|||
if log.is_file(): |
|||
os.remove(log) # pragma: no cover |
@ -1,6 +1,3 @@ |
|||
import os |
|||
from pathlib import Path |
|||
|
|||
from fastapi.testclient import TestClient |
|||
|
|||
from docs_src.background_tasks.tutorial001 import app |
|||
@ -8,10 +5,7 @@ from docs_src.background_tasks.tutorial001 import app |
|||
client = TestClient(app) |
|||
|
|||
|
|||
def test(): |
|||
log = Path("log.txt") |
|||
if log.is_file(): |
|||
os.remove(log) # pragma: no cover |
|||
def test(path_to_log_file): |
|||
response = client.post("/send-notification/[email protected]") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"message": "Notification sent in the background"} |
|||
|
@ -1,6 +1,4 @@ |
|||
import importlib |
|||
import os |
|||
from pathlib import Path |
|||
|
|||
import pytest |
|||
from fastapi.testclient import TestClient |
|||
@ -25,10 +23,7 @@ def get_client(request: pytest.FixtureRequest): |
|||
return client |
|||
|
|||
|
|||
def test(client: TestClient): |
|||
log = Path("log.txt") |
|||
if log.is_file(): |
|||
os.remove(log) # pragma: no cover |
|||
def test(client: TestClient, path_to_log_file): |
|||
response = client.post("/send-notification/[email protected]?q=some-query") |
|||
assert response.status_code == 200, response.text |
|||
assert response.json() == {"message": "Message sent"} |
|||
|
Loading…
Reference in new issue