Files
zulip/frontend_tests/node_tests/drafts.js
Steve Howell 9c8fa3930f node tests: Eliminate many __Rewire__ calls.
For most functions that we were using __Rewire__ for,
it's better to just use the override helper, which
use __Rewire__ under the hood, but also resets
the reference at the end of run_tests.

Another nice thing about override() is that it reports
when you never actually needed the mock, and this
commit fixes the instances found here.

I didn't replace every call to __Rewire__. The
remaining ones fall under these categories:

    * I looked for ") =>" in my code sweep,
      so I missed stuff like "noop" helpers.

    * Sometimes we directly update something
      in a module that's not a function. This
      is generally evil, and we should use setters.

    * Some tests have setup() helpers or similar
      that complicated this code sweep, so I
      simply punted.

    * Somes modules rely on intra-test leaks. We
      should fix those, but I just punted for the
      main code sweep.
2021-03-07 11:19:33 -05:00

302 lines
8.4 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";
const {strict: assert} = require("assert");
const {stub_templates} = require("../zjsunit/handlebars");
const {mock_module, set_global, zrequire, with_overrides} = require("../zjsunit/namespace");
const {run_test} = require("../zjsunit/test");
const $ = require("../zjsunit/zjquery");
const ls_container = new Map();
const noop = () => {};
const localStorage = set_global("localStorage", {
getItem(key) {
return ls_container.get(key);
},
setItem(key, val) {
ls_container.set(key, val);
},
removeItem(key) {
ls_container.delete(key);
},
clear() {
ls_container.clear();
},
});
const compose_state = mock_module("compose_state");
mock_module("markdown", {
apply_markdown: noop,
});
mock_module("stream_data", {
get_color() {
return "#FFFFFF";
},
});
set_global("page_params", {
twenty_four_hour_time: false,
});
const {localstorage} = zrequire("localstorage");
const drafts = zrequire("drafts");
const timerender = zrequire("timerender");
const legacy_draft = {
stream: "stream",
subject: "lunch",
type: "stream",
content: "whatever",
};
const compose_args_for_legacy_draft = {
stream: "stream",
topic: "lunch",
type: "stream",
content: "whatever",
};
const draft_1 = {
stream: "stream",
topic: "topic",
type: "stream",
content: "Test Stream Message",
};
const draft_2 = {
private_message_recipient: "aaron@zulip.com",
reply_to: "aaron@zulip.com",
type: "private",
content: "Test Private Message",
};
const short_msg = {
stream: "stream",
subject: "topic",
type: "stream",
content: "a",
};
run_test("legacy", () => {
assert.deepEqual(drafts.restore_message(legacy_draft), compose_args_for_legacy_draft);
});
run_test("draft_model add", (override) => {
const draft_model = drafts.draft_model;
const ls = localstorage();
localStorage.clear();
assert.equal(ls.get("draft"), undefined);
override(Date, "now", () => 1);
const expected = {...draft_1};
expected.updatedAt = 1;
const id = draft_model.addDraft({...draft_1});
assert.deepEqual(draft_model.getDraft(id), expected);
});
run_test("draft_model edit", () => {
const draft_model = drafts.draft_model;
const ls = localstorage();
localStorage.clear();
assert.equal(ls.get("draft"), undefined);
let id;
with_overrides((override) => {
override(Date, "now", () => 1);
const expected = {...draft_1};
expected.updatedAt = 1;
id = draft_model.addDraft({...draft_1});
assert.deepEqual(draft_model.getDraft(id), expected);
});
with_overrides((override) => {
override(Date, "now", () => 2);
const expected = {...draft_2};
expected.updatedAt = 2;
draft_model.editDraft(id, {...draft_2});
assert.deepEqual(draft_model.getDraft(id), expected);
});
});
run_test("draft_model delete", (override) => {
const draft_model = drafts.draft_model;
const ls = localstorage();
localStorage.clear();
assert.equal(ls.get("draft"), undefined);
override(Date, "now", () => 1);
const expected = {...draft_1};
expected.updatedAt = 1;
const id = draft_model.addDraft({...draft_1});
assert.deepEqual(draft_model.getDraft(id), expected);
draft_model.deleteDraft(id);
assert.deepEqual(draft_model.getDraft(id), false);
});
run_test("snapshot_message", (override) => {
let curr_draft;
function map(field, f) {
override(compose_state, field, f);
}
map("get_message_type", () => curr_draft.type);
map("composing", () => Boolean(curr_draft.type));
map("message_content", () => curr_draft.content);
map("stream_name", () => curr_draft.stream);
map("topic", () => curr_draft.topic);
map("private_message_recipient", () => curr_draft.private_message_recipient);
curr_draft = draft_1;
assert.deepEqual(drafts.snapshot_message(), draft_1);
curr_draft = draft_2;
assert.deepEqual(drafts.snapshot_message(), draft_2);
curr_draft = short_msg;
assert.deepEqual(drafts.snapshot_message(), undefined);
curr_draft = {};
assert.equal(drafts.snapshot_message(), undefined);
});
run_test("initialize", (override) => {
window.addEventListener = (event_name, f) => {
assert.equal(event_name, "beforeunload");
let called = false;
override(drafts, "update_draft", () => {
called = true;
});
f();
assert(called);
};
drafts.initialize();
const message_content = $("#compose-textarea");
assert.equal(message_content.get_on_handler("focusout"), drafts.update_draft);
message_content.trigger("focusout");
});
run_test("remove_old_drafts", () => {
const draft_3 = {
stream: "stream",
subject: "topic",
type: "stream",
content: "Test Stream Message",
updatedAt: Date.now(),
};
const draft_4 = {
private_message_recipient: "aaron@zulip.com",
reply_to: "aaron@zulip.com",
type: "private",
content: "Test Private Message",
updatedAt: new Date().setDate(-30),
};
const draft_model = drafts.draft_model;
const ls = localstorage();
localStorage.clear();
const data = {id3: draft_3, id4: draft_4};
ls.set("drafts", data);
assert.deepEqual(draft_model.get(), data);
drafts.remove_old_drafts();
assert.deepEqual(draft_model.get(), {id3: draft_3});
});
run_test("format_drafts", (override) => {
override(drafts, "remove_old_drafts", noop);
draft_1.updatedAt = new Date(1549958107000).getTime(); // 2/12/2019 07:55:07 AM (UTC+0)
draft_2.updatedAt = new Date(1549958107000).setDate(-1);
const draft_3 = {
stream: "stream 2",
subject: "topic",
type: "stream",
content: "Test Stream Message 2",
updatedAt: new Date(1549958107000).setDate(-10),
};
const draft_4 = {
private_message_recipient: "aaron@zulip.com",
reply_to: "iago@zulip.com",
type: "private",
content: "Test Private Message 2",
updatedAt: new Date(1549958107000).setDate(-5),
};
const draft_5 = {
private_message_recipient: "aaron@zulip.com",
reply_to: "zoe@zulip.com",
type: "private",
content: "Test Private Message 3",
updatedAt: new Date(1549958107000).setDate(-2),
};
const expected = [
{
draft_id: "id1",
is_stream: true,
stream: "stream",
stream_color: "#FFFFFF",
dark_background: "",
topic: "topic",
raw_content: "Test Stream Message",
time_stamp: "7:55 AM",
},
{
draft_id: "id2",
is_stream: false,
recipients: "aaron@zulip.com",
raw_content: "Test Private Message",
time_stamp: "Jan 30",
},
{
draft_id: "id5",
is_stream: false,
recipients: "aaron@zulip.com",
raw_content: "Test Private Message 3",
time_stamp: "Jan 29",
},
{
draft_id: "id4",
is_stream: false,
recipients: "aaron@zulip.com",
raw_content: "Test Private Message 2",
time_stamp: "Jan 26",
},
{
draft_id: "id3",
is_stream: true,
stream: "stream 2",
stream_color: "#FFFFFF",
dark_background: "",
topic: "topic",
raw_content: "Test Stream Message 2",
time_stamp: "Jan 21",
},
];
$("#drafts_table").append = noop;
const draft_model = drafts.draft_model;
const ls = localstorage();
localStorage.clear();
const data = {id1: draft_1, id2: draft_2, id3: draft_3, id4: draft_4, id5: draft_5};
ls.set("drafts", data);
assert.deepEqual(draft_model.get(), data);
const stub_render_now = timerender.render_now;
override(timerender, "render_now", (time) => stub_render_now(time, new Date(1549958107000)));
stub_templates((template_name, data) => {
assert.equal(template_name, "draft_table_body");
// Tests formatting and sorting of drafts
assert.deepEqual(data.drafts, expected);
return "<draft table stub>";
});
override(drafts, "open_overlay", noop);
drafts.__Rewire__("set_initial_element", noop);
$.create("#drafts_table .draft-row", {children: []});
drafts.launch();
timerender.__Rewire__("render_now", stub_render_now);
});