2020-08-01 03:43:15 +02:00
|
|
|
"use strict";
|
|
|
|
|
2020-11-30 23:46:45 +01:00
|
|
|
const {strict: assert} = require("assert");
|
|
|
|
|
2023-02-22 23:04:10 +01:00
|
|
|
const {mock_esm, zrequire} = require("./lib/namespace");
|
|
|
|
const {run_test} = require("./lib/test");
|
|
|
|
const $ = require("./lib/zjquery");
|
2018-04-09 15:22:26 +02:00
|
|
|
|
2023-02-22 23:04:10 +01:00
|
|
|
const list_widget = mock_esm("../src/list_widget");
|
|
|
|
const muted_topics_ui = mock_esm("../src/muted_topics_ui");
|
2021-02-28 00:41:32 +01:00
|
|
|
|
2021-03-27 11:39:36 +01:00
|
|
|
const settings_muted_topics = zrequire("settings_muted_topics");
|
2021-02-10 04:53:22 +01:00
|
|
|
const stream_data = zrequire("stream_data");
|
2022-08-14 15:33:13 +02:00
|
|
|
const user_topics = zrequire("user_topics");
|
2018-04-09 15:22:26 +02:00
|
|
|
|
2021-02-23 14:37:26 +01:00
|
|
|
const noop = () => {};
|
2018-04-09 15:22:26 +02:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const frontend = {
|
2018-12-13 22:26:10 +01:00
|
|
|
stream_id: 101,
|
2020-07-15 01:29:15 +02:00
|
|
|
name: "frontend",
|
2018-12-13 22:26:10 +01:00
|
|
|
};
|
2020-02-09 22:02:55 +01:00
|
|
|
stream_data.add_sub(frontend);
|
2018-12-13 22:26:10 +01:00
|
|
|
|
2022-07-10 01:06:33 +02:00
|
|
|
run_test("settings", ({override}) => {
|
2022-08-14 15:33:13 +02:00
|
|
|
user_topics.add_muted_topic(frontend.stream_id, "js", 1577836800);
|
2021-04-27 12:09:08 +02:00
|
|
|
let populate_list_called = false;
|
2022-07-10 01:06:33 +02:00
|
|
|
override(list_widget, "create", ($container, list) => {
|
|
|
|
assert.deepEqual(list, [
|
2020-02-05 13:14:24 +01:00
|
|
|
{
|
|
|
|
date_muted: 1577836800000,
|
2021-01-02 06:19:48 +01:00
|
|
|
date_muted_str: "Jan\u00A001,\u00A02020",
|
2020-02-05 13:14:24 +01:00
|
|
|
stream: frontend.name,
|
|
|
|
stream_id: frontend.stream_id,
|
2020-07-15 01:29:15 +02:00
|
|
|
topic: "js",
|
2020-07-15 00:34:28 +02:00
|
|
|
},
|
|
|
|
]);
|
2021-04-27 12:09:08 +02:00
|
|
|
populate_list_called = true;
|
|
|
|
});
|
2018-04-09 15:22:26 +02:00
|
|
|
|
2021-03-27 11:39:36 +01:00
|
|
|
settings_muted_topics.reset();
|
|
|
|
assert.equal(settings_muted_topics.loaded, false);
|
2020-07-12 00:13:47 +02:00
|
|
|
|
2021-03-27 11:39:36 +01:00
|
|
|
settings_muted_topics.set_up();
|
|
|
|
assert.equal(settings_muted_topics.loaded, true);
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(populate_list_called);
|
2018-04-09 15:22:26 +02:00
|
|
|
|
2021-01-03 12:28:09 +01:00
|
|
|
const topic_click_handler = $("body").get_on_handler("click", ".settings-unmute-topic");
|
|
|
|
assert.equal(typeof topic_click_handler, "function");
|
2018-04-09 15:22:26 +02:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const event = {
|
2021-04-17 13:59:43 +02:00
|
|
|
stopPropagation: noop,
|
2018-04-09 15:22:26 +02:00
|
|
|
};
|
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
const $topic_fake_this = $.create("fake.settings-unmute-topic");
|
|
|
|
const $topic_tr_html = $('tr[data-topic="js"]');
|
|
|
|
$topic_fake_this.closest = (opts) => {
|
2020-07-15 01:29:15 +02:00
|
|
|
assert.equal(opts, "tr");
|
2022-01-25 11:36:19 +01:00
|
|
|
return $topic_tr_html;
|
2018-04-09 15:22:26 +02:00
|
|
|
};
|
|
|
|
|
2021-01-03 12:28:09 +01:00
|
|
|
let topic_data_called = 0;
|
2022-01-25 11:36:19 +01:00
|
|
|
$topic_tr_html.attr = (opts) => {
|
2022-04-09 23:44:38 +02:00
|
|
|
topic_data_called += 1;
|
|
|
|
switch (opts) {
|
|
|
|
case "data-stream-id":
|
|
|
|
return frontend.stream_id;
|
|
|
|
case "data-topic":
|
|
|
|
return "js";
|
|
|
|
/* istanbul ignore next */
|
|
|
|
default:
|
|
|
|
throw new Error(`Unknown attribute ${opts}`);
|
2018-04-09 15:22:26 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-01-03 12:28:09 +01:00
|
|
|
let unmute_topic_called = false;
|
2021-07-08 20:36:52 +02:00
|
|
|
muted_topics_ui.unmute_topic = (stream_id, topic) => {
|
2018-12-14 17:20:35 +01:00
|
|
|
assert.equal(stream_id, frontend.stream_id);
|
2020-07-15 01:29:15 +02:00
|
|
|
assert.equal(topic, "js");
|
2021-01-03 12:28:09 +01:00
|
|
|
unmute_topic_called = true;
|
2018-04-09 15:22:26 +02:00
|
|
|
};
|
2022-01-25 11:36:19 +01:00
|
|
|
topic_click_handler.call($topic_fake_this, event);
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(unmute_topic_called);
|
2021-01-03 12:28:09 +01:00
|
|
|
assert.equal(topic_data_called, 2);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|