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