2020-08-01 03:43:15 +02:00
|
|
|
"use strict";
|
|
|
|
|
2020-11-30 23:46:45 +01:00
|
|
|
const {strict: assert} = require("assert");
|
|
|
|
|
2020-07-25 02:02:35 +02:00
|
|
|
const _ = require("lodash");
|
|
|
|
|
2021-03-11 05:43:45 +01:00
|
|
|
const {mock_cjs, mock_esm, set_global, zrequire} = require("../zjsunit/namespace");
|
2020-12-01 00:39:47 +01:00
|
|
|
const {run_test} = require("../zjsunit/test");
|
2021-02-21 15:38:51 +01:00
|
|
|
const $ = require("../zjsunit/zjquery");
|
2020-12-01 00:02:16 +01:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
set_global("document", "document-stub");
|
2018-03-22 23:34:40 +01:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const noop = () => {};
|
2018-03-22 23:34:40 +01:00
|
|
|
|
2021-03-11 05:43:45 +01:00
|
|
|
mock_cjs("jquery", $);
|
|
|
|
|
2020-07-02 01:55:18 +02:00
|
|
|
function MessageListView() {
|
|
|
|
return {};
|
|
|
|
}
|
2021-03-10 06:10:32 +01:00
|
|
|
mock_esm("../../static/js/message_list_view", {
|
2021-02-28 00:46:47 +01:00
|
|
|
MessageListView,
|
|
|
|
});
|
2018-03-22 23:34:40 +01:00
|
|
|
|
2021-03-10 06:10:32 +01:00
|
|
|
mock_esm("../../static/js/recent_topics", {
|
2020-05-22 08:16:08 +02:00
|
|
|
process_messages: noop,
|
|
|
|
});
|
2020-06-06 16:35:50 +02:00
|
|
|
// Still required for page_params.initial_pointer
|
2020-07-15 01:29:15 +02:00
|
|
|
set_global("page_params", {});
|
2021-03-10 06:10:32 +01:00
|
|
|
mock_esm("../../static/js/ui_report", {
|
2018-02-25 13:01:38 +01:00
|
|
|
hide_error: noop,
|
|
|
|
});
|
2020-06-07 21:20:49 +02:00
|
|
|
|
2021-03-10 06:10:32 +01:00
|
|
|
const channel = mock_esm("../../static/js/channel");
|
|
|
|
const message_store = mock_esm("../../static/js/message_store");
|
|
|
|
const message_util = mock_esm("../../static/js/message_util");
|
|
|
|
const pm_list = mock_esm("../../static/js/pm_list");
|
|
|
|
const server_events = mock_esm("../../static/js/server_events");
|
|
|
|
const stream_list = mock_esm("../../static/js/stream_list", {
|
2021-03-07 13:57:14 +01:00
|
|
|
maybe_scroll_narrow_into_view: () => {},
|
|
|
|
});
|
2021-03-10 06:10:32 +01:00
|
|
|
mock_esm("../../static/js/message_scroll", {
|
2020-06-15 12:47:11 +02:00
|
|
|
show_loading_older: noop,
|
|
|
|
hide_loading_older: noop,
|
2020-05-26 16:27:06 +02:00
|
|
|
show_loading_newer: noop,
|
|
|
|
hide_loading_newer: noop,
|
2020-06-14 12:33:12 +02:00
|
|
|
update_top_of_narrow_notices: () => {},
|
2020-05-26 16:27:06 +02:00
|
|
|
});
|
2021-03-06 17:37:51 +01:00
|
|
|
set_global("document", "document-stub");
|
|
|
|
|
2020-12-01 23:21:38 +01:00
|
|
|
const message_fetch = zrequire("message_fetch");
|
2021-03-06 17:37:51 +01:00
|
|
|
|
zjsunit: Remove rewiremock dependency.
We now just use a module._load hook to inject
stubs into our code.
For conversion purposes I temporarily maintain
the API of rewiremock, apart from the enable/disable
pieces, but I will make a better wrapper in an
upcoming commit.
We can detect when rewiremock is called after
zrequire now, and I fix all the violations in
this commit, mostly by using override.
We can also detect when a mock is needlessly
created, and I fix all the violations in this
commit.
The one minor nuisance that this commit introduces
is that you can only stub out modules in the Zulip
source tree, which is now static/js. This should
not really be a problem--there are usually better
techniques to deal with third party depenencies.
In the prior commit I show a typical workaround,
which is to create a one-line wrapper in your
test code. It's often the case that you can simply
use override(), as well.
In passing I kill off `reset_modules`, and I
eliminated the second argument to zrequire,
which dates back to pre-es6 days.
2021-03-06 12:47:54 +01:00
|
|
|
const {Filter} = zrequire("../js/filter");
|
2020-12-01 23:21:38 +01:00
|
|
|
const message_list = zrequire("message_list");
|
|
|
|
const people = zrequire("people");
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const alice = {
|
2020-07-15 01:29:15 +02:00
|
|
|
email: "alice@example.com",
|
2019-07-11 18:54:28 +02:00
|
|
|
user_id: 7,
|
2020-07-15 01:29:15 +02:00
|
|
|
full_name: "Alice",
|
2019-07-11 18:54:28 +02:00
|
|
|
};
|
2020-05-26 22:34:15 +02:00
|
|
|
people.add_active_user(alice);
|
2019-07-11 18:54:28 +02:00
|
|
|
|
2018-03-22 23:34:40 +01:00
|
|
|
server_events.home_view_loaded = noop;
|
|
|
|
|
|
|
|
function stub_message_view(list) {
|
|
|
|
list.view.append = noop;
|
|
|
|
list.view.maybe_rerender = noop;
|
|
|
|
list.view.prepend = noop;
|
|
|
|
}
|
|
|
|
|
|
|
|
function make_home_msg_list() {
|
2020-07-15 01:29:15 +02:00
|
|
|
const table_name = "whatever";
|
2019-11-02 00:06:25 +01:00
|
|
|
const filter = new Filter();
|
2018-03-22 23:34:40 +01:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const list = new message_list.MessageList({
|
2020-07-20 22:18:43 +02:00
|
|
|
table_name,
|
|
|
|
filter,
|
2018-05-14 15:46:25 +02:00
|
|
|
});
|
2018-03-22 23:34:40 +01:00
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
function make_all_list() {
|
2018-05-14 15:46:25 +02:00
|
|
|
return new message_list.MessageList({});
|
2018-03-22 23:34:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function reset_lists() {
|
2020-07-15 01:29:15 +02:00
|
|
|
set_global("home_msg_list", make_home_msg_list());
|
|
|
|
set_global("current_msg_list", home_msg_list);
|
2021-02-28 21:31:33 +01:00
|
|
|
message_list.__Rewire__("all", make_all_list());
|
2018-03-22 23:34:40 +01:00
|
|
|
stub_message_view(home_msg_list);
|
|
|
|
stub_message_view(message_list.all);
|
|
|
|
}
|
|
|
|
|
|
|
|
function config_fake_channel(conf) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const self = {};
|
|
|
|
let called;
|
2020-11-05 20:03:11 +01:00
|
|
|
let called_with_newest_flag = false;
|
2018-03-22 23:34:40 +01:00
|
|
|
|
2021-02-23 14:37:26 +01:00
|
|
|
channel.get = (opts) => {
|
2020-11-05 20:03:11 +01:00
|
|
|
assert.equal(opts.url, "/json/messages");
|
|
|
|
// There's a separate call with anchor="newest" that happens
|
|
|
|
// unconditionally; do basic verfication of that call.
|
|
|
|
if (opts.data.anchor === "newest") {
|
|
|
|
if (!called_with_newest_flag) {
|
|
|
|
called_with_newest_flag = true;
|
|
|
|
assert.equal(opts.data.num_after, 0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
throw new Error("Only one 'newest' call allowed");
|
|
|
|
}
|
|
|
|
|
2020-06-16 17:58:37 +02:00
|
|
|
if (called && !conf.can_call_again) {
|
2020-10-07 13:01:09 +02:00
|
|
|
throw new Error("only use this for one call");
|
2018-03-22 23:34:40 +01:00
|
|
|
}
|
2020-06-16 17:58:37 +02:00
|
|
|
if (!conf.can_call_again) {
|
|
|
|
assert(self.success === undefined);
|
|
|
|
}
|
2018-03-22 23:34:40 +01:00
|
|
|
assert.deepEqual(opts.data, conf.expected_opts_data);
|
|
|
|
self.success = opts.success;
|
|
|
|
called = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
function config_process_results(messages) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const self = {};
|
2018-03-22 23:34:40 +01:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const messages_processed_for_bools = [];
|
2018-03-22 23:34:40 +01:00
|
|
|
|
2021-02-23 14:37:26 +01:00
|
|
|
message_store.set_message_booleans = (message) => {
|
2018-03-22 23:34:40 +01:00
|
|
|
messages_processed_for_bools.push(message);
|
|
|
|
};
|
|
|
|
|
2020-07-02 01:39:34 +02:00
|
|
|
message_store.add_message_metadata = (message) => message;
|
2020-02-08 01:27:04 +01:00
|
|
|
|
2021-02-23 14:37:26 +01:00
|
|
|
message_util.do_unread_count_updates = (arg) => {
|
2018-03-22 23:34:40 +01:00
|
|
|
assert.deepEqual(arg, messages);
|
|
|
|
};
|
|
|
|
|
2021-02-23 14:37:26 +01:00
|
|
|
message_util.add_old_messages = (new_messages, msg_list) => {
|
2018-03-22 23:34:40 +01:00
|
|
|
assert.deepEqual(new_messages, messages);
|
2019-01-08 01:26:02 +01:00
|
|
|
msg_list.add_messages(new_messages);
|
2018-03-22 23:34:40 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
stream_list.update_streams_sidebar = noop;
|
|
|
|
|
|
|
|
pm_list.update_private_messages = noop;
|
|
|
|
|
2021-02-23 14:37:26 +01:00
|
|
|
self.verify = () => {
|
2018-03-22 23:34:40 +01:00
|
|
|
assert.deepEqual(messages_processed_for_bools, messages);
|
|
|
|
};
|
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
function message_range(start, end) {
|
2020-07-02 01:39:34 +02:00
|
|
|
return _.range(start, end).map((idx) => ({
|
js: Convert _.map(a, …) to a.map(…).
And convert the corresponding function expressions to arrow style
while we’re here.
import * as babelParser from "recast/parsers/babel";
import * as recast from "recast";
import * as tsParser from "recast/parsers/typescript";
import { builders as b, namedTypes as n } from "ast-types";
import K from "ast-types/gen/kinds";
import fs from "fs";
import path from "path";
import process from "process";
const checkExpression = (node: n.Node): node is K.ExpressionKind =>
n.Expression.check(node);
for (const file of process.argv.slice(2)) {
console.log("Parsing", file);
const ast = recast.parse(fs.readFileSync(file, { encoding: "utf8" }), {
parser: path.extname(file) === ".ts" ? tsParser : babelParser,
});
let changed = false;
recast.visit(ast, {
visitCallExpression(path) {
const { callee, arguments: args } = path.node;
if (
n.MemberExpression.check(callee) &&
!callee.computed &&
n.Identifier.check(callee.object) &&
callee.object.name === "_" &&
n.Identifier.check(callee.property) &&
callee.property.name === "map" &&
args.length === 2 &&
checkExpression(args[0]) &&
checkExpression(args[1])
) {
const [arr, fn] = args;
path.replace(
b.callExpression(b.memberExpression(arr, b.identifier("map")), [
n.FunctionExpression.check(fn) ||
n.ArrowFunctionExpression.check(fn)
? b.arrowFunctionExpression(
fn.params,
n.BlockStatement.check(fn.body) &&
fn.body.body.length === 1 &&
n.ReturnStatement.check(fn.body.body[0])
? fn.body.body[0].argument || b.identifier("undefined")
: fn.body
)
: fn,
])
);
changed = true;
}
this.traverse(path);
},
});
if (changed) {
console.log("Writing", file);
fs.writeFileSync(file, recast.print(ast).code, { encoding: "utf8" });
}
}
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-02-08 02:43:49 +01:00
|
|
|
id: idx,
|
|
|
|
}));
|
2018-03-22 23:34:40 +01:00
|
|
|
}
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const initialize_data = {
|
2018-03-22 23:34:40 +01:00
|
|
|
initial_fetch: {
|
|
|
|
req: {
|
2020-07-15 01:29:15 +02:00
|
|
|
anchor: "first_unread",
|
2018-03-22 23:34:40 +01:00
|
|
|
num_before: 200,
|
|
|
|
num_after: 200,
|
|
|
|
client_gravatar: true,
|
|
|
|
},
|
|
|
|
resp: {
|
|
|
|
messages: message_range(201, 801),
|
|
|
|
found_newest: false,
|
2020-02-19 22:45:57 +01:00
|
|
|
anchor: 444,
|
2018-03-22 23:34:40 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
forward_fill: {
|
|
|
|
req: {
|
2020-07-15 01:29:15 +02:00
|
|
|
anchor: "800",
|
2018-03-22 23:34:40 +01:00
|
|
|
num_before: 0,
|
|
|
|
num_after: 1000,
|
|
|
|
client_gravatar: true,
|
|
|
|
},
|
|
|
|
resp: {
|
|
|
|
messages: message_range(800, 1000),
|
|
|
|
found_newest: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
back_fill: {
|
|
|
|
req: {
|
2020-07-15 01:29:15 +02:00
|
|
|
anchor: "201",
|
2018-03-22 23:34:40 +01:00
|
|
|
num_before: 1000,
|
|
|
|
num_after: 0,
|
|
|
|
client_gravatar: true,
|
|
|
|
},
|
|
|
|
resp: {
|
|
|
|
messages: message_range(100, 200),
|
|
|
|
found_oldest: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
function test_fetch_success(opts) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const response = opts.response;
|
|
|
|
const messages = response.messages;
|
2018-03-22 23:34:40 +01:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const process_results = config_process_results(messages);
|
2018-03-22 23:34:40 +01:00
|
|
|
opts.fetch.success(response);
|
|
|
|
process_results.verify();
|
|
|
|
}
|
|
|
|
|
|
|
|
function initial_fetch_step() {
|
2019-11-02 00:06:25 +01:00
|
|
|
const self = {};
|
2018-03-22 23:34:40 +01:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
let fetch;
|
|
|
|
const response = initialize_data.initial_fetch.resp;
|
2018-03-22 23:34:40 +01:00
|
|
|
|
2021-02-23 14:37:26 +01:00
|
|
|
self.prep = () => {
|
2018-03-22 23:34:40 +01:00
|
|
|
fetch = config_fake_channel({
|
|
|
|
expected_opts_data: initialize_data.initial_fetch.req,
|
|
|
|
});
|
|
|
|
|
|
|
|
message_fetch.initialize();
|
|
|
|
};
|
|
|
|
|
2021-02-23 14:37:26 +01:00
|
|
|
self.finish = () => {
|
2018-03-22 23:34:40 +01:00
|
|
|
test_fetch_success({
|
2020-07-20 22:18:43 +02:00
|
|
|
fetch,
|
|
|
|
response,
|
2018-03-22 23:34:40 +01:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
function forward_fill_step() {
|
2019-11-02 00:06:25 +01:00
|
|
|
const self = {};
|
2018-03-22 23:34:40 +01:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
let fetch;
|
2018-03-22 23:34:40 +01:00
|
|
|
|
2021-02-23 14:37:26 +01:00
|
|
|
self.prep = () => {
|
2018-03-22 23:34:40 +01:00
|
|
|
fetch = config_fake_channel({
|
|
|
|
expected_opts_data: initialize_data.forward_fill.req,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2021-02-23 14:37:26 +01:00
|
|
|
self.finish = () => {
|
2019-11-02 00:06:25 +01:00
|
|
|
const response = initialize_data.forward_fill.resp;
|
2018-03-22 23:34:40 +01:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
let idle_config;
|
2021-02-23 14:37:26 +01:00
|
|
|
$("document-stub").idle = (config) => {
|
2018-03-22 23:34:40 +01:00
|
|
|
idle_config = config;
|
|
|
|
};
|
|
|
|
|
|
|
|
test_fetch_success({
|
2020-07-20 22:18:43 +02:00
|
|
|
fetch,
|
|
|
|
response,
|
2018-03-22 23:34:40 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
assert.equal(idle_config.idle, 10000);
|
|
|
|
|
|
|
|
return idle_config;
|
|
|
|
};
|
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
function test_backfill_idle(idle_config) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const fetch = config_fake_channel({
|
2018-03-22 23:34:40 +01:00
|
|
|
expected_opts_data: initialize_data.back_fill.req,
|
|
|
|
});
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const response = initialize_data.back_fill.resp;
|
2018-03-22 23:34:40 +01:00
|
|
|
|
|
|
|
idle_config.onIdle();
|
|
|
|
|
|
|
|
test_fetch_success({
|
2020-07-20 22:18:43 +02:00
|
|
|
fetch,
|
|
|
|
response,
|
2018-03-22 23:34:40 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
run_test("initialize", () => {
|
2018-03-22 23:34:40 +01:00
|
|
|
reset_lists();
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const step1 = initial_fetch_step();
|
2018-03-22 23:34:40 +01:00
|
|
|
|
|
|
|
step1.prep();
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const step2 = forward_fill_step();
|
2018-03-22 23:34:40 +01:00
|
|
|
|
|
|
|
step2.prep();
|
|
|
|
step1.finish();
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const idle_config = step2.finish();
|
2018-03-22 23:34:40 +01:00
|
|
|
|
|
|
|
test_backfill_idle(idle_config);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2018-03-23 17:32:24 +01:00
|
|
|
|
|
|
|
function simulate_narrow() {
|
2019-11-02 00:06:25 +01:00
|
|
|
const filter = {
|
2020-02-08 03:20:02 +01:00
|
|
|
predicate: () => () => false,
|
2020-11-20 14:01:12 +01:00
|
|
|
public_operators: () => [{operator: "pm-with", operand: alice.email}],
|
2018-03-23 17:32:24 +01:00
|
|
|
};
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const msg_list = new message_list.MessageList({
|
2020-07-15 01:29:15 +02:00
|
|
|
table_name: "zfilt",
|
2020-07-20 22:18:43 +02:00
|
|
|
filter,
|
2018-05-14 15:46:25 +02:00
|
|
|
});
|
2020-07-15 01:29:15 +02:00
|
|
|
set_global("current_msg_list", msg_list);
|
2018-03-23 17:32:24 +01:00
|
|
|
|
|
|
|
return msg_list;
|
|
|
|
}
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
run_test("loading_newer", () => {
|
2018-03-23 17:32:24 +01:00
|
|
|
function test_dup_new_fetch(msg_list) {
|
2020-05-30 09:45:12 +02:00
|
|
|
assert.equal(msg_list.data.fetch_status.can_load_newer_messages(), false);
|
2018-03-23 17:32:24 +01:00
|
|
|
message_fetch.maybe_load_newer_messages({
|
2020-07-20 22:18:43 +02:00
|
|
|
msg_list,
|
2018-03-23 17:32:24 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function test_happy_path(opts) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const msg_list = opts.msg_list;
|
|
|
|
const data = opts.data;
|
2018-03-23 17:32:24 +01:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const fetch = config_fake_channel({
|
2018-03-23 17:32:24 +01:00
|
|
|
expected_opts_data: data.req,
|
2020-06-16 17:58:37 +02:00
|
|
|
can_call_again: true,
|
2018-03-23 17:32:24 +01:00
|
|
|
});
|
|
|
|
|
2020-06-06 16:35:50 +02:00
|
|
|
// The msg_list is empty and we are calling frontfill, which should
|
|
|
|
// raise fatal error.
|
|
|
|
if (opts.empty_msg_list) {
|
|
|
|
assert.throws(
|
|
|
|
() => {
|
|
|
|
message_fetch.maybe_load_newer_messages({
|
2020-07-20 22:18:43 +02:00
|
|
|
msg_list,
|
2020-06-06 16:35:50 +02:00
|
|
|
show_loading: noop,
|
|
|
|
hide_loading: noop,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Error",
|
|
|
|
message: "There are no message available to frontfill.",
|
2020-07-02 02:16:03 +02:00
|
|
|
},
|
2020-06-06 16:35:50 +02:00
|
|
|
);
|
|
|
|
} else {
|
|
|
|
message_fetch.maybe_load_newer_messages({
|
2020-07-20 22:18:43 +02:00
|
|
|
msg_list,
|
2020-06-06 16:35:50 +02:00
|
|
|
show_loading: noop,
|
|
|
|
hide_loading: noop,
|
|
|
|
});
|
|
|
|
|
|
|
|
test_dup_new_fetch(msg_list);
|
|
|
|
|
|
|
|
test_fetch_success({
|
2020-07-20 22:18:43 +02:00
|
|
|
fetch,
|
2020-06-06 16:35:50 +02:00
|
|
|
response: data.resp,
|
|
|
|
});
|
|
|
|
}
|
2018-03-23 17:32:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
(function test_narrow() {
|
2019-11-02 00:06:25 +01:00
|
|
|
const msg_list = simulate_narrow();
|
2018-03-23 17:32:24 +01:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const data = {
|
2018-03-23 17:32:24 +01:00
|
|
|
req: {
|
2020-07-15 01:29:15 +02:00
|
|
|
anchor: "444",
|
2018-03-23 17:32:24 +01:00
|
|
|
num_before: 0,
|
|
|
|
num_after: 100,
|
2019-07-11 18:54:28 +02:00
|
|
|
narrow: `[{"operator":"pm-with","operand":[${alice.user_id}]}]`,
|
2018-03-23 17:32:24 +01:00
|
|
|
client_gravatar: true,
|
|
|
|
},
|
|
|
|
resp: {
|
|
|
|
messages: message_range(500, 600),
|
|
|
|
found_newest: false,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
test_happy_path({
|
2020-07-20 22:18:43 +02:00
|
|
|
msg_list,
|
|
|
|
data,
|
2020-06-06 16:35:50 +02:00
|
|
|
empty_msg_list: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
msg_list.append_to_view = () => {};
|
|
|
|
// Instead of using 444 as page_param.pointer, we
|
|
|
|
// should have a message with that id in the message_list.
|
|
|
|
msg_list.append(message_range(444, 445), false);
|
|
|
|
|
|
|
|
test_happy_path({
|
2020-07-20 22:18:43 +02:00
|
|
|
msg_list,
|
|
|
|
data,
|
2020-06-06 16:35:50 +02:00
|
|
|
empty_msg_list: false,
|
2018-03-23 17:32:24 +01:00
|
|
|
});
|
|
|
|
|
2020-05-30 09:45:12 +02:00
|
|
|
assert.equal(msg_list.data.fetch_status.can_load_newer_messages(), true);
|
2020-05-30 17:34:07 +02:00
|
|
|
|
|
|
|
// The server successfully responded with messages having id's from 500-599.
|
|
|
|
// We test for the case that this was the last batch of messages for the narrow
|
|
|
|
// so no more fetching should occur.
|
|
|
|
// And also while fetching for the above condition the server received a new message
|
|
|
|
// event, updating the last message's id for that narrow to 600 from 599.
|
|
|
|
data.resp.found_newest = true;
|
|
|
|
msg_list.data.fetch_status.update_expected_max_message_id([{id: 600}]);
|
|
|
|
|
|
|
|
test_happy_path({
|
2020-07-20 22:18:43 +02:00
|
|
|
msg_list,
|
|
|
|
data,
|
2020-05-30 17:34:07 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
// To handle this special case we should allow another fetch to occur,
|
|
|
|
// since the last message event's data had been discarded.
|
2020-06-16 17:58:37 +02:00
|
|
|
// This fetch goes on until the newest message has been found.
|
|
|
|
assert.equal(msg_list.data.fetch_status.can_load_newer_messages(), false);
|
2020-07-16 22:35:58 +02:00
|
|
|
})();
|
2018-03-23 17:32:24 +01:00
|
|
|
|
|
|
|
(function test_home() {
|
|
|
|
reset_lists();
|
2019-11-02 00:06:25 +01:00
|
|
|
const msg_list = home_msg_list;
|
2018-03-23 17:32:24 +01:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const data = [
|
2018-03-23 17:32:24 +01:00
|
|
|
{
|
|
|
|
req: {
|
2020-07-15 01:29:15 +02:00
|
|
|
anchor: "444",
|
2018-03-23 17:32:24 +01:00
|
|
|
num_before: 0,
|
|
|
|
num_after: 100,
|
|
|
|
client_gravatar: true,
|
|
|
|
},
|
|
|
|
resp: {
|
|
|
|
messages: message_range(500, 600),
|
|
|
|
found_newest: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
req: {
|
2020-07-15 01:29:15 +02:00
|
|
|
anchor: "599",
|
2018-03-23 17:32:24 +01:00
|
|
|
num_before: 0,
|
|
|
|
num_after: 100,
|
|
|
|
client_gravatar: true,
|
|
|
|
},
|
|
|
|
resp: {
|
|
|
|
messages: message_range(700, 800),
|
|
|
|
found_newest: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
test_happy_path({
|
2020-07-20 22:18:43 +02:00
|
|
|
msg_list,
|
2018-03-23 17:32:24 +01:00
|
|
|
data: data[0],
|
2020-06-06 16:35:50 +02:00
|
|
|
empty_msg_list: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
message_list.all.append_to_view = () => {};
|
|
|
|
message_list.all.append(message_range(444, 445), false);
|
|
|
|
|
|
|
|
test_happy_path({
|
2020-07-20 22:18:43 +02:00
|
|
|
msg_list,
|
2020-06-06 16:35:50 +02:00
|
|
|
data: data[0],
|
|
|
|
empty_msg_list: false,
|
2018-03-23 17:32:24 +01:00
|
|
|
});
|
|
|
|
|
2020-05-30 09:45:12 +02:00
|
|
|
assert.equal(msg_list.data.fetch_status.can_load_newer_messages(), true);
|
2018-03-23 17:32:24 +01:00
|
|
|
|
|
|
|
test_happy_path({
|
2020-07-20 22:18:43 +02:00
|
|
|
msg_list,
|
2018-03-23 17:32:24 +01:00
|
|
|
data: data[1],
|
|
|
|
});
|
|
|
|
|
2020-05-30 09:45:12 +02:00
|
|
|
assert.equal(msg_list.data.fetch_status.can_load_newer_messages(), false);
|
2020-07-16 22:35:58 +02:00
|
|
|
})();
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|