Browse Source

Merge a737ca663d into 76b324d95b

pull/13543/merge
alv2017 1 day ago
committed by GitHub
parent
commit
e233274a28
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 12
      tests/test_tutorial/test_background_tasks/conftest.py
  2. 8
      tests/test_tutorial/test_background_tasks/test_tutorial001.py
  3. 7
      tests/test_tutorial/test_background_tasks/test_tutorial002.py

12
tests/test_tutorial/test_background_tasks/conftest.py

@ -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

8
tests/test_tutorial/test_background_tasks/test_tutorial001.py

@ -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"}

7
tests/test_tutorial/test_background_tasks/test_tutorial002.py

@ -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…
Cancel
Save