2020-08-01 03:43:15 +02:00
|
|
|
"use strict";
|
|
|
|
|
2020-11-30 23:46:45 +01:00
|
|
|
const {strict: assert} = require("assert");
|
|
|
|
|
2020-12-01 00:02:16 +01:00
|
|
|
const {zrequire} = require("../zjsunit/namespace");
|
2020-12-01 00:39:47 +01:00
|
|
|
const {run_test} = require("../zjsunit/test");
|
2020-12-01 00:02:16 +01:00
|
|
|
|
2020-08-18 19:53:22 +02:00
|
|
|
const pm_conversations = zrequire("pm_conversations");
|
|
|
|
pm_conversations.recent = {};
|
2017-05-24 02:16:47 +02:00
|
|
|
|
2021-02-10 04:53:22 +01:00
|
|
|
const muting = zrequire("muting");
|
|
|
|
const unread = zrequire("unread");
|
|
|
|
const stream_data = zrequire("stream_data");
|
|
|
|
const stream_topic_history = zrequire("stream_topic_history");
|
|
|
|
const stream_sort = zrequire("stream_sort");
|
2020-07-15 01:29:15 +02:00
|
|
|
const tg = zrequire("topic_generator");
|
2017-04-06 05:40:40 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
run_test("streams", () => {
|
2017-08-16 19:06:07 +02:00
|
|
|
function assert_next_stream(curr_stream, expected) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const actual = tg.get_next_stream(curr_stream);
|
2017-08-16 19:06:07 +02:00
|
|
|
assert.equal(actual, expected);
|
|
|
|
}
|
|
|
|
|
2021-02-23 14:37:26 +01:00
|
|
|
stream_sort.get_streams = () => ["announce", "muted", "devel", "test here"];
|
2017-08-16 19:06:07 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
assert_next_stream(undefined, "announce");
|
|
|
|
assert_next_stream("NOT THERE", "announce");
|
2017-08-16 19:06:07 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
assert_next_stream("announce", "muted");
|
|
|
|
assert_next_stream("test here", "announce");
|
2017-08-16 19:06:07 +02:00
|
|
|
|
|
|
|
function assert_prev_stream(curr_stream, expected) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const actual = tg.get_prev_stream(curr_stream);
|
2017-08-16 19:06:07 +02:00
|
|
|
assert.equal(actual, expected);
|
|
|
|
}
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
assert_prev_stream(undefined, "test here");
|
|
|
|
assert_prev_stream("test here", "devel");
|
|
|
|
assert_prev_stream("announce", "test here");
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2017-04-06 05:40:40 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
run_test("topics", () => {
|
2019-11-02 00:06:25 +01:00
|
|
|
const streams = [1, 2, 3, 4];
|
2020-02-12 08:22:43 +01:00
|
|
|
const topics = new Map([
|
2020-07-15 01:29:15 +02:00
|
|
|
[1, ["read", "read", "1a", "1b", "read", "1c"]],
|
2020-02-12 08:22:43 +01:00
|
|
|
[2, []],
|
2020-07-15 01:29:15 +02:00
|
|
|
[3, ["3a", "read", "read", "3b", "read"]],
|
|
|
|
[4, ["4a"]],
|
2020-02-12 08:22:43 +01:00
|
|
|
]);
|
2017-04-06 05:40:40 +02:00
|
|
|
|
|
|
|
function has_unread_messages(stream, topic) {
|
2020-07-15 01:29:15 +02:00
|
|
|
return topic !== "read";
|
2017-04-06 05:40:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function get_topics(stream) {
|
2020-02-12 08:22:43 +01:00
|
|
|
return topics.get(stream);
|
2017-04-06 05:40:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function next_topic(curr_stream, curr_topic) {
|
2020-07-15 00:34:28 +02:00
|
|
|
return tg.next_topic(streams, get_topics, has_unread_messages, curr_stream, curr_topic);
|
2017-04-06 05:40:40 +02:00
|
|
|
}
|
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
assert.deepEqual(next_topic(1, "1a"), {stream: 1, topic: "1b"});
|
|
|
|
assert.deepEqual(next_topic(1, undefined), {stream: 1, topic: "1a"});
|
|
|
|
assert.deepEqual(next_topic(2, "bogus"), {stream: 3, topic: "3a"});
|
|
|
|
assert.deepEqual(next_topic(3, "3b"), {stream: 3, topic: "3a"});
|
|
|
|
assert.deepEqual(next_topic(4, "4a"), {stream: 1, topic: "1a"});
|
|
|
|
assert.deepEqual(next_topic(undefined, undefined), {stream: 1, topic: "1a"});
|
2017-04-21 20:36:12 +02:00
|
|
|
|
2021-01-23 02:07:22 +01:00
|
|
|
assert.deepEqual(
|
|
|
|
tg.next_topic(streams, get_topics, () => false, 1, "1a"),
|
|
|
|
undefined,
|
|
|
|
);
|
|
|
|
|
2017-04-21 20:36:12 +02:00
|
|
|
// Now test the deeper function that is wired up to
|
|
|
|
// real functions stream_data/stream_sort/unread.
|
|
|
|
|
2021-02-23 14:37:26 +01:00
|
|
|
stream_sort.get_streams = () => ["announce", "muted", "devel", "test here"];
|
2017-04-21 20:36:12 +02:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const muted_stream_id = 400;
|
|
|
|
const devel_stream_id = 401;
|
2017-04-21 20:36:12 +02:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const stream_id_dct = {
|
2017-07-24 15:15:28 +02:00
|
|
|
muted: muted_stream_id,
|
|
|
|
devel: devel_stream_id,
|
|
|
|
};
|
2017-05-13 19:26:54 +02:00
|
|
|
|
2021-02-28 00:54:32 +01:00
|
|
|
stream_topic_history.__Rewire__("get_recent_topic_names", (stream_id) => {
|
2017-07-24 15:15:28 +02:00
|
|
|
switch (stream_id) {
|
2020-07-15 00:34:28 +02:00
|
|
|
case muted_stream_id:
|
|
|
|
return ["ms-topic1", "ms-topic2"];
|
|
|
|
case devel_stream_id:
|
|
|
|
return ["muted", "python"];
|
2017-05-13 19:26:54 +02:00
|
|
|
}
|
|
|
|
|
2017-07-24 15:15:28 +02:00
|
|
|
return [];
|
2021-02-28 00:54:32 +01:00
|
|
|
});
|
2017-07-24 15:15:28 +02:00
|
|
|
|
2021-02-28 00:53:59 +01:00
|
|
|
stream_data.__Rewire__("get_stream_id", (stream_name) => stream_id_dct[stream_name]);
|
2017-05-13 19:26:54 +02:00
|
|
|
|
2021-02-28 00:53:59 +01:00
|
|
|
stream_data.__Rewire__("is_stream_muted_by_name", (stream_name) => stream_name === "muted");
|
2017-05-17 16:58:06 +02:00
|
|
|
|
2021-02-23 14:37:26 +01:00
|
|
|
unread.topic_has_any_unread = (stream_id) =>
|
|
|
|
[devel_stream_id, muted_stream_id].includes(stream_id);
|
2017-05-17 16:33:41 +02:00
|
|
|
|
2021-02-28 00:41:04 +01:00
|
|
|
muting.__Rewire__("is_topic_muted", (stream_name, topic) => topic === "muted");
|
2017-04-21 20:36:12 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
let next_item = tg.get_next_topic("announce", "whatever");
|
2017-04-21 20:36:12 +02:00
|
|
|
assert.deepEqual(next_item, {
|
2020-07-15 01:29:15 +02:00
|
|
|
stream: "devel",
|
|
|
|
topic: "python",
|
2017-04-21 20:36:12 +02:00
|
|
|
});
|
2017-08-17 10:27:47 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
next_item = tg.get_next_topic("muted", undefined);
|
2017-08-17 10:27:47 +02:00
|
|
|
assert.deepEqual(next_item, {
|
2020-07-15 01:29:15 +02:00
|
|
|
stream: "muted",
|
|
|
|
topic: "ms-topic1",
|
2017-08-17 10:27:47 +02:00
|
|
|
});
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2018-02-09 21:38:53 +01:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
run_test("get_next_unread_pm_string", () => {
|
2021-02-23 14:37:26 +01:00
|
|
|
pm_conversations.recent.get_strings = () => ["1", "read", "2,3", "4", "unk"];
|
2018-02-09 21:38:53 +01:00
|
|
|
|
2021-02-23 14:37:26 +01:00
|
|
|
unread.num_unread_for_person = (user_ids_string) => {
|
2020-07-15 01:29:15 +02:00
|
|
|
if (user_ids_string === "unk") {
|
2020-09-24 07:50:36 +02:00
|
|
|
return undefined;
|
2018-02-09 21:38:53 +01:00
|
|
|
}
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
if (user_ids_string === "read") {
|
2018-02-09 21:38:53 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 5; // random non-zero value
|
|
|
|
};
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
assert.equal(tg.get_next_unread_pm_string(), "1");
|
|
|
|
assert.equal(tg.get_next_unread_pm_string("4"), "1");
|
|
|
|
assert.equal(tg.get_next_unread_pm_string("unk"), "1");
|
|
|
|
assert.equal(tg.get_next_unread_pm_string("4"), "1");
|
|
|
|
assert.equal(tg.get_next_unread_pm_string("1"), "2,3");
|
|
|
|
assert.equal(tg.get_next_unread_pm_string("read"), "2,3");
|
|
|
|
assert.equal(tg.get_next_unread_pm_string("2,3"), "4");
|
2021-01-23 02:07:22 +01:00
|
|
|
|
|
|
|
unread.num_unread_for_person = () => 0;
|
|
|
|
|
|
|
|
assert.equal(tg.get_next_unread_pm_string("2,3"), undefined);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|