2022-03-18 16:18:44 +01:00
|
|
|
import type {ElementHandle, Page} from "puppeteer";
|
|
|
|
|
2023-02-22 23:04:11 +01:00
|
|
|
import * as common from "./lib/common";
|
2022-03-18 16:18:44 +01:00
|
|
|
|
|
|
|
async function test_subscription_button(page: Page): Promise<void> {
|
|
|
|
const stream_selector = "[data-stream-name='Venice']";
|
|
|
|
const button_selector = `${stream_selector} .sub_unsub_button`;
|
|
|
|
const subscribed_selector = `${button_selector}.checked`;
|
|
|
|
const unsubscribed_selector = `${button_selector}:not(.checked)`;
|
|
|
|
|
|
|
|
async function subscribed(): Promise<ElementHandle | null> {
|
2021-03-27 04:40:48 +01:00
|
|
|
await page.waitForSelector(
|
|
|
|
`xpath///*[${common.has_class_x("stream_settings_header")}]//*[${common.has_class_x(
|
|
|
|
"sub_unsub_button",
|
|
|
|
)} and normalize-space()="Unsubscribe"]`,
|
2022-08-16 12:30:59 +02:00
|
|
|
);
|
2022-03-18 16:18:44 +01:00
|
|
|
return await page.waitForSelector(subscribed_selector, {visible: true});
|
|
|
|
}
|
|
|
|
|
|
|
|
async function unsubscribed(): Promise<ElementHandle | null> {
|
2021-03-27 04:40:48 +01:00
|
|
|
await page.waitForSelector(
|
|
|
|
`xpath///*[${common.has_class_x("stream_settings_header")}]//*[${common.has_class_x(
|
|
|
|
"sub_unsub_button",
|
|
|
|
)} and normalize-space()="Subscribe"]`,
|
2022-08-16 12:30:59 +02:00
|
|
|
);
|
2022-03-18 16:18:44 +01:00
|
|
|
return await page.waitForSelector(unsubscribed_selector, {visible: true});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure that Venice is even in our list of streams.
|
|
|
|
await page.waitForSelector(stream_selector, {visible: true});
|
|
|
|
await page.waitForSelector(button_selector, {visible: true});
|
|
|
|
|
2022-08-16 12:30:59 +02:00
|
|
|
await page.click(stream_selector);
|
|
|
|
|
2022-03-18 16:18:44 +01:00
|
|
|
// Note that we intentionally re-find the button after each click, since
|
|
|
|
// the live-update code may replace the whole row.
|
|
|
|
// We assume Venice is already subscribed, so the first line here
|
|
|
|
// should happen immediately.
|
2023-06-06 01:34:55 +02:00
|
|
|
await (await subscribed())!.click();
|
|
|
|
await (await unsubscribed())!.click();
|
|
|
|
await (await subscribed())!.click();
|
|
|
|
await (await unsubscribed())!.click();
|
|
|
|
await subscribed();
|
2022-03-18 16:18:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
async function subscriptions_tests(page: Page): Promise<void> {
|
|
|
|
await common.log_in(page);
|
|
|
|
await common.open_streams_modal(page);
|
|
|
|
await test_subscription_button(page);
|
|
|
|
}
|
|
|
|
|
|
|
|
common.run_test(subscriptions_tests);
|