Browse Source

Simplify tests for background_tasks (#13166)

pull/13184/head
Alejandra 3 months ago
committed by GitHub
parent
commit
44adb29ce1
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 23
      tests/test_tutorial/test_background_tasks/test_tutorial002.py
  2. 19
      tests/test_tutorial/test_background_tasks/test_tutorial002_an.py
  3. 21
      tests/test_tutorial/test_background_tasks/test_tutorial002_an_py310.py
  4. 21
      tests/test_tutorial/test_background_tasks/test_tutorial002_an_py39.py
  5. 21
      tests/test_tutorial/test_background_tasks/test_tutorial002_py310.py

23
tests/test_tutorial/test_background_tasks/test_tutorial002.py

@ -1,14 +1,31 @@
import importlib
import os
from pathlib import Path
import pytest
from fastapi.testclient import TestClient
from docs_src.background_tasks.tutorial002 import app
from ...utils import needs_py39, needs_py310
client = TestClient(app)
@pytest.fixture(
name="client",
params=[
"tutorial002",
pytest.param("tutorial002_py310", marks=needs_py310),
"tutorial002_an",
pytest.param("tutorial002_an_py39", marks=needs_py39),
pytest.param("tutorial002_an_py310", marks=needs_py310),
],
)
def get_client(request: pytest.FixtureRequest):
mod = importlib.import_module(f"docs_src.background_tasks.{request.param}")
def test():
client = TestClient(mod.app)
return client
def test(client: TestClient):
log = Path("log.txt")
if log.is_file():
os.remove(log) # pragma: no cover

19
tests/test_tutorial/test_background_tasks/test_tutorial002_an.py

@ -1,19 +0,0 @@
import os
from pathlib import Path
from fastapi.testclient import TestClient
from docs_src.background_tasks.tutorial002_an import app
client = TestClient(app)
def test():
log = Path("log.txt")
if log.is_file():
os.remove(log) # pragma: no cover
response = client.post("/send-notification/[email protected]?q=some-query")
assert response.status_code == 200, response.text
assert response.json() == {"message": "Message sent"}
with open("./log.txt") as f:
assert "found query: some-query\nmessage to [email protected]" in f.read()

21
tests/test_tutorial/test_background_tasks/test_tutorial002_an_py310.py

@ -1,21 +0,0 @@
import os
from pathlib import Path
from fastapi.testclient import TestClient
from ...utils import needs_py310
@needs_py310
def test():
from docs_src.background_tasks.tutorial002_an_py310 import app
client = TestClient(app)
log = Path("log.txt")
if log.is_file():
os.remove(log) # pragma: no cover
response = client.post("/send-notification/[email protected]?q=some-query")
assert response.status_code == 200, response.text
assert response.json() == {"message": "Message sent"}
with open("./log.txt") as f:
assert "found query: some-query\nmessage to [email protected]" in f.read()

21
tests/test_tutorial/test_background_tasks/test_tutorial002_an_py39.py

@ -1,21 +0,0 @@
import os
from pathlib import Path
from fastapi.testclient import TestClient
from ...utils import needs_py39
@needs_py39
def test():
from docs_src.background_tasks.tutorial002_an_py39 import app
client = TestClient(app)
log = Path("log.txt")
if log.is_file():
os.remove(log) # pragma: no cover
response = client.post("/send-notification/[email protected]?q=some-query")
assert response.status_code == 200, response.text
assert response.json() == {"message": "Message sent"}
with open("./log.txt") as f:
assert "found query: some-query\nmessage to [email protected]" in f.read()

21
tests/test_tutorial/test_background_tasks/test_tutorial002_py310.py

@ -1,21 +0,0 @@
import os
from pathlib import Path
from fastapi.testclient import TestClient
from ...utils import needs_py310
@needs_py310
def test():
from docs_src.background_tasks.tutorial002_py310 import app
client = TestClient(app)
log = Path("log.txt")
if log.is_file():
os.remove(log) # pragma: no cover
response = client.post("/send-notification/[email protected]?q=some-query")
assert response.status_code == 200, response.text
assert response.json() == {"message": "Message sent"}
with open("./log.txt") as f:
assert "found query: some-query\nmessage to [email protected]" in f.read()
Loading…
Cancel
Save