Spaces:
Running
Running
File size: 1,195 Bytes
ebec85b 9d8008e ebec85b 9d8008e ebec85b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
from pathlib import Path
import httpx
import pytest
from starlette.testclient import TestClient
from tutorial import get_app, get_example
EXAMPLES = [f.stem for f in Path("src/tutorial/htmx").glob("*.py") if f.stem not in ["__init__"]]
@pytest.mark.parametrize("example", EXAMPLES)
def test_example_page(client, example):
m = get_example(example)
main_func = next(x for x in m.module.app.routes if m.start_url.endswith(x.path)).name
r = client.get(f"/{m.slug}")
assert r.status_code == 200
assert m.module.DOC.strip().splitlines()[0] in r.text
assert "::" not in r.text
r = client.get(f"/{m.slug}?tab=code")
assert r.status_code == 200
assert m.module.DOC.strip().splitlines()[0] not in r.text
assert f"def {main_func}" in r.text
assert "app, rt = fast_app(" in r.text
assert m.htmx_url in r.text
assert httpx.head(m.htmx_url).status_code == 200
@pytest.mark.parametrize("example", EXAMPLES)
def test_start_url(client, example):
m = get_example(example)
r = client.get(m.start_url)
assert r.status_code == 200
print(r.text)
assert "<html" in r.text
@pytest.fixture
def client():
return TestClient(get_app())
|