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, set_global, with_overrides, zrequire} = require("./lib/namespace");
|
2023-12-14 23:51:33 +01:00
|
|
|
const {run_test, noop} = require("./lib/test");
|
2023-02-22 23:04:10 +01:00
|
|
|
const blueslip = require("./lib/zblueslip");
|
|
|
|
const $ = require("./lib/zjquery");
|
|
|
|
const {page_params, user_settings} = require("./lib/zpage_params");
|
2020-12-01 00:02:16 +01:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
const $window_stub = $.create("window-stub");
|
|
|
|
set_global("to_$", () => $window_stub);
|
2023-12-14 23:51:33 +01:00
|
|
|
$(window).idle = noop;
|
2018-08-01 21:17:03 +02:00
|
|
|
|
|
|
|
const _document = {
|
2020-07-20 22:18:43 +02:00
|
|
|
hasFocus() {
|
2017-01-09 18:20:31 +01:00
|
|
|
return true;
|
|
|
|
},
|
2018-08-01 21:17:03 +02:00
|
|
|
};
|
2017-01-09 18:20:31 +01:00
|
|
|
|
2023-02-22 23:04:10 +01:00
|
|
|
const channel = mock_esm("../src/channel");
|
|
|
|
const compose_state = mock_esm("../src/compose_state");
|
|
|
|
const padded_widget = mock_esm("../src/padded_widget");
|
|
|
|
const pm_list = mock_esm("../src/pm_list");
|
|
|
|
const popovers = mock_esm("../src/popovers");
|
|
|
|
const resize = mock_esm("../src/resize");
|
2023-11-28 18:24:43 +01:00
|
|
|
const settings_data = mock_esm("../src/settings_data");
|
2023-09-28 11:08:09 +02:00
|
|
|
const sidebar_ui = mock_esm("../src/sidebar_ui");
|
2023-02-22 23:04:10 +01:00
|
|
|
const scroll_util = mock_esm("../src/scroll_util");
|
|
|
|
const watchdog = mock_esm("../src/watchdog");
|
2017-05-12 20:16:39 +02:00
|
|
|
|
2021-03-06 17:37:51 +01:00
|
|
|
set_global("document", _document);
|
2020-07-15 01:29:15 +02:00
|
|
|
|
2020-12-01 23:21:38 +01:00
|
|
|
const huddle_data = zrequire("huddle_data");
|
2021-02-10 04:53:22 +01:00
|
|
|
const compose_fade = zrequire("compose_fade");
|
2021-05-18 22:44:11 +02:00
|
|
|
const keydown_util = zrequire("keydown_util");
|
2021-06-27 21:38:26 +02:00
|
|
|
const muted_users = zrequire("muted_users");
|
2021-02-10 04:53:22 +01:00
|
|
|
const presence = zrequire("presence");
|
2020-08-20 21:24:06 +02:00
|
|
|
const people = zrequire("people");
|
2021-02-10 04:53:22 +01:00
|
|
|
const buddy_data = zrequire("buddy_data");
|
2021-02-28 01:13:13 +01:00
|
|
|
const {buddy_list} = zrequire("buddy_list");
|
2021-02-10 04:53:22 +01:00
|
|
|
const activity = zrequire("activity");
|
2023-10-05 10:20:16 +02:00
|
|
|
const activity_ui = zrequire("activity_ui");
|
2023-11-21 03:05:45 +01:00
|
|
|
const util = zrequire("util");
|
2016-11-11 19:30:04 +01:00
|
|
|
|
2018-04-12 23:40:03 +02:00
|
|
|
const me = {
|
2020-07-15 01:29:15 +02:00
|
|
|
email: "me@zulip.com",
|
2017-02-05 00:22:16 +01:00
|
|
|
user_id: 999,
|
2020-07-15 01:29:15 +02:00
|
|
|
full_name: "Me Myself",
|
2017-02-05 00:22:16 +01:00
|
|
|
};
|
|
|
|
|
2018-04-12 23:40:03 +02:00
|
|
|
const alice = {
|
2020-07-15 01:29:15 +02:00
|
|
|
email: "alice@zulip.com",
|
2016-10-30 20:46:57 +01:00
|
|
|
user_id: 1,
|
2020-07-15 01:29:15 +02:00
|
|
|
full_name: "Alice Smith",
|
2016-11-17 21:43:12 +01:00
|
|
|
};
|
2018-04-12 23:40:03 +02:00
|
|
|
const fred = {
|
2020-07-15 01:29:15 +02:00
|
|
|
email: "fred@zulip.com",
|
2016-10-30 20:46:57 +01:00
|
|
|
user_id: 2,
|
2016-12-03 23:17:57 +01:00
|
|
|
full_name: "Fred Flintstone",
|
2016-11-17 21:43:12 +01:00
|
|
|
};
|
2018-04-12 23:40:03 +02:00
|
|
|
const jill = {
|
2020-07-15 01:29:15 +02:00
|
|
|
email: "jill@zulip.com",
|
2016-10-30 20:46:57 +01:00
|
|
|
user_id: 3,
|
2020-07-15 01:29:15 +02:00
|
|
|
full_name: "Jill Hill",
|
2016-11-17 21:43:12 +01:00
|
|
|
};
|
2018-04-12 23:40:03 +02:00
|
|
|
const mark = {
|
2020-07-15 01:29:15 +02:00
|
|
|
email: "mark@zulip.com",
|
2016-10-30 20:46:57 +01:00
|
|
|
user_id: 4,
|
2020-07-15 01:29:15 +02:00
|
|
|
full_name: "Marky Mark",
|
2016-11-17 21:43:12 +01:00
|
|
|
};
|
2018-04-12 23:40:03 +02:00
|
|
|
const norbert = {
|
2020-07-15 01:29:15 +02:00
|
|
|
email: "norbert@zulip.com",
|
2016-10-30 20:46:57 +01:00
|
|
|
user_id: 5,
|
2020-07-15 01:29:15 +02:00
|
|
|
full_name: "Norbert Oswald",
|
2016-11-17 21:43:12 +01:00
|
|
|
};
|
|
|
|
|
2018-04-12 23:40:03 +02:00
|
|
|
const zoe = {
|
2020-07-15 01:29:15 +02:00
|
|
|
email: "zoe@example.com",
|
2017-03-31 00:18:04 +02:00
|
|
|
user_id: 6,
|
2020-07-15 01:29:15 +02:00
|
|
|
full_name: "Zoe Yang",
|
2017-03-31 00:18:04 +02:00
|
|
|
};
|
2016-11-17 21:43:12 +01:00
|
|
|
|
2020-05-26 22:34:15 +02:00
|
|
|
people.add_active_user(alice);
|
|
|
|
people.add_active_user(fred);
|
|
|
|
people.add_active_user(jill);
|
|
|
|
people.add_active_user(mark);
|
|
|
|
people.add_active_user(norbert);
|
|
|
|
people.add_active_user(zoe);
|
|
|
|
people.add_active_user(me);
|
2017-03-31 00:18:04 +02:00
|
|
|
people.initialize_current_user(me.user_id);
|
|
|
|
|
2021-05-18 21:50:13 +02:00
|
|
|
function clear_buddy_list() {
|
|
|
|
buddy_list.populate({
|
2023-11-21 06:08:32 +01:00
|
|
|
all_user_ids: [],
|
2021-05-18 21:50:13 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function test(label, f) {
|
2021-06-28 00:41:05 +02:00
|
|
|
run_test(label, (helpers) => {
|
2021-12-04 01:20:20 +01:00
|
|
|
user_settings.presence_enabled = true;
|
2021-05-18 21:50:13 +02:00
|
|
|
// Simulate a small window by having the
|
|
|
|
// fill_screen_with_content render the entire
|
|
|
|
// list in one pass. We will do more refined
|
|
|
|
// testing in the buddy_list node tests.
|
2021-06-28 00:41:05 +02:00
|
|
|
helpers.override(buddy_list, "fill_screen_with_content", () => {
|
2021-05-18 21:50:13 +02:00
|
|
|
buddy_list.render_more({
|
|
|
|
chunk_size: 100,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2022-07-10 01:06:33 +02:00
|
|
|
presence.presence_info.set(alice.user_id, {status: "active"});
|
|
|
|
presence.presence_info.set(fred.user_id, {status: "active"});
|
|
|
|
presence.presence_info.set(jill.user_id, {status: "active"});
|
|
|
|
presence.presence_info.set(mark.user_id, {status: "idle"});
|
|
|
|
presence.presence_info.set(norbert.user_id, {status: "active"});
|
|
|
|
presence.presence_info.set(zoe.user_id, {status: "active"});
|
|
|
|
presence.presence_info.set(me.user_id, {status: "active"});
|
2021-05-18 22:20:51 +02:00
|
|
|
|
2021-05-18 21:50:13 +02:00
|
|
|
clear_buddy_list();
|
2021-06-27 21:38:26 +02:00
|
|
|
muted_users.set_muted_users([]);
|
2021-05-18 22:47:01 +02:00
|
|
|
|
|
|
|
activity.clear_for_testing();
|
2023-10-05 10:20:16 +02:00
|
|
|
activity_ui.set_cursor_and_filter();
|
2021-05-18 22:47:01 +02:00
|
|
|
|
2021-06-28 00:41:05 +02:00
|
|
|
f(helpers);
|
2022-07-10 01:06:33 +02:00
|
|
|
|
|
|
|
presence.clear_internal_data();
|
2021-05-18 21:50:13 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-05-18 22:47:01 +02:00
|
|
|
run_test("reload_defaults", () => {
|
|
|
|
activity.clear_for_testing();
|
2023-10-05 10:20:16 +02:00
|
|
|
activity_ui.clear_for_testing();
|
2021-02-20 17:02:39 +01:00
|
|
|
blueslip.expect("warn", "get_filter_text() is called before initialization");
|
2023-10-05 10:20:16 +02:00
|
|
|
assert.equal(activity_ui.get_filter_text(), "");
|
2021-02-20 17:02:39 +01:00
|
|
|
});
|
|
|
|
|
2021-05-18 21:50:13 +02:00
|
|
|
test("get_status", () => {
|
2021-04-03 19:07:13 +02:00
|
|
|
page_params.realm_users = [];
|
|
|
|
page_params.user_id = 999;
|
|
|
|
|
2017-04-13 04:28:15 +02:00
|
|
|
assert.equal(presence.get_status(page_params.user_id), "active");
|
2021-05-18 22:20:51 +02:00
|
|
|
assert.equal(presence.get_status(alice.user_id), "active");
|
|
|
|
assert.equal(presence.get_status(mark.user_id), "idle");
|
2017-04-13 04:28:15 +02:00
|
|
|
assert.equal(presence.get_status(fred.user_id), "active");
|
2021-05-18 22:20:51 +02:00
|
|
|
|
2021-12-04 01:20:20 +01:00
|
|
|
user_settings.presence_enabled = false;
|
|
|
|
assert.equal(presence.get_status(page_params.user_id), "offline");
|
|
|
|
user_settings.presence_enabled = true;
|
|
|
|
assert.equal(presence.get_status(page_params.user_id), "active");
|
|
|
|
|
2022-07-10 01:06:33 +02:00
|
|
|
presence.presence_info.delete(zoe.user_id);
|
2017-10-12 18:08:42 +02:00
|
|
|
assert.equal(presence.get_status(zoe.user_id), "offline");
|
2021-05-18 22:20:51 +02:00
|
|
|
|
2022-07-10 01:06:33 +02:00
|
|
|
presence.presence_info.set(alice.user_id, {status: "whatever"});
|
2021-05-18 22:20:51 +02:00
|
|
|
assert.equal(presence.get_status(alice.user_id), "whatever");
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2017-04-13 04:28:15 +02:00
|
|
|
|
2021-05-18 21:50:13 +02:00
|
|
|
test("sort_users", () => {
|
2018-04-12 23:40:03 +02:00
|
|
|
const user_ids = [alice.user_id, fred.user_id, jill.user_id];
|
2013-08-09 14:42:49 +02:00
|
|
|
|
2022-07-10 01:06:33 +02:00
|
|
|
presence.presence_info.delete(alice.user_id);
|
2021-05-18 22:20:51 +02:00
|
|
|
|
2018-04-19 15:46:56 +02:00
|
|
|
buddy_data.sort_users(user_ids);
|
2013-08-09 14:42:49 +02:00
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
assert.deepEqual(user_ids, [fred.user_id, jill.user_id, alice.user_id]);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2013-10-23 20:44:31 +02:00
|
|
|
|
2021-05-18 21:50:13 +02:00
|
|
|
test("huddle_data.process_loaded_messages", () => {
|
2020-05-26 13:58:18 +02:00
|
|
|
// TODO: move this to a module for just testing `huddle_data`
|
2013-10-23 20:44:31 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
const huddle1 = "jill@zulip.com,norbert@zulip.com";
|
2018-04-12 23:40:03 +02:00
|
|
|
const timestamp1 = 1382479029; // older
|
2013-10-23 20:44:31 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
const huddle2 = "alice@zulip.com,fred@zulip.com";
|
2018-04-12 23:40:03 +02:00
|
|
|
const timestamp2 = 1382479033; // newer
|
2013-10-23 20:44:31 +02:00
|
|
|
|
2018-04-12 23:40:03 +02:00
|
|
|
const old_timestamp = 1382479000;
|
2013-10-23 20:44:31 +02:00
|
|
|
|
2018-04-12 23:40:03 +02:00
|
|
|
const messages = [
|
2017-02-05 00:22:16 +01:00
|
|
|
{
|
2020-07-15 01:29:15 +02:00
|
|
|
type: "private",
|
2017-02-05 00:22:16 +01:00
|
|
|
display_recipient: [{id: jill.user_id}, {id: norbert.user_id}],
|
2016-12-03 23:17:57 +01:00
|
|
|
timestamp: timestamp1,
|
2013-10-23 20:44:31 +02:00
|
|
|
},
|
|
|
|
{
|
2020-07-15 01:29:15 +02:00
|
|
|
type: "stream",
|
2013-10-23 20:44:31 +02:00
|
|
|
},
|
2023-06-16 17:37:19 +02:00
|
|
|
// direct message to myself
|
2013-10-23 20:44:31 +02:00
|
|
|
{
|
2020-07-15 01:29:15 +02:00
|
|
|
type: "private",
|
2023-06-16 17:37:19 +02:00
|
|
|
display_recipient: [{id: me.user_id}],
|
2013-10-23 20:44:31 +02:00
|
|
|
},
|
|
|
|
{
|
2020-07-15 01:29:15 +02:00
|
|
|
type: "private",
|
2017-02-05 00:22:16 +01:00
|
|
|
display_recipient: [{id: alice.user_id}, {id: fred.user_id}],
|
2016-12-03 23:17:57 +01:00
|
|
|
timestamp: timestamp2,
|
2013-10-23 20:44:31 +02:00
|
|
|
},
|
|
|
|
{
|
2020-07-15 01:29:15 +02:00
|
|
|
type: "private",
|
2017-02-05 00:22:16 +01:00
|
|
|
display_recipient: [{id: fred.user_id}, {id: alice.user_id}],
|
2016-12-03 23:17:57 +01:00
|
|
|
timestamp: old_timestamp,
|
|
|
|
},
|
2013-10-23 20:44:31 +02:00
|
|
|
];
|
|
|
|
|
2020-05-26 13:58:18 +02:00
|
|
|
huddle_data.process_loaded_messages(messages);
|
2013-10-23 20:44:31 +02:00
|
|
|
|
2018-04-12 23:40:03 +02:00
|
|
|
const user_ids_string1 = people.emails_strings_to_user_ids_string(huddle1);
|
|
|
|
const user_ids_string2 = people.emails_strings_to_user_ids_string(huddle2);
|
2020-05-26 14:25:21 +02:00
|
|
|
assert.deepEqual(huddle_data.get_huddles(), [user_ids_string2, user_ids_string1]);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2013-10-23 20:44:31 +02:00
|
|
|
|
2021-06-28 00:41:05 +02:00
|
|
|
test("presence_list_full_update", ({override, mock_template}) => {
|
2023-12-14 23:51:33 +01:00
|
|
|
override(padded_widget, "update_padding", noop);
|
2021-12-01 07:30:00 +01:00
|
|
|
mock_template("presence_rows.hbs", false, (data) => {
|
|
|
|
assert.equal(data.presence_rows.length, 7);
|
|
|
|
assert.equal(data.presence_rows[0].user_id, me.user_id);
|
2021-06-27 14:35:21 +02:00
|
|
|
});
|
|
|
|
|
2020-07-20 21:24:26 +02:00
|
|
|
$(".user-list-filter").trigger("focus");
|
2019-12-02 17:53:55 +01:00
|
|
|
compose_state.private_message_recipient = () => fred.email;
|
2018-04-22 17:46:20 +02:00
|
|
|
compose_fade.set_focused_recipient("private");
|
|
|
|
|
2023-10-05 10:20:16 +02:00
|
|
|
const user_ids = activity_ui.build_user_sidebar();
|
2018-07-14 14:06:30 +02:00
|
|
|
|
|
|
|
assert.deepEqual(user_ids, [
|
2018-12-18 18:50:58 +01:00
|
|
|
me.user_id,
|
2021-05-18 22:20:51 +02:00
|
|
|
alice.user_id,
|
2018-07-14 14:06:30 +02:00
|
|
|
fred.user_id,
|
|
|
|
jill.user_id,
|
|
|
|
norbert.user_id,
|
|
|
|
zoe.user_id,
|
|
|
|
mark.user_id,
|
2017-01-09 18:20:31 +01:00
|
|
|
]);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2017-05-24 19:46:15 +02:00
|
|
|
|
2018-04-21 14:59:03 +02:00
|
|
|
function simulate_right_column_buddy_list() {
|
2021-02-23 14:37:26 +01:00
|
|
|
$(".user-list-filter").closest = (selector) => {
|
2018-04-21 14:59:03 +02:00
|
|
|
assert.equal(selector, ".app-main [class^='column-']");
|
2020-07-15 01:29:15 +02:00
|
|
|
return $.create("right-sidebar").addClass("column-right");
|
2018-04-21 14:59:03 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
function buddy_list_add(user_id, $stub) {
|
|
|
|
if ($stub.attr) {
|
|
|
|
$stub.attr("data-user-id", user_id);
|
2018-04-21 14:59:03 +02:00
|
|
|
}
|
2022-01-25 11:36:19 +01:00
|
|
|
$stub.length = 1;
|
2021-02-03 23:23:32 +01:00
|
|
|
const sel = `li.user_sidebar_entry[data-user-id='${CSS.escape(user_id)}']`;
|
2023-08-23 07:54:50 +02:00
|
|
|
$("#buddy-list-users-matching-view").set_find_results(sel, $stub);
|
2018-04-20 16:13:39 +02:00
|
|
|
}
|
|
|
|
|
2023-06-16 17:37:19 +02:00
|
|
|
test("direct_message_update_dom_counts", () => {
|
2022-01-25 11:36:19 +01:00
|
|
|
const $count = $.create("alice-unread-count");
|
2018-04-12 23:40:03 +02:00
|
|
|
const pm_key = alice.user_id.toString();
|
2022-01-25 11:36:19 +01:00
|
|
|
const $li = $.create("alice stub");
|
|
|
|
buddy_list_add(pm_key, $li);
|
|
|
|
$li.set_find_results(".unread_count", $count);
|
|
|
|
$count.set_parents_result("li", $li);
|
2017-05-24 19:46:15 +02:00
|
|
|
|
2020-02-03 09:39:58 +01:00
|
|
|
const counts = new Map();
|
2017-05-24 19:46:15 +02:00
|
|
|
counts.set(pm_key, 5);
|
2022-01-25 11:36:19 +01:00
|
|
|
$li.addClass("user_sidebar_entry");
|
2017-05-24 19:46:15 +02:00
|
|
|
|
2023-10-05 10:20:16 +02:00
|
|
|
activity_ui.update_dom_with_unread_counts({pm_count: counts});
|
2022-01-25 11:36:19 +01:00
|
|
|
assert.equal($count.text(), "5");
|
2017-05-24 19:46:15 +02:00
|
|
|
|
|
|
|
counts.set(pm_key, 0);
|
|
|
|
|
2023-10-05 10:20:16 +02:00
|
|
|
activity_ui.update_dom_with_unread_counts({pm_count: counts});
|
2022-01-25 11:36:19 +01:00
|
|
|
assert.equal($count.text(), "");
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2017-05-24 19:46:15 +02:00
|
|
|
|
2023-11-21 03:05:45 +01:00
|
|
|
test("handlers", ({override, override_rewire, mock_template}) => {
|
2021-05-18 17:20:17 +02:00
|
|
|
let filter_key_handlers;
|
|
|
|
|
2023-12-14 23:51:33 +01:00
|
|
|
mock_template("presence_rows.hbs", false, noop);
|
2021-06-27 14:35:21 +02:00
|
|
|
|
2021-05-18 17:20:17 +02:00
|
|
|
override(keydown_util, "handle", (opts) => {
|
|
|
|
filter_key_handlers = opts.handlers;
|
|
|
|
});
|
2023-12-14 23:51:33 +01:00
|
|
|
override(scroll_util, "scroll_element_into_container", noop);
|
|
|
|
override(padded_widget, "update_padding", noop);
|
|
|
|
override(popovers, "hide_all", noop);
|
|
|
|
override(sidebar_ui, "hide_all", noop);
|
|
|
|
override(sidebar_ui, "show_userlist_sidebar", noop);
|
|
|
|
override(resize, "resize_sidebars", noop);
|
2021-05-18 17:20:17 +02:00
|
|
|
|
2018-04-21 14:59:03 +02:00
|
|
|
// This is kind of weak coverage; we are mostly making sure that
|
|
|
|
// keys and clicks got mapped to functions that don't crash.
|
2022-01-25 11:36:19 +01:00
|
|
|
let $me_li;
|
|
|
|
let $alice_li;
|
|
|
|
let $fred_li;
|
2018-02-12 23:31:17 +01:00
|
|
|
|
2021-02-24 13:30:27 +01:00
|
|
|
let narrowed;
|
|
|
|
|
2023-11-21 03:05:45 +01:00
|
|
|
function narrow_by_email(email) {
|
2021-02-24 13:30:27 +01:00
|
|
|
assert.equal(email, "alice@zulip.com");
|
|
|
|
narrowed = true;
|
2023-11-21 03:05:45 +01:00
|
|
|
}
|
2021-02-24 13:30:27 +01:00
|
|
|
|
2018-07-16 15:16:33 +02:00
|
|
|
function init() {
|
2021-02-20 17:02:39 +01:00
|
|
|
$.clear_all_elements();
|
2018-07-16 15:16:33 +02:00
|
|
|
buddy_list.populate({
|
2023-11-21 06:08:32 +01:00
|
|
|
all_user_ids: [me.user_id, alice.user_id, fred.user_id],
|
2018-07-16 15:16:33 +02:00
|
|
|
});
|
2023-11-21 03:05:45 +01:00
|
|
|
|
2023-12-14 23:51:33 +01:00
|
|
|
buddy_list.start_scroll_handler = noop;
|
|
|
|
override_rewire(util, "call_function_periodically", noop);
|
|
|
|
override_rewire(activity, "send_presence_to_server", noop);
|
2023-11-21 03:05:45 +01:00
|
|
|
activity_ui.initialize({narrow_by_email});
|
|
|
|
|
2023-12-14 23:51:33 +01:00
|
|
|
$("#buddy-list-users-matching-view").empty = noop;
|
2018-07-16 15:16:33 +02:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
$me_li = $.create("me stub");
|
|
|
|
$alice_li = $.create("alice stub");
|
|
|
|
$fred_li = $.create("fred stub");
|
2018-07-16 15:16:33 +02:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
buddy_list_add(me.user_id, $me_li);
|
|
|
|
buddy_list_add(alice.user_id, $alice_li);
|
|
|
|
buddy_list_add(fred.user_id, $fred_li);
|
2018-07-16 15:16:33 +02:00
|
|
|
}
|
2018-07-14 18:08:13 +02:00
|
|
|
|
|
|
|
(function test_filter_keys() {
|
2018-07-16 15:16:33 +02:00
|
|
|
init();
|
2023-10-05 10:20:16 +02:00
|
|
|
activity_ui.user_cursor.go_to(alice.user_id);
|
2021-05-26 19:51:07 +02:00
|
|
|
filter_key_handlers.ArrowDown();
|
|
|
|
filter_key_handlers.ArrowUp();
|
2020-07-16 22:35:58 +02:00
|
|
|
})();
|
2018-02-12 23:31:17 +01:00
|
|
|
|
2018-04-21 14:59:03 +02:00
|
|
|
(function test_click_filter() {
|
2018-07-16 15:16:33 +02:00
|
|
|
init();
|
2018-04-21 14:59:03 +02:00
|
|
|
const e = {
|
2022-11-17 23:33:43 +01:00
|
|
|
stopPropagation() {},
|
2018-02-12 23:31:17 +01:00
|
|
|
};
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
const handler = $(".user-list-filter").get_on_handler("focus");
|
2018-04-21 14:59:03 +02:00
|
|
|
handler(e);
|
2020-07-16 22:35:58 +02:00
|
|
|
})();
|
2018-02-12 23:31:17 +01:00
|
|
|
|
2018-04-21 14:59:03 +02:00
|
|
|
(function test_click_header_filter() {
|
2018-07-16 15:16:33 +02:00
|
|
|
init();
|
2018-04-21 14:59:03 +02:00
|
|
|
const e = {};
|
2020-07-15 01:29:15 +02:00
|
|
|
const handler = $("#userlist-header").get_on_handler("click");
|
2017-06-24 15:15:37 +02:00
|
|
|
|
2018-04-21 14:59:03 +02:00
|
|
|
simulate_right_column_buddy_list();
|
2017-06-24 15:15:37 +02:00
|
|
|
|
2018-04-21 14:59:03 +02:00
|
|
|
handler(e);
|
|
|
|
// and click again
|
|
|
|
handler(e);
|
2020-07-16 22:35:58 +02:00
|
|
|
})();
|
2018-04-19 21:50:14 +02:00
|
|
|
|
2018-04-21 14:59:03 +02:00
|
|
|
(function test_enter_key() {
|
2018-07-16 15:16:33 +02:00
|
|
|
init();
|
2017-06-24 15:15:37 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
$(".user-list-filter").val("al");
|
2021-02-24 13:30:27 +01:00
|
|
|
narrowed = false;
|
2023-10-05 10:20:16 +02:00
|
|
|
activity_ui.user_cursor.go_to(alice.user_id);
|
2021-05-26 19:51:07 +02:00
|
|
|
filter_key_handlers.Enter();
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(narrowed);
|
2018-04-21 14:59:03 +02:00
|
|
|
|
|
|
|
// get line coverage for cleared case
|
2023-10-05 10:20:16 +02:00
|
|
|
activity_ui.user_cursor.clear();
|
2021-05-26 19:51:07 +02:00
|
|
|
filter_key_handlers.Enter();
|
2020-07-16 22:35:58 +02:00
|
|
|
})();
|
2018-04-21 14:59:03 +02:00
|
|
|
|
|
|
|
(function test_click_handler() {
|
2018-07-16 15:16:33 +02:00
|
|
|
init();
|
2018-04-21 14:59:03 +02:00
|
|
|
// We wire up the click handler in click_handlers.js,
|
|
|
|
// so this just tests the called function.
|
2021-02-24 13:30:27 +01:00
|
|
|
narrowed = false;
|
2023-10-05 10:20:16 +02:00
|
|
|
activity_ui.narrow_for_user({$li: $alice_li});
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(narrowed);
|
2020-07-16 22:35:58 +02:00
|
|
|
})();
|
2018-04-21 14:59:03 +02:00
|
|
|
|
|
|
|
(function test_blur_filter() {
|
2018-07-16 15:16:33 +02:00
|
|
|
init();
|
2018-04-21 14:59:03 +02:00
|
|
|
const e = {};
|
2020-07-15 01:29:15 +02:00
|
|
|
const handler = $(".user-list-filter").get_on_handler("blur");
|
2018-04-21 14:59:03 +02:00
|
|
|
handler(e);
|
2020-07-16 22:35:58 +02:00
|
|
|
})();
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2018-02-12 23:31:17 +01:00
|
|
|
|
2021-06-28 00:41:05 +02:00
|
|
|
test("first/prev/next", ({override, mock_template}) => {
|
2021-06-27 14:35:21 +02:00
|
|
|
let rendered_alice;
|
|
|
|
let rendered_fred;
|
2022-08-12 22:41:06 +02:00
|
|
|
user_settings.user_list_style = 2;
|
2021-06-27 14:35:21 +02:00
|
|
|
|
2021-12-01 07:30:00 +01:00
|
|
|
mock_template("presence_row.hbs", false, (data) => {
|
2022-04-09 23:44:38 +02:00
|
|
|
switch (data.user_id) {
|
|
|
|
case alice.user_id:
|
|
|
|
rendered_alice = true;
|
|
|
|
assert.deepEqual(data, {
|
|
|
|
faded: true,
|
2023-04-11 21:04:33 +02:00
|
|
|
href: "#narrow/dm/1-Alice-Smith",
|
2022-04-09 23:44:38 +02:00
|
|
|
is_current_user: false,
|
|
|
|
name: "Alice Smith",
|
|
|
|
num_unread: 0,
|
|
|
|
user_circle_class: "user_circle_green",
|
|
|
|
user_id: alice.user_id,
|
|
|
|
status_emoji_info: undefined,
|
2022-08-12 22:41:06 +02:00
|
|
|
status_text: undefined,
|
|
|
|
user_list_style: {
|
|
|
|
COMPACT: false,
|
|
|
|
WITH_STATUS: true,
|
|
|
|
WITH_AVATAR: false,
|
|
|
|
},
|
2023-09-13 19:30:52 +02:00
|
|
|
should_add_guest_user_indicator: false,
|
2022-04-09 23:44:38 +02:00
|
|
|
});
|
|
|
|
break;
|
|
|
|
case fred.user_id:
|
|
|
|
rendered_fred = true;
|
|
|
|
assert.deepEqual(data, {
|
2023-04-11 21:04:33 +02:00
|
|
|
href: "#narrow/dm/2-Fred-Flintstone",
|
2022-04-09 23:44:38 +02:00
|
|
|
name: "Fred Flintstone",
|
|
|
|
user_id: fred.user_id,
|
|
|
|
is_current_user: false,
|
|
|
|
num_unread: 0,
|
|
|
|
user_circle_class: "user_circle_green",
|
|
|
|
faded: false,
|
|
|
|
status_emoji_info: undefined,
|
2022-08-12 22:41:06 +02:00
|
|
|
status_text: undefined,
|
|
|
|
user_list_style: {
|
|
|
|
COMPACT: false,
|
|
|
|
WITH_STATUS: true,
|
|
|
|
WITH_AVATAR: false,
|
|
|
|
},
|
2023-09-13 19:30:52 +02:00
|
|
|
should_add_guest_user_indicator: false,
|
2022-04-09 23:44:38 +02:00
|
|
|
});
|
|
|
|
break;
|
|
|
|
/* istanbul ignore next */
|
|
|
|
default:
|
|
|
|
throw new Error(`we did not expect to have to render a row for ${data.name}`);
|
2021-06-27 14:35:21 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2023-12-14 23:51:33 +01:00
|
|
|
override(padded_widget, "update_padding", noop);
|
2021-05-18 17:20:17 +02:00
|
|
|
|
2018-07-14 18:08:13 +02:00
|
|
|
assert.equal(buddy_list.first_key(), undefined);
|
|
|
|
assert.equal(buddy_list.prev_key(alice.user_id), undefined);
|
|
|
|
assert.equal(buddy_list.next_key(alice.user_id), undefined);
|
|
|
|
|
2023-12-14 23:51:33 +01:00
|
|
|
override(buddy_list.$container, "append", noop);
|
2018-07-14 18:08:13 +02:00
|
|
|
|
2023-10-05 10:20:16 +02:00
|
|
|
activity_ui.redraw_user(alice.user_id);
|
|
|
|
activity_ui.redraw_user(fred.user_id);
|
2018-07-14 18:08:13 +02:00
|
|
|
|
|
|
|
assert.equal(buddy_list.first_key(), alice.user_id);
|
|
|
|
assert.equal(buddy_list.prev_key(alice.user_id), undefined);
|
|
|
|
assert.equal(buddy_list.prev_key(fred.user_id), alice.user_id);
|
|
|
|
|
|
|
|
assert.equal(buddy_list.next_key(alice.user_id), fred.user_id);
|
|
|
|
assert.equal(buddy_list.next_key(fred.user_id), undefined);
|
2021-06-27 14:35:21 +02:00
|
|
|
|
|
|
|
assert.ok(rendered_alice);
|
|
|
|
assert.ok(rendered_fred);
|
2018-07-14 18:08:13 +02:00
|
|
|
});
|
|
|
|
|
2023-08-16 15:58:46 +02:00
|
|
|
test("render_empty_user_list_message", ({override, mock_template}) => {
|
|
|
|
const empty_list_message = "No matching users.";
|
|
|
|
mock_template("empty_list_widget_for_list.hbs", false, (data) => {
|
|
|
|
assert.equal(data.empty_list_message, empty_list_message);
|
|
|
|
return empty_list_message;
|
|
|
|
});
|
|
|
|
|
|
|
|
let appended_data;
|
|
|
|
override(buddy_list, "$container", {
|
|
|
|
append(data) {
|
|
|
|
appended_data = data;
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return empty_list_message;
|
|
|
|
},
|
|
|
|
children: () => [],
|
|
|
|
});
|
|
|
|
|
|
|
|
activity_ui.render_empty_user_list_message_if_needed(buddy_list.$container);
|
|
|
|
assert.equal(appended_data, empty_list_message);
|
|
|
|
});
|
|
|
|
|
2021-06-28 00:41:05 +02:00
|
|
|
test("insert_one_user_into_empty_list", ({override, mock_template}) => {
|
2022-08-12 22:41:06 +02:00
|
|
|
user_settings.user_list_style = 2;
|
2021-12-01 07:30:00 +01:00
|
|
|
mock_template("presence_row.hbs", true, (data, html) => {
|
2021-06-27 14:35:21 +02:00
|
|
|
assert.deepEqual(data, {
|
2023-04-11 21:04:33 +02:00
|
|
|
href: "#narrow/dm/1-Alice-Smith",
|
2021-06-27 14:35:21 +02:00
|
|
|
name: "Alice Smith",
|
|
|
|
user_id: 1,
|
|
|
|
is_current_user: false,
|
|
|
|
num_unread: 0,
|
|
|
|
user_circle_class: "user_circle_green",
|
|
|
|
faded: true,
|
2021-06-27 19:04:17 +02:00
|
|
|
status_emoji_info: undefined,
|
2022-08-12 22:41:06 +02:00
|
|
|
status_text: undefined,
|
|
|
|
user_list_style: {
|
|
|
|
COMPACT: false,
|
|
|
|
WITH_STATUS: true,
|
|
|
|
WITH_AVATAR: false,
|
|
|
|
},
|
2023-09-13 19:30:52 +02:00
|
|
|
should_add_guest_user_indicator: false,
|
2021-06-27 14:35:21 +02:00
|
|
|
});
|
|
|
|
assert.ok(html.startsWith("<li data-user-id="));
|
|
|
|
return html;
|
|
|
|
});
|
|
|
|
|
2023-12-14 23:51:33 +01:00
|
|
|
override(padded_widget, "update_padding", noop);
|
2021-05-18 17:20:17 +02:00
|
|
|
|
2018-04-18 22:51:40 +02:00
|
|
|
let appended_html;
|
2022-01-25 11:36:19 +01:00
|
|
|
override(buddy_list.$container, "append", (html) => {
|
2017-05-25 01:49:39 +02:00
|
|
|
appended_html = html;
|
2021-02-20 17:02:39 +01:00
|
|
|
});
|
2017-05-25 01:49:39 +02:00
|
|
|
|
2023-10-05 10:20:16 +02:00
|
|
|
activity_ui.redraw_user(alice.user_id);
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(appended_html.indexOf('data-user-id="1"') > 0);
|
|
|
|
assert.ok(appended_html.indexOf("user_circle_green") > 0);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2017-05-25 01:49:39 +02:00
|
|
|
|
2021-06-28 00:41:05 +02:00
|
|
|
test("insert_alice_then_fred", ({override, mock_template}) => {
|
2023-06-29 21:59:08 +02:00
|
|
|
mock_template("presence_row.hbs", true, (_data, html) => html);
|
2021-06-27 14:35:21 +02:00
|
|
|
|
2018-04-18 22:51:40 +02:00
|
|
|
let appended_html;
|
2022-01-25 11:36:19 +01:00
|
|
|
override(buddy_list.$container, "append", (html) => {
|
2017-05-25 01:49:39 +02:00
|
|
|
appended_html = html;
|
2021-02-20 17:02:39 +01:00
|
|
|
});
|
2023-12-14 23:51:33 +01:00
|
|
|
override(padded_widget, "update_padding", noop);
|
2018-04-20 16:13:39 +02:00
|
|
|
|
2023-10-05 10:20:16 +02:00
|
|
|
activity_ui.redraw_user(alice.user_id);
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(appended_html.indexOf('data-user-id="1"') > 0);
|
|
|
|
assert.ok(appended_html.indexOf("user_circle_green") > 0);
|
2017-05-25 01:49:39 +02:00
|
|
|
|
2023-10-05 10:20:16 +02:00
|
|
|
activity_ui.redraw_user(fred.user_id);
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(appended_html.indexOf('data-user-id="2"') > 0);
|
|
|
|
assert.ok(appended_html.indexOf("user_circle_green") > 0);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2017-05-25 01:49:39 +02:00
|
|
|
|
2021-06-28 00:41:05 +02:00
|
|
|
test("insert_fred_then_alice_then_rename", ({override, mock_template}) => {
|
2023-06-29 21:59:08 +02:00
|
|
|
mock_template("presence_row.hbs", true, (_data, html) => html);
|
2021-06-27 14:35:21 +02:00
|
|
|
|
2018-07-14 14:06:30 +02:00
|
|
|
let appended_html;
|
2022-01-25 11:36:19 +01:00
|
|
|
override(buddy_list.$container, "append", (html) => {
|
2018-07-14 14:06:30 +02:00
|
|
|
appended_html = html;
|
2021-02-20 17:02:39 +01:00
|
|
|
});
|
2023-12-14 23:51:33 +01:00
|
|
|
override(padded_widget, "update_padding", noop);
|
2017-05-25 01:49:39 +02:00
|
|
|
|
2023-10-05 10:20:16 +02:00
|
|
|
activity_ui.redraw_user(fred.user_id);
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(appended_html.indexOf('data-user-id="2"') > 0);
|
|
|
|
assert.ok(appended_html.indexOf("user_circle_green") > 0);
|
2018-07-14 14:06:30 +02:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
const $fred_stub = $.create("fred-first");
|
|
|
|
buddy_list_add(fred.user_id, $fred_stub);
|
2018-07-14 14:06:30 +02:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
let inserted_html;
|
2022-01-25 11:36:19 +01:00
|
|
|
$fred_stub.before = (html) => {
|
2018-07-14 14:06:30 +02:00
|
|
|
inserted_html = html;
|
2017-05-25 01:49:39 +02:00
|
|
|
};
|
|
|
|
|
2021-02-25 16:07:04 +01:00
|
|
|
let fred_removed;
|
2022-01-25 11:36:19 +01:00
|
|
|
$fred_stub.remove = () => {
|
2021-02-25 16:07:04 +01:00
|
|
|
fred_removed = true;
|
|
|
|
};
|
|
|
|
|
2023-10-05 10:20:16 +02:00
|
|
|
activity_ui.redraw_user(alice.user_id);
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(inserted_html.indexOf('data-user-id="1"') > 0);
|
|
|
|
assert.ok(inserted_html.indexOf("user_circle_green") > 0);
|
2018-07-14 14:06:30 +02:00
|
|
|
|
|
|
|
// Next rename fred to Aaron.
|
|
|
|
const fred_with_new_name = {
|
|
|
|
email: fred.email,
|
|
|
|
user_id: fred.user_id,
|
|
|
|
full_name: "Aaron",
|
2017-05-25 01:49:39 +02:00
|
|
|
};
|
2020-05-26 22:34:15 +02:00
|
|
|
people.add_active_user(fred_with_new_name);
|
2018-04-20 16:13:39 +02:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
const $alice_stub = $.create("alice-first");
|
|
|
|
buddy_list_add(alice.user_id, $alice_stub);
|
2018-04-20 16:13:39 +02:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
$alice_stub.before = (html) => {
|
2018-07-14 14:06:30 +02:00
|
|
|
inserted_html = html;
|
|
|
|
};
|
|
|
|
|
2023-10-05 10:20:16 +02:00
|
|
|
activity_ui.redraw_user(fred_with_new_name.user_id);
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(fred_removed);
|
|
|
|
assert.ok(appended_html.indexOf('data-user-id="2"') > 0);
|
2017-05-25 01:49:39 +02:00
|
|
|
|
2018-07-14 14:06:30 +02:00
|
|
|
// restore old Fred data
|
2020-05-26 22:34:15 +02:00
|
|
|
people.add_active_user(fred);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2017-05-25 01:49:39 +02:00
|
|
|
|
2021-05-18 22:44:11 +02:00
|
|
|
test("insert_unfiltered_user_with_filter", () => {
|
2017-05-25 01:49:39 +02:00
|
|
|
// This test only tests that we do not explode when
|
|
|
|
// try to insert Fred into a list where he does not
|
|
|
|
// match the search filter.
|
2022-01-25 11:36:19 +01:00
|
|
|
const $user_filter = $(".user-list-filter");
|
|
|
|
$user_filter.val("do-not-match-filter");
|
2023-10-05 10:20:16 +02:00
|
|
|
activity_ui.redraw_user(fred.user_id);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2017-05-25 01:49:39 +02:00
|
|
|
|
2021-05-18 21:50:13 +02:00
|
|
|
test("realm_presence_disabled", () => {
|
2017-05-25 01:49:39 +02:00
|
|
|
page_params.realm_presence_disabled = true;
|
|
|
|
|
2023-10-05 10:20:16 +02:00
|
|
|
activity_ui.redraw_user();
|
|
|
|
activity_ui.build_user_sidebar();
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2017-05-25 01:49:39 +02:00
|
|
|
|
2021-05-18 21:50:13 +02:00
|
|
|
test("redraw_muted_user", () => {
|
2021-06-27 21:38:26 +02:00
|
|
|
muted_users.add_muted_user(mark.user_id);
|
2023-10-05 10:20:16 +02:00
|
|
|
activity_ui.redraw_user(mark.user_id);
|
2023-08-23 07:54:50 +02:00
|
|
|
assert.equal($("#buddy-list-users-matching-view").html(), "never-been-set");
|
2021-04-23 17:30:00 +02:00
|
|
|
});
|
|
|
|
|
2022-07-10 01:06:33 +02:00
|
|
|
test("update_presence_info", ({override}) => {
|
2023-12-14 23:51:33 +01:00
|
|
|
override(pm_list, "update_private_messages", noop);
|
2021-05-18 17:20:17 +02:00
|
|
|
|
2020-05-26 13:58:18 +02:00
|
|
|
page_params.realm_presence_disabled = false;
|
presence: Tweak and document presence tuning values.
We're changing the ping interval from 50s to 60s, because that's what
the mobile apps have hardcoded currently, and backwards-compatibility
is more important there than the web app's previously hardcoded 50s.
For PRESENCE_PING_INTERVAL_SECS, the previous value hardcoded in both
clients was 140s, selected as "plenty of network/other latency more
than 2 x ACTIVE_PING_INTERVAL_MS". This is a pretty aggressive value;
even a single request being missed or 500ing can result in a user
appearing offline incorrectly. (There's a lag of up to one full ping
interval between when the other client checks in and when you check
in, and so we'll be at almost 2 ping intervals when you issue your
next request that might get an updated connection time from that
user).
To increase failure tolerance, we want to change the offline
threshhold from 2 x ACTIVE_PING_INTERVAL + 20s to 3 x
ACTIVE_PING_INTERVAL + 20s, aka 140s => 200s, to be more robust to
temporary failures causing us to display other users as offline.
Since the mobile apps currently have 140s and 60s hardcoded, it should
be safe to make this particular change; the mobile apps will just
remain more aggressive than the web app in marking users offline until
it uses the new API parameters.
The end result in that Zulip will be slightly less aggressive at
marking other users as offline if they go off the Internet. We will
likely be able to tune ACTIVE_PING_INTERVAL downwards once #16381 and
its follow-ups are completed, because it'll likely make these requests
much cheaper.
2023-02-21 12:20:41 +01:00
|
|
|
page_params.server_presence_ping_interval_seconds = 60;
|
|
|
|
page_params.server_presence_offline_threshold_seconds = 200;
|
2020-05-26 13:58:18 +02:00
|
|
|
|
2018-04-12 23:40:03 +02:00
|
|
|
const server_time = 500;
|
|
|
|
const info = {
|
2017-06-24 15:15:37 +02:00
|
|
|
website: {
|
|
|
|
status: "active",
|
|
|
|
timestamp: server_time,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
const $alice_li = $.create("alice stub");
|
|
|
|
buddy_list_add(alice.user_id, $alice_li);
|
2018-04-20 16:13:39 +02:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
let inserted;
|
2021-05-18 23:03:28 +02:00
|
|
|
override(buddy_list, "insert_or_move", () => {
|
2018-04-20 16:13:39 +02:00
|
|
|
inserted = true;
|
2021-05-18 23:03:28 +02:00
|
|
|
});
|
2017-06-24 15:15:37 +02:00
|
|
|
|
2020-02-06 04:21:07 +01:00
|
|
|
presence.presence_info.delete(me.user_id);
|
2023-10-05 10:20:16 +02:00
|
|
|
activity_ui.update_presence_info(me.user_id, info, server_time);
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(inserted);
|
2020-07-15 01:29:15 +02:00
|
|
|
assert.deepEqual(presence.presence_info.get(me.user_id).status, "active");
|
2018-04-20 16:13:39 +02:00
|
|
|
|
2020-02-06 04:21:07 +01:00
|
|
|
presence.presence_info.delete(alice.user_id);
|
2023-10-05 10:20:16 +02:00
|
|
|
activity_ui.update_presence_info(alice.user_id, info, server_time);
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(inserted);
|
2018-04-20 16:13:39 +02:00
|
|
|
|
2020-07-16 22:40:18 +02:00
|
|
|
const expected = {status: "active", last_active: 500};
|
2020-02-06 04:21:07 +01:00
|
|
|
assert.deepEqual(presence.presence_info.get(alice.user_id), expected);
|
2023-11-28 18:24:43 +01:00
|
|
|
|
|
|
|
// Test invalid and inaccessible user IDs.
|
|
|
|
const invalid_user_id = 99;
|
|
|
|
activity_ui.update_presence_info(invalid_user_id, info, server_time);
|
|
|
|
assert.equal(presence.presence_info.get(invalid_user_id), undefined);
|
|
|
|
|
|
|
|
const inaccessible_user_id = 10;
|
|
|
|
settings_data.user_can_access_all_other_users = () => false;
|
|
|
|
const inaccessible_user = people.make_user(
|
|
|
|
inaccessible_user_id,
|
|
|
|
"user10@zulipdev.com",
|
|
|
|
"Unknown user",
|
|
|
|
);
|
|
|
|
people._add_user(inaccessible_user);
|
|
|
|
activity_ui.update_presence_info(inaccessible_user_id, info, server_time);
|
|
|
|
assert.equal(presence.presence_info.get(inaccessible_user_id), undefined);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2017-06-24 15:15:37 +02:00
|
|
|
|
2021-06-28 00:41:05 +02:00
|
|
|
test("initialize", ({override, mock_template}) => {
|
2023-12-14 23:51:33 +01:00
|
|
|
mock_template("presence_rows.hbs", false, noop);
|
|
|
|
override(padded_widget, "update_padding", noop);
|
|
|
|
override(pm_list, "update_private_messages", noop);
|
|
|
|
override(watchdog, "check_for_unsuspend", noop);
|
2021-05-18 17:20:17 +02:00
|
|
|
|
2021-02-24 13:30:27 +01:00
|
|
|
let payload;
|
|
|
|
override(channel, "post", (arg) => {
|
2022-11-09 11:09:28 +01:00
|
|
|
if (payload === undefined) {
|
|
|
|
// This "if" block is added such that we can execute "success"
|
|
|
|
// function when want_redraw is true.
|
|
|
|
payload = arg;
|
|
|
|
}
|
2021-02-24 13:30:27 +01:00
|
|
|
});
|
|
|
|
|
2019-04-18 19:28:25 +02:00
|
|
|
function clear() {
|
|
|
|
$.clear_all_elements();
|
2023-08-23 07:54:50 +02:00
|
|
|
buddy_list.$container = $("#buddy-list-users-matching-view");
|
2023-12-14 23:51:33 +01:00
|
|
|
buddy_list.$container.append = noop;
|
2019-04-18 19:28:25 +02:00
|
|
|
clear_buddy_list();
|
2020-02-06 03:58:06 +01:00
|
|
|
page_params.presences = {};
|
2019-04-18 19:28:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
clear();
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
let scroll_handler_started;
|
2018-07-16 15:16:33 +02:00
|
|
|
buddy_list.start_scroll_handler = () => {
|
|
|
|
scroll_handler_started = true;
|
|
|
|
};
|
|
|
|
|
2021-05-18 21:29:06 +02:00
|
|
|
activity.mark_client_idle();
|
2019-04-18 19:28:25 +02:00
|
|
|
|
2020-07-21 09:44:41 +02:00
|
|
|
$(window).off("focus");
|
2022-11-09 11:09:28 +01:00
|
|
|
|
|
|
|
let set_timeout_function_called = false;
|
|
|
|
set_global("setTimeout", (func) => {
|
|
|
|
if (set_timeout_function_called) {
|
|
|
|
// This conditional is needed to avoid indefinite calls.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
set_timeout_function_called = true;
|
|
|
|
func();
|
|
|
|
});
|
|
|
|
|
2018-05-07 03:30:13 +02:00
|
|
|
activity.initialize();
|
2023-11-21 03:05:45 +01:00
|
|
|
activity_ui.initialize({narrow_by_email() {}});
|
2021-05-18 22:47:01 +02:00
|
|
|
payload.success({
|
|
|
|
zephyr_mirror_active: true,
|
|
|
|
presences: {},
|
2023-10-18 20:01:05 +02:00
|
|
|
msg: "",
|
|
|
|
result: "success",
|
|
|
|
server_timestamp: 0,
|
2021-05-18 22:47:01 +02:00
|
|
|
});
|
2020-07-21 06:16:05 +02:00
|
|
|
$(window).trigger("focus");
|
2019-04-18 19:28:25 +02:00
|
|
|
clear();
|
|
|
|
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(scroll_handler_started);
|
|
|
|
assert.ok(!activity.new_user_input);
|
|
|
|
assert.ok(!$("#zephyr-mirror-error").hasClass("show"));
|
2021-05-18 21:29:06 +02:00
|
|
|
assert.equal(activity.compute_active_status(), "active");
|
|
|
|
|
2021-02-23 14:37:26 +01:00
|
|
|
$(window).idle = (params) => {
|
2018-05-07 03:30:13 +02:00
|
|
|
params.onIdle();
|
|
|
|
};
|
2022-11-09 11:09:28 +01:00
|
|
|
payload = undefined;
|
|
|
|
set_timeout_function_called = false;
|
2018-05-07 03:30:13 +02:00
|
|
|
|
2020-07-21 09:44:41 +02:00
|
|
|
$(window).off("focus");
|
2018-05-07 03:30:13 +02:00
|
|
|
activity.initialize();
|
2023-11-21 03:05:45 +01:00
|
|
|
activity_ui.initialize({narrow_by_email() {}});
|
2021-02-24 13:30:27 +01:00
|
|
|
payload.success({
|
|
|
|
zephyr_mirror_active: false,
|
|
|
|
presences: {},
|
2023-10-18 20:01:05 +02:00
|
|
|
msg: "",
|
|
|
|
result: "success",
|
|
|
|
server_timestamp: 0,
|
2021-02-24 13:30:27 +01:00
|
|
|
});
|
2019-04-18 19:28:25 +02:00
|
|
|
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok($("#zephyr-mirror-error").hasClass("show"));
|
|
|
|
assert.ok(!activity.new_user_input);
|
2021-05-18 21:29:06 +02:00
|
|
|
assert.equal(activity.compute_active_status(), "idle");
|
2018-05-07 03:30:13 +02:00
|
|
|
|
2021-02-22 16:35:19 +01:00
|
|
|
// Exercise the mousemove handler, which just
|
|
|
|
// sets a flag.
|
|
|
|
$("html").get_on_handler("mousemove")();
|
|
|
|
|
2019-04-18 19:28:25 +02:00
|
|
|
clear();
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2018-12-19 18:41:47 +01:00
|
|
|
|
2022-01-08 10:27:06 +01:00
|
|
|
test("electron_bridge", ({override_rewire}) => {
|
2023-12-14 23:51:33 +01:00
|
|
|
override_rewire(activity, "send_presence_to_server", noop);
|
2021-05-18 21:29:06 +02:00
|
|
|
|
2021-05-19 16:35:02 +02:00
|
|
|
function with_bridge_idle(bridge_idle, f) {
|
2022-07-09 23:25:05 +02:00
|
|
|
with_overrides(({override}) => {
|
|
|
|
override(window, "electron_bridge", {
|
2021-05-19 16:35:02 +02:00
|
|
|
get_idle_on_system: () => bridge_idle,
|
2022-07-09 23:25:05 +02:00
|
|
|
});
|
|
|
|
return f();
|
|
|
|
});
|
2021-05-19 16:35:02 +02:00
|
|
|
}
|
2021-05-18 21:29:06 +02:00
|
|
|
|
2021-05-19 16:35:02 +02:00
|
|
|
with_bridge_idle(true, () => {
|
|
|
|
activity.mark_client_idle();
|
|
|
|
assert.equal(activity.compute_active_status(), "idle");
|
|
|
|
activity.mark_client_active();
|
|
|
|
assert.equal(activity.compute_active_status(), "idle");
|
|
|
|
});
|
2019-03-29 00:13:07 +01:00
|
|
|
|
2022-07-09 23:25:05 +02:00
|
|
|
with_overrides(({override}) => {
|
|
|
|
override(window, "electron_bridge", undefined);
|
2021-05-19 16:35:02 +02:00
|
|
|
activity.mark_client_idle();
|
|
|
|
assert.equal(activity.compute_active_status(), "idle");
|
|
|
|
activity.mark_client_active();
|
|
|
|
assert.equal(activity.compute_active_status(), "active");
|
|
|
|
});
|
2021-05-18 21:29:06 +02:00
|
|
|
|
2021-05-19 16:35:02 +02:00
|
|
|
with_bridge_idle(false, () => {
|
|
|
|
activity.mark_client_idle();
|
|
|
|
assert.equal(activity.compute_active_status(), "active");
|
|
|
|
activity.mark_client_active();
|
|
|
|
assert.equal(activity.compute_active_status(), "active");
|
|
|
|
});
|
2019-03-29 00:13:07 +01:00
|
|
|
});
|
2020-08-31 09:35:39 +02:00
|
|
|
|
2021-06-15 18:03:32 +02:00
|
|
|
test("test_send_or_receive_no_presence_for_spectator", () => {
|
|
|
|
page_params.is_spectator = true;
|
2020-09-24 07:50:36 +02:00
|
|
|
activity.send_presence_to_server();
|
2020-08-31 09:35:39 +02:00
|
|
|
});
|