2021-02-20 05:52:06 +01:00
|
|
|
import {strict as assert} from "assert";
|
2020-07-30 13:08:45 +02:00
|
|
|
|
2021-02-20 05:52:06 +01:00
|
|
|
import type {Page} from "puppeteer";
|
2020-07-30 13:08:45 +02:00
|
|
|
|
2023-02-22 23:04:11 +01:00
|
|
|
import * as common from "./lib/common";
|
2020-07-30 13:08:45 +02:00
|
|
|
|
|
|
|
const message = "test star";
|
|
|
|
|
2021-02-20 05:52:06 +01:00
|
|
|
async function stars_count(page: Page): Promise<number> {
|
2021-03-27 04:40:48 +01:00
|
|
|
return (await page.$$("#zhome .fa-star:not(.empty-star)")).length;
|
2020-07-30 13:08:45 +02:00
|
|
|
}
|
|
|
|
|
2021-02-20 05:52:06 +01:00
|
|
|
async function toggle_test_star_message(page: Page): Promise<void> {
|
2021-03-27 04:40:48 +01:00
|
|
|
const messagebox = await page.waitForSelector(
|
|
|
|
`xpath/(//*[@id="zhome"]//*[${common.has_class_x(
|
|
|
|
"message_content",
|
|
|
|
)} and normalize-space()="${message}"])[last()]/ancestor::*[${common.has_class_x(
|
|
|
|
"messagebox",
|
|
|
|
)}]`,
|
|
|
|
{visible: true},
|
|
|
|
);
|
|
|
|
assert.ok(messagebox !== null);
|
|
|
|
await messagebox.hover();
|
|
|
|
|
|
|
|
const star_icon = await messagebox.waitForSelector(".star", {visible: true});
|
|
|
|
assert.ok(star_icon !== null);
|
|
|
|
await star_icon.click();
|
2020-07-30 13:08:45 +02:00
|
|
|
}
|
|
|
|
|
2021-02-20 05:52:06 +01:00
|
|
|
async function test_narrow_to_starred_messages(page: Page): Promise<void> {
|
2021-03-31 08:57:11 +02:00
|
|
|
await page.click('#global_filters a[href^="#narrow/is/starred"]');
|
2020-08-30 15:43:14 +02:00
|
|
|
await common.check_messages_sent(page, "zfilt", [["Verona > stars", [message]]]);
|
2020-07-30 13:08:45 +02:00
|
|
|
|
|
|
|
// Go back to all messages narrow.
|
2020-09-20 10:14:24 +02:00
|
|
|
await page.click(".top_left_all_messages");
|
2020-07-30 13:08:45 +02:00
|
|
|
await page.waitForSelector("#zhome .message_row", {visible: true});
|
|
|
|
}
|
|
|
|
|
2021-02-20 05:52:06 +01:00
|
|
|
async function stars_test(page: Page): Promise<void> {
|
2020-07-30 13:08:45 +02:00
|
|
|
await common.log_in(page);
|
2020-09-20 10:14:24 +02:00
|
|
|
await page.click(".top_left_all_messages");
|
|
|
|
await page.waitForSelector("#zhome .message_row", {visible: true});
|
2020-07-30 13:08:45 +02:00
|
|
|
await common.send_message(page, "stream", {
|
2023-08-04 06:46:35 +02:00
|
|
|
stream_name: "Verona",
|
2020-07-30 13:08:45 +02:00
|
|
|
topic: "stars",
|
|
|
|
content: message,
|
|
|
|
});
|
|
|
|
|
|
|
|
assert.strictEqual(await stars_count(page), 0, "Unexpected already starred message(s).");
|
|
|
|
|
|
|
|
await toggle_test_star_message(page);
|
|
|
|
await page.waitForSelector("#zhome .fa-star", {visible: true});
|
2020-08-05 00:51:39 +02:00
|
|
|
assert.strictEqual(
|
|
|
|
await stars_count(page),
|
|
|
|
1,
|
|
|
|
"Failed to ensure 1 starred message after change.",
|
|
|
|
);
|
2020-07-30 13:08:45 +02:00
|
|
|
|
|
|
|
await test_narrow_to_starred_messages(page);
|
2020-08-05 00:51:39 +02:00
|
|
|
assert.strictEqual(
|
|
|
|
await stars_count(page),
|
|
|
|
1,
|
|
|
|
"Message star disappeared after switching views.",
|
|
|
|
);
|
2020-07-30 13:08:45 +02:00
|
|
|
|
|
|
|
await toggle_test_star_message(page);
|
|
|
|
assert.strictEqual(await stars_count(page), 0, "Message was not unstarred correctly.");
|
|
|
|
}
|
|
|
|
|
|
|
|
common.run_test(stars_test);
|