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");
|
|
|
|
|
2022-07-09 23:25:05 +02:00
|
|
|
const {mock_esm, zrequire} = require("../zjsunit/namespace");
|
2020-12-01 00:39:47 +01:00
|
|
|
const {run_test} = require("../zjsunit/test");
|
2021-03-16 23:38:59 +01:00
|
|
|
const blueslip = require("../zjsunit/zblueslip");
|
2021-07-28 16:00:58 +02:00
|
|
|
const {page_params, user_settings} = require("../zjsunit/zpage_params");
|
2018-08-01 21:17:03 +02:00
|
|
|
|
2023-02-22 23:03:47 +01:00
|
|
|
const timerender = mock_esm("../../web/src/timerender");
|
2021-02-28 01:14:36 +01:00
|
|
|
|
2021-03-19 14:38:22 +01:00
|
|
|
const compose_fade_helper = zrequire("compose_fade_helper");
|
2021-06-27 21:38:26 +02:00
|
|
|
const muted_users = zrequire("muted_users");
|
2021-03-19 14:38:22 +01:00
|
|
|
const peer_data = zrequire("peer_data");
|
2020-08-20 21:24:06 +02:00
|
|
|
const people = zrequire("people");
|
2021-02-10 04:53:22 +01:00
|
|
|
const presence = zrequire("presence");
|
2021-03-19 14:38:22 +01:00
|
|
|
const stream_data = zrequire("stream_data");
|
2021-04-15 17:02:54 +02:00
|
|
|
const sub_store = zrequire("sub_store");
|
2021-02-10 04:53:22 +01:00
|
|
|
const user_status = zrequire("user_status");
|
|
|
|
const buddy_data = zrequire("buddy_data");
|
2018-04-20 18:22:28 +02:00
|
|
|
|
|
|
|
// The buddy_data module is mostly tested indirectly through
|
|
|
|
// activity.js, but we should feel free to add direct tests
|
|
|
|
// here.
|
|
|
|
|
2018-12-18 19:25:14 +01:00
|
|
|
const selma = {
|
|
|
|
user_id: 1000,
|
2020-07-15 01:29:15 +02:00
|
|
|
full_name: "Human Selma",
|
|
|
|
email: "selma@example.com",
|
2018-12-18 19:25:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const me = {
|
|
|
|
user_id: 1001,
|
2020-07-15 01:29:15 +02:00
|
|
|
full_name: "Human Myself",
|
|
|
|
email: "self@example.com",
|
2018-12-18 19:25:14 +01:00
|
|
|
};
|
|
|
|
|
2020-05-27 14:46:44 +02:00
|
|
|
const alice = {
|
2020-07-15 01:29:15 +02:00
|
|
|
email: "alice@zulip.com",
|
2020-05-27 14:46:44 +02:00
|
|
|
user_id: 1002,
|
2020-07-15 01:29:15 +02:00
|
|
|
full_name: "Alice Smith",
|
2020-05-27 14:46:44 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const fred = {
|
2020-07-15 01:29:15 +02:00
|
|
|
email: "fred@zulip.com",
|
2020-05-27 14:46:44 +02:00
|
|
|
user_id: 1003,
|
|
|
|
full_name: "Fred Flintstone",
|
|
|
|
};
|
|
|
|
|
|
|
|
const jill = {
|
2020-07-15 01:29:15 +02:00
|
|
|
email: "jill@zulip.com",
|
2020-05-27 14:46:44 +02:00
|
|
|
user_id: 1004,
|
2020-07-15 01:29:15 +02:00
|
|
|
full_name: "Jill Hill",
|
2020-05-27 14:46:44 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const mark = {
|
2020-07-15 01:29:15 +02:00
|
|
|
email: "mark@zulip.com",
|
2020-05-27 14:46:44 +02:00
|
|
|
user_id: 1005,
|
2020-07-15 01:29:15 +02:00
|
|
|
full_name: "Marky Mark",
|
2020-05-27 14:46:44 +02:00
|
|
|
};
|
|
|
|
|
2019-02-28 16:09:03 +01:00
|
|
|
const old_user = {
|
|
|
|
user_id: 9999,
|
2020-07-15 01:29:15 +02:00
|
|
|
full_name: "Old User",
|
|
|
|
email: "old_user@example.com",
|
2019-02-28 16:09:03 +01:00
|
|
|
};
|
|
|
|
|
2018-12-18 19:25:14 +01:00
|
|
|
const bot = {
|
|
|
|
user_id: 55555,
|
2020-07-15 01:29:15 +02:00
|
|
|
full_name: "Red Herring Bot",
|
|
|
|
email: "bot@example.com",
|
2018-12-18 19:25:14 +01:00
|
|
|
is_bot: true,
|
2019-08-04 14:57:32 +02:00
|
|
|
bot_owner_id: null,
|
|
|
|
};
|
|
|
|
|
|
|
|
const bot_with_owner = {
|
|
|
|
user_id: 55556,
|
2020-07-15 01:29:15 +02:00
|
|
|
full_name: "Blue Herring Bot",
|
|
|
|
email: "bot_with_owner@example.com",
|
2019-08-04 14:57:32 +02:00
|
|
|
is_bot: true,
|
|
|
|
bot_owner_id: 1001,
|
2020-07-15 01:29:15 +02:00
|
|
|
bot_owner_full_name: "Human Myself",
|
2018-12-18 19:25:14 +01:00
|
|
|
};
|
|
|
|
|
2021-03-14 10:18:07 +01:00
|
|
|
function add_canned_users() {
|
|
|
|
people.add_active_user(alice);
|
2020-05-26 22:34:15 +02:00
|
|
|
people.add_active_user(bot);
|
|
|
|
people.add_active_user(bot_with_owner);
|
2020-05-27 14:46:44 +02:00
|
|
|
people.add_active_user(fred);
|
|
|
|
people.add_active_user(jill);
|
|
|
|
people.add_active_user(mark);
|
2020-05-26 22:34:15 +02:00
|
|
|
people.add_active_user(old_user);
|
2021-03-14 10:18:07 +01:00
|
|
|
people.add_active_user(selma);
|
|
|
|
}
|
2018-12-18 18:50:58 +01:00
|
|
|
|
2021-03-14 10:18:07 +01:00
|
|
|
function test(label, f) {
|
2022-07-10 01:06:33 +02:00
|
|
|
run_test(label, (helpers) => {
|
2021-12-04 01:20:20 +01:00
|
|
|
user_settings.presence_enabled = true;
|
2021-03-19 14:38:22 +01:00
|
|
|
compose_fade_helper.clear_focused_recipient();
|
|
|
|
stream_data.clear_subscriptions();
|
|
|
|
peer_data.clear_for_testing();
|
2021-03-14 10:18:07 +01:00
|
|
|
user_status.initialize({user_status: {}});
|
|
|
|
presence.presence_info.clear();
|
|
|
|
people.init();
|
|
|
|
people.add_active_user(me);
|
|
|
|
people.initialize_current_user(me.user_id);
|
2021-06-27 21:38:26 +02:00
|
|
|
muted_users.set_muted_users([]);
|
2022-07-10 01:06:33 +02:00
|
|
|
|
|
|
|
f(helpers);
|
|
|
|
|
|
|
|
presence.clear_internal_data();
|
2021-03-14 10:18:07 +01:00
|
|
|
});
|
2018-09-08 14:41:41 +02:00
|
|
|
}
|
|
|
|
|
2021-03-08 16:08:27 +01:00
|
|
|
function set_presence(user_id, status) {
|
|
|
|
presence.presence_info.set(user_id, {
|
|
|
|
status,
|
|
|
|
last_active: 9999,
|
|
|
|
});
|
|
|
|
}
|
2018-04-20 18:22:28 +02:00
|
|
|
|
2022-09-20 12:42:40 +02:00
|
|
|
test("user_circle, level", () => {
|
2021-03-14 10:18:07 +01:00
|
|
|
add_canned_users();
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
set_presence(selma.user_id, "active");
|
|
|
|
assert.equal(buddy_data.get_user_circle_class(selma.user_id), "user_circle_green");
|
2022-09-21 15:49:36 +02:00
|
|
|
assert.equal(buddy_data.level(selma.user_id), 1);
|
2021-05-16 17:10:07 +02:00
|
|
|
|
2022-09-21 15:49:36 +02:00
|
|
|
set_presence(selma.user_id, "idle");
|
|
|
|
assert.equal(buddy_data.get_user_circle_class(selma.user_id), "user_circle_idle");
|
|
|
|
assert.equal(buddy_data.level(selma.user_id), 2);
|
|
|
|
|
|
|
|
set_presence(selma.user_id, "offline");
|
|
|
|
assert.equal(buddy_data.get_user_circle_class(selma.user_id), "user_circle_empty");
|
|
|
|
assert.equal(buddy_data.level(selma.user_id), 3);
|
2019-02-17 02:10:42 +01:00
|
|
|
|
2021-05-16 17:10:07 +02:00
|
|
|
set_presence(me.user_id, "active");
|
2020-07-15 01:29:15 +02:00
|
|
|
assert.equal(buddy_data.get_user_circle_class(me.user_id), "user_circle_green");
|
2021-05-16 17:10:07 +02:00
|
|
|
assert.equal(buddy_data.level(me.user_id), 0);
|
|
|
|
|
2022-09-21 15:49:36 +02:00
|
|
|
user_settings.presence_enabled = false;
|
|
|
|
assert.equal(buddy_data.get_user_circle_class(me.user_id), "user_circle_empty");
|
|
|
|
assert.equal(buddy_data.level(me.user_id), 0);
|
|
|
|
|
|
|
|
user_settings.presence_enabled = true;
|
2020-07-15 01:29:15 +02:00
|
|
|
assert.equal(buddy_data.get_user_circle_class(me.user_id), "user_circle_green");
|
2022-09-21 15:49:36 +02:00
|
|
|
assert.equal(buddy_data.level(me.user_id), 0);
|
2021-05-16 17:10:07 +02:00
|
|
|
|
|
|
|
set_presence(fred.user_id, "idle");
|
2022-01-27 22:22:59 +01:00
|
|
|
assert.equal(buddy_data.get_user_circle_class(fred.user_id), "user_circle_idle");
|
2021-05-16 17:10:07 +02:00
|
|
|
assert.equal(buddy_data.level(fred.user_id), 2);
|
|
|
|
|
|
|
|
set_presence(fred.user_id, undefined);
|
2022-09-21 15:49:36 +02:00
|
|
|
assert.equal(buddy_data.get_user_circle_class(fred.user_id), "user_circle_empty");
|
|
|
|
assert.equal(buddy_data.level(fred.user_id), 3);
|
2019-02-17 02:10:42 +01:00
|
|
|
});
|
|
|
|
|
2021-03-19 14:38:22 +01:00
|
|
|
test("compose fade interactions (streams)", () => {
|
|
|
|
const sub = {
|
|
|
|
stream_id: 101,
|
|
|
|
name: "Devel",
|
|
|
|
subscribed: true,
|
|
|
|
};
|
|
|
|
stream_data.add_sub(sub);
|
|
|
|
stream_data.subscribe_myself(sub);
|
|
|
|
|
|
|
|
people.add_active_user(fred);
|
|
|
|
|
|
|
|
set_presence(fred.user_id, "active");
|
|
|
|
|
|
|
|
function faded() {
|
|
|
|
return buddy_data.get_item(fred.user_id).faded;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we are not narrowed, then we don't fade fred in the buddy list.
|
|
|
|
assert.equal(faded(), false);
|
|
|
|
|
|
|
|
// If we narrow to a stream that fred has not subscribed
|
|
|
|
// to, we will fade him.
|
|
|
|
compose_fade_helper.set_focused_recipient({
|
|
|
|
type: "stream",
|
|
|
|
stream_id: sub.stream_id,
|
|
|
|
topic: "whatever",
|
|
|
|
});
|
|
|
|
assert.equal(faded(), true);
|
|
|
|
|
|
|
|
// If we subscribe, we don't fade.
|
|
|
|
peer_data.add_subscriber(sub.stream_id, fred.user_id);
|
|
|
|
assert.equal(faded(), false);
|
|
|
|
|
|
|
|
// Test our punting logic.
|
|
|
|
const bogus_stream_id = 99999;
|
2021-04-15 17:02:54 +02:00
|
|
|
assert.equal(sub_store.get(bogus_stream_id), undefined);
|
2021-03-19 14:38:22 +01:00
|
|
|
|
|
|
|
compose_fade_helper.set_focused_recipient({
|
|
|
|
type: "stream",
|
|
|
|
stream_id: bogus_stream_id,
|
|
|
|
});
|
|
|
|
|
|
|
|
assert.equal(faded(), false);
|
|
|
|
});
|
|
|
|
|
|
|
|
test("compose fade interactions (missing topic)", () => {
|
|
|
|
const sub = {
|
|
|
|
stream_id: 102,
|
|
|
|
name: "Social",
|
|
|
|
subscribed: true,
|
|
|
|
};
|
|
|
|
stream_data.add_sub(sub);
|
|
|
|
stream_data.subscribe_myself(sub);
|
|
|
|
|
|
|
|
people.add_active_user(fred);
|
|
|
|
|
|
|
|
set_presence(fred.user_id, "active");
|
|
|
|
|
|
|
|
function faded() {
|
|
|
|
return buddy_data.get_item(fred.user_id).faded;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we are not narrowed, then we don't fade fred in the buddy list.
|
|
|
|
assert.equal(faded(), false);
|
|
|
|
|
|
|
|
// If we narrow to a stream that fred has not subscribed
|
|
|
|
// to, we will fade him.
|
|
|
|
compose_fade_helper.set_focused_recipient({
|
|
|
|
type: "stream",
|
|
|
|
stream_id: sub.stream_id,
|
|
|
|
topic: "whatever",
|
|
|
|
});
|
|
|
|
assert.equal(faded(), true);
|
|
|
|
|
|
|
|
// If the user clears the topic, we won't fade fred.
|
|
|
|
compose_fade_helper.set_focused_recipient({
|
|
|
|
type: "stream",
|
|
|
|
stream_id: sub.stream_id,
|
|
|
|
topic: "",
|
|
|
|
});
|
|
|
|
assert.equal(faded(), false);
|
|
|
|
});
|
|
|
|
|
|
|
|
test("compose fade interactions (PMs)", () => {
|
|
|
|
people.add_active_user(fred);
|
|
|
|
|
|
|
|
set_presence(fred.user_id, "active");
|
|
|
|
|
|
|
|
function faded() {
|
|
|
|
return buddy_data.get_item(fred.user_id).faded;
|
|
|
|
}
|
|
|
|
|
2022-02-08 00:13:33 +01:00
|
|
|
// Don't fade if we're not in a narrow.
|
2021-03-19 14:38:22 +01:00
|
|
|
assert.equal(faded(), false);
|
|
|
|
|
|
|
|
// Fade fred if we are narrowed to a PM narrow that does
|
|
|
|
// not include him.
|
|
|
|
compose_fade_helper.set_focused_recipient({
|
|
|
|
type: "private",
|
|
|
|
to_user_ids: "9999999",
|
|
|
|
});
|
|
|
|
assert.equal(faded(), true);
|
|
|
|
|
|
|
|
// Now include fred in a narrow with jill, and we will
|
|
|
|
// stop fading him.
|
|
|
|
compose_fade_helper.set_focused_recipient({
|
|
|
|
type: "private",
|
|
|
|
to_user_ids: [fred.user_id, jill.user_id].join(","),
|
|
|
|
});
|
|
|
|
|
|
|
|
assert.equal(faded(), false);
|
|
|
|
});
|
|
|
|
|
2021-03-14 10:18:07 +01:00
|
|
|
test("title_data", () => {
|
|
|
|
add_canned_users();
|
|
|
|
|
2019-08-04 14:57:32 +02:00
|
|
|
// Groups
|
2019-11-02 00:06:25 +01:00
|
|
|
let is_group = true;
|
|
|
|
const user_ids_string = "9999,1000";
|
|
|
|
let expected_group_data = {
|
2020-07-15 01:29:15 +02:00
|
|
|
first_line: "Human Selma, Old User",
|
|
|
|
second_line: "",
|
|
|
|
third_line: "",
|
2019-08-04 14:57:32 +02:00
|
|
|
};
|
|
|
|
assert.deepEqual(buddy_data.get_title_data(user_ids_string, is_group), expected_group_data);
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
is_group = "";
|
2019-08-04 14:57:32 +02:00
|
|
|
|
|
|
|
// Bots with owners.
|
|
|
|
expected_group_data = {
|
2020-07-15 01:29:15 +02:00
|
|
|
first_line: "Blue Herring Bot",
|
|
|
|
second_line: "translated: Owner: Human Myself",
|
|
|
|
third_line: "",
|
2019-08-04 14:57:32 +02:00
|
|
|
};
|
2020-07-15 00:34:28 +02:00
|
|
|
assert.deepEqual(
|
|
|
|
buddy_data.get_title_data(bot_with_owner.user_id, is_group),
|
|
|
|
expected_group_data,
|
|
|
|
);
|
2019-08-04 14:57:32 +02:00
|
|
|
|
|
|
|
// Bots without owners.
|
|
|
|
expected_group_data = {
|
2020-07-15 01:29:15 +02:00
|
|
|
first_line: "Red Herring Bot",
|
|
|
|
second_line: "",
|
|
|
|
third_line: "",
|
2019-08-04 14:57:32 +02:00
|
|
|
};
|
|
|
|
assert.deepEqual(buddy_data.get_title_data(bot.user_id, is_group), expected_group_data);
|
|
|
|
|
2020-10-23 02:43:28 +02:00
|
|
|
// Individual users.
|
2019-01-25 16:40:18 +01:00
|
|
|
user_status.set_status_text({
|
|
|
|
user_id: me.user_id,
|
2020-07-15 01:29:15 +02:00
|
|
|
status_text: "out to lunch",
|
2019-01-25 16:40:18 +01:00
|
|
|
});
|
2019-08-04 14:57:32 +02:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
let expected_data = {
|
2020-07-15 01:29:15 +02:00
|
|
|
first_line: "Human Myself",
|
|
|
|
second_line: "out to lunch",
|
|
|
|
third_line: "translated: Active now",
|
2021-04-02 13:05:26 +02:00
|
|
|
show_you: true,
|
2019-08-04 14:57:32 +02:00
|
|
|
};
|
2021-04-02 13:05:26 +02:00
|
|
|
page_params.user_id = me.user_id;
|
2019-08-04 14:57:32 +02:00
|
|
|
assert.deepEqual(buddy_data.get_title_data(me.user_id, is_group), expected_data);
|
|
|
|
|
|
|
|
expected_data = {
|
2020-07-15 01:29:15 +02:00
|
|
|
first_line: "Old User",
|
|
|
|
second_line: "translated: Last active: translated: More than 2 weeks ago",
|
|
|
|
third_line: "",
|
2021-04-02 13:05:26 +02:00
|
|
|
show_you: false,
|
2019-08-04 14:57:32 +02:00
|
|
|
};
|
|
|
|
assert.deepEqual(buddy_data.get_title_data(old_user.user_id, is_group), expected_data);
|
2019-01-25 16:40:18 +01:00
|
|
|
});
|
|
|
|
|
2021-03-14 10:18:07 +01:00
|
|
|
test("simple search", () => {
|
|
|
|
add_canned_users();
|
2021-03-08 16:08:27 +01:00
|
|
|
|
|
|
|
set_presence(selma.user_id, "active");
|
|
|
|
set_presence(me.user_id, "active");
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
const user_ids = buddy_data.get_filtered_and_sorted_user_ids("sel");
|
2018-12-18 19:25:14 +01:00
|
|
|
|
2018-12-18 19:29:08 +01:00
|
|
|
assert.deepEqual(user_ids, [selma.user_id]);
|
2018-06-02 01:42:05 +02:00
|
|
|
});
|
2018-04-20 18:22:28 +02:00
|
|
|
|
2021-04-23 17:30:00 +02:00
|
|
|
test("muted users excluded from search", () => {
|
2021-05-16 17:24:11 +02:00
|
|
|
people.add_active_user(selma);
|
2021-06-27 21:38:26 +02:00
|
|
|
muted_users.add_muted_user(selma.user_id);
|
2021-04-23 17:30:00 +02:00
|
|
|
|
|
|
|
let user_ids = buddy_data.get_filtered_and_sorted_user_ids();
|
|
|
|
assert.equal(user_ids.includes(selma.user_id), false);
|
|
|
|
user_ids = buddy_data.get_filtered_and_sorted_user_ids("sel");
|
|
|
|
assert.deepEqual(user_ids, []);
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(!buddy_data.matches_filter("sel", selma.user_id));
|
2021-04-23 17:30:00 +02:00
|
|
|
|
2021-06-27 21:38:26 +02:00
|
|
|
muted_users.remove_muted_user(selma.user_id);
|
2021-05-16 17:24:11 +02:00
|
|
|
user_ids = buddy_data.get_filtered_and_sorted_user_ids("sel");
|
|
|
|
assert.deepEqual(user_ids, [selma.user_id]);
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(buddy_data.matches_filter("sel", selma.user_id));
|
2021-04-23 17:30:00 +02:00
|
|
|
});
|
|
|
|
|
2022-07-09 23:25:05 +02:00
|
|
|
test("bulk_data_hacks", ({override_rewire}) => {
|
2021-03-14 10:18:07 +01:00
|
|
|
// sanity check
|
|
|
|
assert.equal(mark.user_id, 1005);
|
|
|
|
|
|
|
|
for (const i of _.range(mark.user_id + 1, 2000)) {
|
|
|
|
const person = {
|
|
|
|
user_id: i,
|
|
|
|
full_name: `Human ${i}`,
|
|
|
|
email: `person${i}@example.com`,
|
|
|
|
};
|
|
|
|
people.add_active_user(person);
|
|
|
|
}
|
|
|
|
add_canned_users();
|
2021-03-08 16:08:27 +01:00
|
|
|
|
|
|
|
// Make 400 of the users active
|
|
|
|
set_presence(selma.user_id, "active");
|
|
|
|
set_presence(me.user_id, "active");
|
|
|
|
|
|
|
|
for (const user_id of _.range(1000, 1400)) {
|
|
|
|
set_presence(user_id, "active");
|
|
|
|
}
|
|
|
|
|
|
|
|
// And then 300 not active
|
|
|
|
for (const user_id of _.range(1400, 1700)) {
|
|
|
|
set_presence(user_id, "offline");
|
|
|
|
}
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
let user_ids;
|
2018-04-20 18:22:28 +02:00
|
|
|
|
2018-04-23 23:13:52 +02:00
|
|
|
// Even though we have 1000 users, we only get the 400 active
|
2018-04-20 18:22:28 +02:00
|
|
|
// users. This is a consequence of buddy_data.maybe_shrink_list.
|
2018-04-23 23:13:52 +02:00
|
|
|
user_ids = buddy_data.get_filtered_and_sorted_user_ids();
|
2018-04-20 18:22:28 +02:00
|
|
|
assert.equal(user_ids.length, 400);
|
2018-04-23 23:13:52 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
user_ids = buddy_data.get_filtered_and_sorted_user_ids("");
|
2018-04-23 23:13:52 +02:00
|
|
|
assert.equal(user_ids.length, 400);
|
|
|
|
|
2018-12-18 19:25:14 +01:00
|
|
|
// We don't match on "so", because it's not at the start of a
|
2018-04-23 23:13:52 +02:00
|
|
|
// word in the name/email.
|
2020-07-15 01:29:15 +02:00
|
|
|
user_ids = buddy_data.get_filtered_and_sorted_user_ids("so");
|
2018-04-23 23:13:52 +02:00
|
|
|
assert.equal(user_ids.length, 0);
|
|
|
|
|
|
|
|
// We match on "h" for the first name, and the result limit
|
2018-12-18 19:29:08 +01:00
|
|
|
// is relaxed for searches. (We exclude "me", though.)
|
2020-07-15 01:29:15 +02:00
|
|
|
user_ids = buddy_data.get_filtered_and_sorted_user_ids("h");
|
2020-05-27 14:46:44 +02:00
|
|
|
assert.equal(user_ids.length, 996);
|
2018-04-23 23:13:52 +02:00
|
|
|
|
|
|
|
// We match on "p" for the email.
|
2020-07-15 01:29:15 +02:00
|
|
|
user_ids = buddy_data.get_filtered_and_sorted_user_ids("p");
|
2020-05-27 14:46:44 +02:00
|
|
|
assert.equal(user_ids.length, 994);
|
2018-04-23 23:13:52 +02:00
|
|
|
|
|
|
|
// Make our shrink limit higher, and go back to an empty search.
|
|
|
|
// We won't get all 1000 users, just the present ones.
|
2022-07-09 23:25:05 +02:00
|
|
|
override_rewire(buddy_data, "max_size_before_shrinking", 50000);
|
|
|
|
user_ids = buddy_data.get_filtered_and_sorted_user_ids("");
|
2018-04-23 23:13:52 +02:00
|
|
|
assert.equal(user_ids.length, 700);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2018-12-20 15:55:20 +01:00
|
|
|
|
2022-07-10 01:06:33 +02:00
|
|
|
test("always show me", () => {
|
2021-06-28 13:20:16 +02:00
|
|
|
assert.deepEqual(buddy_data.get_filtered_and_sorted_user_ids(""), [me.user_id]);
|
|
|
|
|
|
|
|
// try to make us show twice
|
2022-07-10 01:06:33 +02:00
|
|
|
presence.presence_info.set(me.user_id, {status: "active"});
|
2021-06-28 13:20:16 +02:00
|
|
|
assert.deepEqual(buddy_data.get_filtered_and_sorted_user_ids(""), [me.user_id]);
|
|
|
|
});
|
|
|
|
|
2021-03-14 10:18:07 +01:00
|
|
|
test("level", () => {
|
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_offline_threshold_seconds = 200;
|
2023-02-21 11:52:30 +01:00
|
|
|
|
2021-03-14 10:18:07 +01:00
|
|
|
add_canned_users();
|
2018-12-20 15:55:20 +01:00
|
|
|
assert.equal(buddy_data.level(me.user_id), 0);
|
|
|
|
assert.equal(buddy_data.level(selma.user_id), 3);
|
|
|
|
|
|
|
|
const server_time = 9999;
|
|
|
|
const info = {
|
|
|
|
website: {
|
|
|
|
status: "active",
|
|
|
|
timestamp: server_time,
|
|
|
|
},
|
|
|
|
};
|
2020-02-07 17:19:03 +01:00
|
|
|
presence.update_info_from_event(me.user_id, info, server_time);
|
|
|
|
presence.update_info_from_event(selma.user_id, info, server_time);
|
2018-12-20 15:55:20 +01:00
|
|
|
|
|
|
|
assert.equal(buddy_data.level(me.user_id), 0);
|
|
|
|
assert.equal(buddy_data.level(selma.user_id), 1);
|
|
|
|
|
2022-09-21 15:49:36 +02:00
|
|
|
user_settings.presence_enabled = false;
|
|
|
|
set_presence(selma.user_id, "offline");
|
2018-12-20 15:55:20 +01:00
|
|
|
|
2018-12-19 21:16:03 +01:00
|
|
|
// Selma gets demoted to level 3, but "me"
|
|
|
|
// stays in level 0.
|
2018-12-20 15:55:20 +01:00
|
|
|
assert.equal(buddy_data.level(me.user_id), 0);
|
2018-12-19 21:16:03 +01:00
|
|
|
assert.equal(buddy_data.level(selma.user_id), 3);
|
2018-12-20 15:55:20 +01:00
|
|
|
});
|
2019-02-28 16:09:03 +01:00
|
|
|
|
2022-07-10 01:06:33 +02:00
|
|
|
test("user_last_seen_time_status", ({override}) => {
|
2021-03-08 16:08:27 +01:00
|
|
|
set_presence(selma.user_id, "active");
|
|
|
|
set_presence(me.user_id, "active");
|
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
assert.equal(buddy_data.user_last_seen_time_status(selma.user_id), "translated: Active now");
|
2019-02-28 16:09:03 +01:00
|
|
|
|
|
|
|
page_params.realm_is_zephyr_mirror_realm = true;
|
2021-06-03 20:43:19 +02:00
|
|
|
assert.equal(
|
|
|
|
buddy_data.user_last_seen_time_status(old_user.user_id),
|
|
|
|
"translated: Last active: translated: Unknown",
|
|
|
|
);
|
2019-02-28 16:09:03 +01:00
|
|
|
page_params.realm_is_zephyr_mirror_realm = false;
|
2020-07-15 00:34:28 +02:00
|
|
|
assert.equal(
|
|
|
|
buddy_data.user_last_seen_time_status(old_user.user_id),
|
2021-06-03 20:43:19 +02:00
|
|
|
"translated: Last active: translated: More than 2 weeks ago",
|
2020-07-15 00:34:28 +02:00
|
|
|
);
|
2019-02-28 16:09:03 +01:00
|
|
|
|
2022-07-10 01:06:33 +02:00
|
|
|
presence.presence_info.set(old_user.user_id, {last_active: 1526137743});
|
2019-02-28 16:09:03 +01:00
|
|
|
|
2021-02-19 14:52:41 +01:00
|
|
|
override(timerender, "last_seen_status_from_date", (date) => {
|
2021-02-05 21:20:14 +01:00
|
|
|
assert.deepEqual(date, new Date(1526137743000));
|
2020-07-15 01:29:15 +02:00
|
|
|
return "May 12";
|
2021-02-19 14:52:41 +01:00
|
|
|
});
|
2019-02-28 16:09:03 +01:00
|
|
|
|
2021-06-03 20:43:19 +02:00
|
|
|
assert.equal(
|
|
|
|
buddy_data.user_last_seen_time_status(old_user.user_id),
|
|
|
|
"translated: Last active: May 12",
|
|
|
|
);
|
2021-06-03 20:45:59 +02:00
|
|
|
|
|
|
|
set_presence(selma.user_id, "idle");
|
|
|
|
assert.equal(buddy_data.user_last_seen_time_status(selma.user_id), "translated: Idle");
|
2019-02-28 16:09:03 +01:00
|
|
|
});
|
2020-02-04 15:38:37 +01:00
|
|
|
|
2022-07-10 01:06:33 +02:00
|
|
|
test("get_items_for_users", () => {
|
2021-05-16 17:17:44 +02:00
|
|
|
people.add_active_user(alice);
|
|
|
|
people.add_active_user(fred);
|
2022-09-21 15:49:36 +02:00
|
|
|
set_presence(alice.user_id, "offline");
|
2021-07-28 16:00:58 +02:00
|
|
|
user_settings.emojiset = "google";
|
2022-08-12 22:41:06 +02:00
|
|
|
user_settings.user_list_style = 2;
|
2021-06-27 19:04:17 +02:00
|
|
|
const status_emoji_info = {
|
2022-07-10 01:06:33 +02:00
|
|
|
emoji_alt_code: false,
|
2021-06-27 19:04:17 +02:00
|
|
|
emoji_name: "car",
|
|
|
|
emoji_code: "1f697",
|
|
|
|
reaction_type: "unicode_emoji",
|
|
|
|
};
|
2021-05-16 17:17:44 +02:00
|
|
|
|
|
|
|
const user_ids = [me.user_id, alice.user_id, fred.user_id];
|
2022-07-10 01:06:33 +02:00
|
|
|
for (const user_id of user_ids) {
|
|
|
|
user_status.set_status_emoji({user_id, ...status_emoji_info});
|
|
|
|
}
|
|
|
|
|
2022-08-12 22:41:06 +02:00
|
|
|
const user_list_style = {
|
|
|
|
COMPACT: false,
|
|
|
|
WITH_STATUS: true,
|
|
|
|
WITH_AVATAR: false,
|
|
|
|
};
|
|
|
|
|
2021-05-16 17:17:44 +02:00
|
|
|
assert.deepEqual(buddy_data.get_items_for_users(user_ids), [
|
|
|
|
{
|
|
|
|
faded: false,
|
2022-10-25 14:38:45 +02:00
|
|
|
href: "#narrow/pm-with/1001-Human-Myself",
|
2021-05-16 17:17:44 +02:00
|
|
|
is_current_user: true,
|
|
|
|
name: "Human Myself",
|
|
|
|
num_unread: 0,
|
2021-06-27 19:04:17 +02:00
|
|
|
status_emoji_info,
|
2022-08-12 22:41:06 +02:00
|
|
|
status_text: undefined,
|
2021-05-16 17:17:44 +02:00
|
|
|
user_circle_class: "user_circle_green",
|
|
|
|
user_id: 1001,
|
2022-08-12 22:41:06 +02:00
|
|
|
user_list_style,
|
2021-05-16 17:17:44 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
faded: false,
|
2022-10-25 14:38:45 +02:00
|
|
|
href: "#narrow/pm-with/1002-Alice-Smith",
|
2021-05-16 17:17:44 +02:00
|
|
|
is_current_user: false,
|
|
|
|
name: "Alice Smith",
|
|
|
|
num_unread: 0,
|
2021-06-27 19:04:17 +02:00
|
|
|
status_emoji_info,
|
2022-08-12 22:41:06 +02:00
|
|
|
status_text: undefined,
|
2022-09-21 15:49:36 +02:00
|
|
|
user_circle_class: "user_circle_empty",
|
2021-05-16 17:17:44 +02:00
|
|
|
user_id: 1002,
|
2022-08-12 22:41:06 +02:00
|
|
|
user_list_style,
|
2021-05-16 17:17:44 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
faded: false,
|
2022-10-25 14:38:45 +02:00
|
|
|
href: "#narrow/pm-with/1003-Fred-Flintstone",
|
2021-05-16 17:17:44 +02:00
|
|
|
is_current_user: false,
|
|
|
|
name: "Fred Flintstone",
|
|
|
|
num_unread: 0,
|
2021-06-27 19:04:17 +02:00
|
|
|
status_emoji_info,
|
2022-08-12 22:41:06 +02:00
|
|
|
status_text: undefined,
|
2021-05-16 17:17:44 +02:00
|
|
|
user_circle_class: "user_circle_empty",
|
|
|
|
user_id: 1003,
|
2022-08-12 22:41:06 +02:00
|
|
|
user_list_style,
|
2021-05-16 17:17:44 +02:00
|
|
|
},
|
|
|
|
]);
|
|
|
|
});
|
|
|
|
|
2022-07-10 01:06:33 +02:00
|
|
|
test("error handling", () => {
|
|
|
|
presence.presence_info.set(42, {status: "active"});
|
2020-07-15 01:29:15 +02:00
|
|
|
blueslip.expect("error", "Unknown user_id in get_by_user_id: 42");
|
|
|
|
blueslip.expect("warn", "Got user_id in presence but not people: 42");
|
2020-02-04 15:38:37 +01:00
|
|
|
buddy_data.get_filtered_and_sorted_user_ids();
|
|
|
|
});
|