add a playwright test

This commit is contained in:
Valere
2025-07-31 17:46:09 +02:00
parent d294be8bd4
commit 81555c8d51

View File

@@ -72,3 +72,39 @@ test("Should automatically retry non fatal JWT errors", async ({
await hasRetriedPromise;
await expect(page.getByTestId("video").first()).toBeVisible();
});
test("Should show error screen if call creation is restricted", async ({
page,
}) => {
await page.goto("/");
await page.getByTestId("home_callName").click();
await page.getByTestId("home_callName").fill("HelloCall");
await page.getByTestId("home_displayName").click();
await page.getByTestId("home_displayName").fill("John Doe");
await page.getByTestId("home_go").click();
// Simulate when the room was not created prior to the call.
// Livekit will not auto_create anymore and will return a 404 error.
await page.route(
"**/livekit/sfu/rtc/validate?*",
async (route) =>
await route.fulfill({
// 418 is a non retryable error, so test will fail immediately
status: 404,
contentType: "text/plain",
body: "requested room does not exist",
}),
);
// Join the call
await page.getByTestId("lobby_joinCall").click();
// Should fail
await expect(page.getByText("Failed to create call")).toBeVisible();
await expect(
page.getByText(
/Call creation might be restricted to authorized users only/,
),
).toBeVisible();
});