committed by
GitHub
5 changed files with 20 additions and 85 deletions
@ -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() |
|
@ -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() |
|
@ -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() |
|
@ -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…
Reference in new issue