Files
zulip/frontend_tests/node_tests/settings_muting.js
Anders Kaseorg 6ec808b8df js: Add "use strict" directive to CommonJS files.
ES and TypeScript modules are strict by default and don’t need this
directive.  ESLint will remind us to add it to new CommonJS files and
remove it from ES and TypeScript modules.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
2020-07-31 22:09:46 -07:00

84 lines
2.2 KiB
JavaScript
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"use strict";
set_global("$", global.make_zjquery());
set_global("XDate", zrequire("XDate", "xdate"));
zrequire("timerender");
zrequire("settings_muting");
zrequire("stream_data");
zrequire("muting");
set_global("muting_ui", {});
const noop = function () {};
const frontend = {
stream_id: 101,
name: "frontend",
};
stream_data.add_sub(frontend);
run_test("settings", () => {
muting.add_muted_topic(frontend.stream_id, "js", 1577836800);
let set_up_ui_called = false;
muting_ui.set_up_muted_topics_ui = function () {
const opts = muting.get_muted_topics();
assert.deepEqual(opts, [
{
date_muted: 1577836800000,
date_muted_str: "Jan 01",
stream: frontend.name,
stream_id: frontend.stream_id,
topic: "js",
},
]);
set_up_ui_called = true;
};
assert.equal(settings_muting.loaded, false);
settings_muting.set_up();
assert.equal(settings_muting.loaded, true);
const click_handler = $("body").get_on_handler("click", ".settings-unmute-topic");
assert.equal(typeof click_handler, "function");
const event = {
stopImmediatePropagation: noop,
};
const fake_this = $.create("fake.settings-unmute-topic");
const tr_html = $('tr[data-topic="js"]');
fake_this.closest = function (opts) {
assert.equal(opts, "tr");
return tr_html;
};
let data_called = 0;
tr_html.attr = function (opts) {
if (opts === "data-stream-id") {
data_called += 1;
return frontend.stream_id;
}
if (opts === "data-topic") {
data_called += 1;
return "js";
}
};
let unmute_called = false;
muting_ui.unmute = function (stream_id, topic) {
assert.equal(stream_id, frontend.stream_id);
assert.equal(topic, "js");
unmute_called = true;
};
click_handler.call(fake_this, event);
assert(unmute_called);
assert(set_up_ui_called);
assert.equal(data_called, 2);
});
run_test("reset", () => {
settings_muting.reset();
assert.equal(settings_muting.loaded, false);
});