diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/playwright/test_profiles.py | 27 | 
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/playwright/test_profiles.py b/tests/playwright/test_profiles.py new file mode 100644 index 0000000..40d8ba8 --- /dev/null +++ b/tests/playwright/test_profiles.py @@ -0,0 +1,27 @@ +from playwright.sync_api import Page, expect + +from .conftest import Helper + + +def test_forbidden(page: Page, playwright_helper: Helper): +    john = playwright_helper.john_doe() + +    with page.expect_response(lambda resp: resp.status == 403): +        page.goto(f"/user/{john.id}") + + +def test_profile(page: Page, playwright_helper: Helper): +    playwright_helper.login() + +    page.goto("/") +    page.get_by_role("button", name="User").click() +    page.get_by_role("link", name="Profile").click() + +    expect(page.locator("#profileLength")).to_have_text("0 km") +    expect(page.locator("#profileUphill")).to_have_text("0 m") +    expect(page.locator("#profileDownhill")).to_have_text("0 m") +    expect(page.locator("#profileMovingTime")).to_have_text("0:00:00") +    expect(page.locator("#profileStoppedTime")).to_have_text("0:00:00") +    expect(page.locator("#profileMaxSpeed")).to_have_text("0 km/h") +    expect(page.locator("#profileAvgSpeed")).to_have_text("0 km/h") +    expect(page.locator("#profileNumberOfTracks")).to_have_text("0")  | 
