Skip to content

Commit 5784481

Browse files
committed
Add interface testing
1 parent 2faab76 commit 5784481

File tree

6 files changed

+137
-3
lines changed

6 files changed

+137
-3
lines changed

.github/workflows/post.yml

+9-2
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,23 @@ jobs:
2525
cache: 'pip'
2626

2727
- name: Install deps
28-
run: pip install -r requirements.txt
28+
run: |
29+
pip install -r requirements.txt
30+
playwright install
31+
2932
30-
- name: Create Screenshots
33+
- name: Create Screenshots - CLI
3134
run: |
3235
msp simulate --length 1000 --recombination-rate 0.01 --mutation-rate 0.01 100 out.trees
3336
python -m tsbrowse preprocess out.trees
3437
python -m tsbrowse screenshot out.tsbrowse mutations
3538
python -m tsbrowse screenshot out.tsbrowse edges
3639
python -m tsbrowse screenshot out.tsbrowse nodes
3740
41+
- name: Create Screenshots - WEB
42+
run: |
43+
python -m pytest --save-screenshots tests/test_ui.py
44+
3845
- name: Commit Screenshots
3946
run: |
4047
git config --global user.name 'GitHub Action'

.github/workflows/tests.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ jobs:
4646
cache: 'pip'
4747

4848
- name: Install deps
49-
run: pip install -r requirements.txt
49+
run: |
50+
pip install -r requirements.txt
51+
playwright install
5052
5153
- name: Tests with numba
5254
run: coverage run --source=tsbrowse -m pytest -x tests

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,15 @@ tsbrowse is currently in development. To install the latest dev version from git
3333
```
3434
python -m pip install git+https://github.com/tskit-dev/tsbrowse
3535
```
36+
37+
## Development
38+
39+
Test are run with pytest:
40+
41+
`python -m pytest`
42+
43+
To run the UI tests so you can see what the browser is doing use
44+
45+
`python -m pytest --headed --slowmo 1000 tests/test_ui.py`
46+
47+
`playwright codegen` is also useful for writing UI test code.

requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ msprime
99
panel
1010
pre-commit
1111
pytest
12+
pytest-playwright
1213
selenium
1314
tskit
1415
tszip

tests/conftest.py

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
import panel as pn
2+
import pytest
3+
4+
PORT = [6000]
5+
6+
7+
@pytest.fixture
8+
def port():
9+
PORT[0] += 1
10+
return PORT[0]
11+
12+
13+
@pytest.fixture(autouse=True)
14+
def server_cleanup():
15+
"""
16+
Clean up server state after each test.
17+
"""
18+
try:
19+
yield
20+
finally:
21+
pn.state.reset()
22+
23+
24+
def pytest_addoption(parser):
25+
parser.addoption(
26+
"--save-screenshots",
27+
action="store_true",
28+
default=False,
29+
help="Save screenshots during tests",
30+
)

tests/test_ui.py

+82
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
import time
2+
3+
import msprime
4+
import panel as pn
5+
import pytest
6+
from playwright.sync_api import expect
7+
8+
from tsbrowse import app
9+
from tsbrowse import model
10+
from tsbrowse import preprocess
11+
12+
13+
@pytest.fixture
14+
def save_screenshots(request):
15+
return request.config.getoption("--save-screenshots")
16+
17+
18+
def test_component(page, port, tmpdir, save_screenshots):
19+
ts = msprime.sim_ancestry(
20+
10, sequence_length=1000, recombination_rate=1e-2, random_seed=1
21+
)
22+
ts = msprime.sim_mutations(ts, rate=1e-2, random_seed=1)
23+
ts.dump(tmpdir / "test.trees")
24+
preprocess.preprocess(tmpdir / "test.trees", tmpdir / "test.tsbrowse")
25+
26+
tsm = model.TSModel(tmpdir / "test.tsbrowse")
27+
component = app.App(tsm)
28+
29+
url = f"http://localhost:{port}"
30+
server = pn.serve(component.view(), port=port, threaded=True, show=False)
31+
time.sleep(2)
32+
page.goto(url)
33+
34+
page.set_viewport_size({"width": 1920, "height": 1080})
35+
expect(page.get_by_role("link", name="Tree Sequence")).to_be_visible()
36+
# needs tskit 0.5.9
37+
# expect(page.get_by_role("cell", name="Provenance Timestamp")).to_be_visible()
38+
if save_screenshots:
39+
page.screenshot(path="overview.png")
40+
41+
page.get_by_role("button", name="Tables").click()
42+
expect(page.get_by_label("Select Table")).to_be_visible()
43+
expect(page.get_by_placeholder("Enter query expression (e.g")).to_be_visible()
44+
page.get_by_label("Select Table").select_option("trees")
45+
expect(page.get_by_text("total_branch_length")).to_be_visible()
46+
if save_screenshots:
47+
page.screenshot(path="tables.png")
48+
49+
page.get_by_role("button", name="Mutations").click()
50+
expect(page.get_by_text("Log y-axis")).to_be_visible()
51+
expect(page.get_by_title("Reset").locator("div")).to_be_visible()
52+
if save_screenshots:
53+
page.screenshot(path="mutations.png")
54+
# This horrendous selector is needed because the click event is not
55+
# handled be the canvas, but by a floating div on top.
56+
page.locator("div:nth-child(6) > .bk-Canvas > div:nth-child(12)").click(
57+
position={"x": 558, "y": 478}
58+
)
59+
expect(page.get_by_text("Mutation information")).to_be_visible()
60+
expect(page.get_by_text("0.52")).to_be_visible()
61+
if save_screenshots:
62+
page.screenshot(path="mutations-popup.png")
63+
64+
page.get_by_role("button", name="Edges").click()
65+
expect(page.get_by_text("Parent node")).to_be_visible()
66+
expect(page.get_by_title("Reset").locator("div")).to_be_visible()
67+
if save_screenshots:
68+
page.screenshot(path="edges.png")
69+
70+
page.get_by_role("button", name="Trees").click()
71+
expect(page.get_by_text("log y-axis")).to_be_visible()
72+
expect(page.locator(".bk-Canvas > div:nth-child(12)").first).to_be_visible()
73+
if save_screenshots:
74+
page.screenshot(path="trees.png")
75+
76+
page.get_by_role("button", name="Nodes").click()
77+
expect(page.get_by_role("heading", name="Node Flags")).to_be_visible()
78+
expect(page.get_by_title("Reset").locator("div")).to_be_visible()
79+
if save_screenshots:
80+
page.screenshot(path="nodes.png")
81+
82+
server.stop()

0 commit comments

Comments
 (0)