2020-08-01 03:43:15 +02:00
|
|
|
"use strict";
|
|
|
|
|
2024-10-09 00:25:41 +02:00
|
|
|
const assert = require("node:assert/strict");
|
2020-11-30 23:46:45 +01:00
|
|
|
|
2024-11-13 07:05:32 +01:00
|
|
|
const {mock_esm, set_global, zrequire} = require("./lib/namespace.cjs");
|
|
|
|
const {run_test} = require("./lib/test.cjs");
|
2020-12-01 00:02:16 +01:00
|
|
|
|
2023-02-22 23:04:10 +01:00
|
|
|
const compose_pm_pill = mock_esm("../src/compose_pm_pill");
|
2020-12-28 20:34:17 +01:00
|
|
|
const compose_state = mock_esm("../src/compose_state");
|
|
|
|
const stream_data = mock_esm("../src/stream_data");
|
2022-07-10 01:06:33 +02:00
|
|
|
|
2024-10-16 13:37:36 +02:00
|
|
|
const {set_realm} = zrequire("state_data");
|
2021-02-10 04:53:22 +01:00
|
|
|
const typing = zrequire("typing");
|
2023-02-22 23:03:47 +01:00
|
|
|
const typing_status = zrequire("../shared/src/typing_status");
|
2024-10-09 08:44:21 +02:00
|
|
|
const {initialize_user_settings} = zrequire("user_settings");
|
|
|
|
|
|
|
|
initialize_user_settings({user_settings: {}});
|
2024-10-16 13:37:36 +02:00
|
|
|
const realm = {};
|
|
|
|
set_realm(realm);
|
2017-03-22 00:41:09 +01:00
|
|
|
|
2023-08-17 14:42:41 +02:00
|
|
|
const TYPING_STARTED_WAIT_PERIOD = 10000;
|
|
|
|
const TYPING_STOPPED_WAIT_PERIOD = 5000;
|
|
|
|
|
2017-03-22 00:41:09 +01:00
|
|
|
function make_time(secs) {
|
|
|
|
// make times semi-realistic
|
|
|
|
return 1000000 + 1000 * secs;
|
|
|
|
}
|
|
|
|
|
|
|
|
function returns_time(secs) {
|
2020-07-15 00:34:28 +02:00
|
|
|
return function () {
|
|
|
|
return make_time(secs);
|
|
|
|
};
|
2017-03-22 00:41:09 +01:00
|
|
|
}
|
|
|
|
|
2022-07-10 01:06:33 +02:00
|
|
|
run_test("basics", ({override, override_rewire}) => {
|
2024-10-16 13:37:36 +02:00
|
|
|
override(realm, "realm_mandatory_topics", true);
|
|
|
|
override(realm, "server_typing_started_wait_period_milliseconds", TYPING_STARTED_WAIT_PERIOD);
|
|
|
|
override(realm, "server_typing_stopped_wait_period_milliseconds", TYPING_STOPPED_WAIT_PERIOD);
|
2021-03-15 15:59:15 +01:00
|
|
|
|
2024-10-16 13:37:36 +02:00
|
|
|
assert.equal(typing_status.state, null);
|
2017-03-22 00:41:09 +01:00
|
|
|
// invalid conversation basically does nothing
|
2019-11-02 00:06:25 +01:00
|
|
|
let worker = {};
|
2024-10-16 13:37:36 +02:00
|
|
|
typing_status.update(
|
|
|
|
worker,
|
|
|
|
null,
|
|
|
|
realm.server_typing_started_wait_period_milliseconds,
|
|
|
|
realm.server_typing_stopped_wait_period_milliseconds,
|
|
|
|
);
|
2017-03-22 00:41:09 +01:00
|
|
|
|
|
|
|
// Start setting up more testing state.
|
2019-11-02 00:06:25 +01:00
|
|
|
const events = {};
|
2017-03-22 00:41:09 +01:00
|
|
|
|
|
|
|
function set_timeout(f, delay) {
|
|
|
|
assert.equal(delay, 5000);
|
|
|
|
events.idle_callback = f;
|
2020-07-15 01:29:15 +02:00
|
|
|
return "idle_timer_stub";
|
2017-03-22 00:41:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function clear_timeout() {
|
|
|
|
events.timer_cleared = true;
|
|
|
|
}
|
|
|
|
|
2020-12-01 00:02:16 +01:00
|
|
|
set_global("setTimeout", set_timeout);
|
|
|
|
set_global("clearTimeout", clear_timeout);
|
2017-03-22 00:41:09 +01:00
|
|
|
|
|
|
|
function notify_server_start(recipient) {
|
2024-01-23 19:46:07 +01:00
|
|
|
assert.deepStrictEqual(recipient, {message_type: "direct", ids: [1, 2]});
|
2017-03-22 00:41:09 +01:00
|
|
|
events.started = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function notify_server_stop(recipient) {
|
2024-01-23 19:46:07 +01:00
|
|
|
assert.deepStrictEqual(recipient, {message_type: "direct", ids: [1, 2]});
|
2017-03-22 00:41:09 +01:00
|
|
|
events.stopped = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function clear_events() {
|
|
|
|
events.idle_callback = undefined;
|
|
|
|
events.started = false;
|
|
|
|
events.stopped = false;
|
|
|
|
events.timer_cleared = false;
|
|
|
|
}
|
|
|
|
|
typing_status: Combine two parameters into one, with a maybe-type.
The main motivation for this change is to simplify this interface
and make it easier to reason about.
The case where it affects the behavior is when
is_valid_conversation() returns false, while current_recipient
and get_recipient() agree on some truthy value.
This means the message-content textarea is empty -- in fact the
user just cleared it, because we got here from an input event on
it -- but the compose box is still open to some PM thread that we
have a typing notification still outstanding for.
The old behavior is that in this situation we would ignore the
fact that the content was empty, and go ahead and prolong the
typing notification, by updating our timer and possibly sending a
"still typing" notice.
This contrasts with the behavior (both old and new) in the case
where the content is empty and we *don't* already have an
outstanding typing notification, or we have one to some other
thread. In that case, we cancel any existing notification and
don't start a new one, exactly as if `stop` were called
(e.g. because the user closed the compose box.)
The new behavior is that we always treat clearing the input as
"stopped typing": not only in those cases where we already did,
but also in the case where we still have the same recipients.
(Which seems like probably the common case.)
That seems like the preferable behavior; indeed it's hard to see
the point of the "compose_empty" logic if restricted to the other
cases. It also makes the interface simpler.
Those two properties don't seem like a coincidence, either: the
complicated interface made it difficult to unpack exactly what
logic we actually had, which made it easy for surprising wrinkles
to hang out indefinitely.
2019-10-21 23:37:22 +02:00
|
|
|
function call_handler(new_recipient) {
|
2017-03-22 00:41:09 +01:00
|
|
|
clear_events();
|
2023-08-17 14:42:41 +02:00
|
|
|
typing_status.update(
|
|
|
|
worker,
|
|
|
|
new_recipient,
|
2024-10-16 13:37:36 +02:00
|
|
|
realm.server_typing_started_wait_period_milliseconds,
|
|
|
|
realm.server_typing_stopped_wait_period_milliseconds,
|
2023-08-17 14:42:41 +02:00
|
|
|
);
|
2017-03-22 00:41:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
worker = {
|
|
|
|
get_current_time: returns_time(5),
|
2020-07-20 22:18:43 +02:00
|
|
|
notify_server_start,
|
|
|
|
notify_server_stop,
|
2017-03-22 00:41:09 +01:00
|
|
|
};
|
|
|
|
|
2023-06-11 18:54:04 +02:00
|
|
|
// Start talking to users having ids - 1, 2.
|
2024-01-23 19:46:07 +01:00
|
|
|
call_handler({message_type: "direct", ids: [1, 2]});
|
2017-03-22 00:41:09 +01:00
|
|
|
assert.deepEqual(typing_status.state, {
|
|
|
|
next_send_start_time: make_time(5 + 10),
|
2020-07-15 01:29:15 +02:00
|
|
|
idle_timer: "idle_timer_stub",
|
2024-01-23 19:46:07 +01:00
|
|
|
current_recipient: {message_type: "direct", ids: [1, 2]},
|
2017-03-22 00:41:09 +01:00
|
|
|
});
|
|
|
|
assert.deepEqual(events, {
|
|
|
|
idle_callback: events.idle_callback,
|
|
|
|
started: true,
|
|
|
|
stopped: false,
|
|
|
|
timer_cleared: false,
|
|
|
|
});
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(events.idle_callback);
|
2017-03-22 00:41:09 +01:00
|
|
|
|
|
|
|
// type again 3 seconds later
|
|
|
|
worker.get_current_time = returns_time(8);
|
2024-01-23 19:46:07 +01:00
|
|
|
call_handler({message_type: "direct", ids: [1, 2]});
|
2017-03-22 00:41:09 +01:00
|
|
|
assert.deepEqual(typing_status.state, {
|
|
|
|
next_send_start_time: make_time(5 + 10),
|
2020-07-15 01:29:15 +02:00
|
|
|
idle_timer: "idle_timer_stub",
|
2024-01-23 19:46:07 +01:00
|
|
|
current_recipient: {message_type: "direct", ids: [1, 2]},
|
2017-03-22 00:41:09 +01:00
|
|
|
});
|
|
|
|
assert.deepEqual(events, {
|
|
|
|
idle_callback: events.idle_callback,
|
|
|
|
started: false,
|
|
|
|
stopped: false,
|
|
|
|
timer_cleared: true,
|
|
|
|
});
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(events.idle_callback);
|
2017-03-22 00:41:09 +01:00
|
|
|
|
|
|
|
// type after 15 secs, so that we can notify the server
|
|
|
|
// again
|
|
|
|
worker.get_current_time = returns_time(18);
|
2024-01-23 19:46:07 +01:00
|
|
|
call_handler({message_type: "direct", ids: [1, 2]});
|
2017-03-22 00:41:09 +01:00
|
|
|
assert.deepEqual(typing_status.state, {
|
|
|
|
next_send_start_time: make_time(18 + 10),
|
2020-07-15 01:29:15 +02:00
|
|
|
idle_timer: "idle_timer_stub",
|
2024-01-23 19:46:07 +01:00
|
|
|
current_recipient: {message_type: "direct", ids: [1, 2]},
|
2017-03-22 00:41:09 +01:00
|
|
|
});
|
|
|
|
assert.deepEqual(events, {
|
|
|
|
idle_callback: events.idle_callback,
|
|
|
|
started: true,
|
|
|
|
stopped: false,
|
|
|
|
timer_cleared: true,
|
|
|
|
});
|
|
|
|
|
2023-06-11 18:54:04 +02:00
|
|
|
// Now call recipients idle callback that we captured earlier.
|
2019-11-02 00:06:25 +01:00
|
|
|
const callback = events.idle_callback;
|
2017-03-22 00:41:09 +01:00
|
|
|
clear_events();
|
|
|
|
callback();
|
2023-05-31 19:02:24 +02:00
|
|
|
assert.deepEqual(typing_status.state, null);
|
2017-03-22 00:41:09 +01:00
|
|
|
assert.deepEqual(events, {
|
|
|
|
idle_callback: undefined,
|
|
|
|
started: false,
|
|
|
|
stopped: true,
|
|
|
|
timer_cleared: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
// Call stop with nothing going on.
|
2019-10-22 02:52:01 +02:00
|
|
|
call_handler(null);
|
2023-05-31 19:02:24 +02:00
|
|
|
assert.deepEqual(typing_status.state, null);
|
2017-03-22 00:41:09 +01:00
|
|
|
assert.deepEqual(events, {
|
|
|
|
idle_callback: undefined,
|
|
|
|
started: false,
|
|
|
|
stopped: false,
|
|
|
|
timer_cleared: false,
|
|
|
|
});
|
|
|
|
|
2023-06-11 18:54:04 +02:00
|
|
|
// Start talking to users again.
|
2017-03-22 00:41:09 +01:00
|
|
|
worker.get_current_time = returns_time(50);
|
2024-01-23 19:46:07 +01:00
|
|
|
call_handler({message_type: "direct", ids: [1, 2]});
|
2017-03-22 00:41:09 +01:00
|
|
|
assert.deepEqual(typing_status.state, {
|
|
|
|
next_send_start_time: make_time(50 + 10),
|
2020-07-15 01:29:15 +02:00
|
|
|
idle_timer: "idle_timer_stub",
|
2024-01-23 19:46:07 +01:00
|
|
|
current_recipient: {message_type: "direct", ids: [1, 2]},
|
2017-03-22 00:41:09 +01:00
|
|
|
});
|
|
|
|
assert.deepEqual(events, {
|
|
|
|
idle_callback: events.idle_callback,
|
|
|
|
started: true,
|
|
|
|
stopped: false,
|
|
|
|
timer_cleared: false,
|
|
|
|
});
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(events.idle_callback);
|
2017-03-22 00:41:09 +01:00
|
|
|
|
2023-06-11 18:54:04 +02:00
|
|
|
// Explicitly stop users.
|
2019-10-22 02:52:01 +02:00
|
|
|
call_handler(null);
|
2023-05-31 19:02:24 +02:00
|
|
|
assert.deepEqual(typing_status.state, null);
|
2017-03-22 00:41:09 +01:00
|
|
|
assert.deepEqual(events, {
|
|
|
|
idle_callback: undefined,
|
|
|
|
started: false,
|
|
|
|
stopped: true,
|
|
|
|
timer_cleared: true,
|
|
|
|
});
|
|
|
|
|
2023-06-11 18:54:04 +02:00
|
|
|
// Start talking to users again.
|
2017-03-22 00:41:09 +01:00
|
|
|
worker.get_current_time = returns_time(80);
|
2024-01-23 19:46:07 +01:00
|
|
|
call_handler({message_type: "direct", ids: [1, 2]});
|
2017-03-22 00:41:09 +01:00
|
|
|
assert.deepEqual(typing_status.state, {
|
|
|
|
next_send_start_time: make_time(80 + 10),
|
2020-07-15 01:29:15 +02:00
|
|
|
idle_timer: "idle_timer_stub",
|
2024-01-23 19:46:07 +01:00
|
|
|
current_recipient: {message_type: "direct", ids: [1, 2]},
|
2017-03-22 00:41:09 +01:00
|
|
|
});
|
|
|
|
assert.deepEqual(events, {
|
|
|
|
idle_callback: events.idle_callback,
|
|
|
|
started: true,
|
|
|
|
stopped: false,
|
|
|
|
timer_cleared: false,
|
|
|
|
});
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(events.idle_callback);
|
2017-03-22 00:41:09 +01:00
|
|
|
|
|
|
|
// Switch to an invalid conversation.
|
2019-10-22 02:52:01 +02:00
|
|
|
call_handler(null);
|
2023-05-31 19:02:24 +02:00
|
|
|
assert.deepEqual(typing_status.state, null);
|
2017-03-22 00:41:09 +01:00
|
|
|
assert.deepEqual(events, {
|
|
|
|
idle_callback: undefined,
|
|
|
|
started: false,
|
|
|
|
stopped: true,
|
|
|
|
timer_cleared: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
// Switch to another invalid conversation.
|
2019-10-22 02:52:01 +02:00
|
|
|
call_handler(null);
|
2023-05-31 19:02:24 +02:00
|
|
|
assert.deepEqual(typing_status.state, null);
|
2017-03-22 00:41:09 +01:00
|
|
|
assert.deepEqual(events, {
|
|
|
|
idle_callback: undefined,
|
|
|
|
started: false,
|
|
|
|
stopped: false,
|
|
|
|
timer_cleared: false,
|
|
|
|
});
|
|
|
|
|
2023-06-11 18:54:04 +02:00
|
|
|
// Start talking to users again.
|
2017-03-22 00:41:09 +01:00
|
|
|
worker.get_current_time = returns_time(170);
|
2024-01-23 19:46:07 +01:00
|
|
|
call_handler({message_type: "direct", ids: [1, 2]});
|
2017-03-22 00:41:09 +01:00
|
|
|
assert.deepEqual(typing_status.state, {
|
|
|
|
next_send_start_time: make_time(170 + 10),
|
2020-07-15 01:29:15 +02:00
|
|
|
idle_timer: "idle_timer_stub",
|
2024-01-23 19:46:07 +01:00
|
|
|
current_recipient: {message_type: "direct", ids: [1, 2]},
|
2017-03-22 00:41:09 +01:00
|
|
|
});
|
|
|
|
assert.deepEqual(events, {
|
|
|
|
idle_callback: events.idle_callback,
|
|
|
|
started: true,
|
|
|
|
stopped: false,
|
|
|
|
timer_cleared: false,
|
|
|
|
});
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(events.idle_callback);
|
2017-03-22 00:41:09 +01:00
|
|
|
|
2023-06-11 18:54:04 +02:00
|
|
|
// Switch to new users now.
|
2017-03-22 00:41:09 +01:00
|
|
|
worker.get_current_time = returns_time(171);
|
|
|
|
|
2021-02-23 14:37:26 +01:00
|
|
|
worker.notify_server_start = (recipient) => {
|
2024-01-23 19:46:07 +01:00
|
|
|
assert.deepStrictEqual(recipient, {message_type: "direct", ids: [3, 4]});
|
2017-03-22 00:41:09 +01:00
|
|
|
events.started = true;
|
|
|
|
};
|
|
|
|
|
2024-01-23 19:46:07 +01:00
|
|
|
call_handler({message_type: "direct", ids: [3, 4]});
|
2017-03-22 00:41:09 +01:00
|
|
|
assert.deepEqual(typing_status.state, {
|
|
|
|
next_send_start_time: make_time(171 + 10),
|
2020-07-15 01:29:15 +02:00
|
|
|
idle_timer: "idle_timer_stub",
|
2024-01-23 19:46:07 +01:00
|
|
|
current_recipient: {message_type: "direct", ids: [3, 4]},
|
2017-03-22 00:41:09 +01:00
|
|
|
});
|
|
|
|
assert.deepEqual(events, {
|
|
|
|
idle_callback: events.idle_callback,
|
|
|
|
started: true,
|
|
|
|
stopped: true,
|
|
|
|
timer_cleared: true,
|
|
|
|
});
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(events.idle_callback);
|
2017-03-22 00:41:09 +01:00
|
|
|
|
2024-10-16 13:37:36 +02:00
|
|
|
// If realm requires topics for channel messages and
|
|
|
|
// topic is an empty string, no typing recipient is set
|
|
|
|
override(compose_state, "get_message_type", () => "stream");
|
|
|
|
override(compose_state, "stream_name", () => "Verona");
|
|
|
|
override(stream_data, "get_stream_id", () => "2");
|
|
|
|
override(compose_state, "topic", () => "");
|
|
|
|
assert.equal(typing.get_recipient(), null);
|
|
|
|
|
2019-06-07 03:17:35 +02:00
|
|
|
// test that we correctly detect if worker.get_recipient
|
2020-12-28 20:34:17 +01:00
|
|
|
// and typing_status.state.current_recipient are the same
|
2019-10-21 23:03:19 +02:00
|
|
|
|
2022-07-10 01:06:33 +02:00
|
|
|
override(compose_pm_pill, "get_user_ids_string", () => "1,2,3");
|
2020-12-28 20:34:17 +01:00
|
|
|
override(compose_state, "get_message_type", () => "private");
|
|
|
|
typing_status.state.current_recipient = typing.get_recipient();
|
2019-06-07 03:17:35 +02:00
|
|
|
|
|
|
|
const call_count = {
|
|
|
|
maybe_ping_server: 0,
|
2019-10-22 02:02:32 +02:00
|
|
|
actually_ping_server: 0,
|
2019-06-07 03:17:35 +02:00
|
|
|
start_or_extend_idle_timer: 0,
|
|
|
|
stop_last_notification: 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
// stub functions to see how may time they are called
|
2020-05-27 00:50:02 +02:00
|
|
|
for (const method of Object.keys(call_count)) {
|
2022-01-08 10:27:06 +01:00
|
|
|
override_rewire(typing_status, method, () => {
|
2019-06-07 03:17:35 +02:00
|
|
|
call_count[method] += 1;
|
2019-10-12 04:48:15 +02:00
|
|
|
});
|
2019-06-07 03:17:35 +02:00
|
|
|
}
|
|
|
|
|
2020-12-28 20:34:17 +01:00
|
|
|
// User ids of people in compose narrow doesn't change and is same as state.current_recipient
|
2019-06-07 03:17:35 +02:00
|
|
|
// so counts of function should increase except stop_last_notification
|
2023-08-17 14:42:41 +02:00
|
|
|
typing_status.update(
|
|
|
|
worker,
|
|
|
|
typing.get_recipient(),
|
2024-10-16 13:37:36 +02:00
|
|
|
realm.server_typing_started_wait_period_milliseconds,
|
|
|
|
realm.server_typing_stopped_wait_period_milliseconds,
|
2023-08-17 14:42:41 +02:00
|
|
|
);
|
2019-06-07 03:17:35 +02:00
|
|
|
assert.deepEqual(call_count.maybe_ping_server, 1);
|
|
|
|
assert.deepEqual(call_count.start_or_extend_idle_timer, 1);
|
|
|
|
assert.deepEqual(call_count.stop_last_notification, 0);
|
|
|
|
|
2023-08-17 14:42:41 +02:00
|
|
|
typing_status.update(
|
|
|
|
worker,
|
|
|
|
typing.get_recipient(),
|
2024-10-16 13:37:36 +02:00
|
|
|
realm.server_typing_started_wait_period_milliseconds,
|
|
|
|
realm.server_typing_stopped_wait_period_milliseconds,
|
2023-08-17 14:42:41 +02:00
|
|
|
);
|
2019-06-07 03:17:35 +02:00
|
|
|
assert.deepEqual(call_count.maybe_ping_server, 2);
|
|
|
|
assert.deepEqual(call_count.start_or_extend_idle_timer, 2);
|
|
|
|
assert.deepEqual(call_count.stop_last_notification, 0);
|
|
|
|
|
|
|
|
// change in recipient and new_recipient should make us
|
|
|
|
// call typing_status.stop_last_notification
|
2022-07-10 01:06:33 +02:00
|
|
|
override(compose_pm_pill, "get_user_ids_string", () => "2,3,4");
|
2023-08-17 14:42:41 +02:00
|
|
|
typing_status.update(
|
|
|
|
worker,
|
|
|
|
typing.get_recipient(),
|
2024-10-16 13:37:36 +02:00
|
|
|
realm.server_typing_started_wait_period_milliseconds,
|
|
|
|
realm.server_typing_stopped_wait_period_milliseconds,
|
2023-08-17 14:42:41 +02:00
|
|
|
);
|
2019-06-07 03:17:35 +02:00
|
|
|
assert.deepEqual(call_count.maybe_ping_server, 2);
|
2019-10-22 02:02:32 +02:00
|
|
|
assert.deepEqual(call_count.start_or_extend_idle_timer, 3);
|
2019-06-07 03:17:35 +02:00
|
|
|
assert.deepEqual(call_count.stop_last_notification, 1);
|
2019-12-02 18:01:31 +01:00
|
|
|
|
2020-12-28 20:34:17 +01:00
|
|
|
// Stream messages
|
|
|
|
override(compose_state, "get_message_type", () => "stream");
|
|
|
|
override(compose_state, "stream_name", () => "Verona");
|
|
|
|
override(stream_data, "get_stream_id", () => "2");
|
|
|
|
override(compose_state, "topic", () => "test topic");
|
2023-08-17 14:42:41 +02:00
|
|
|
typing_status.update(
|
|
|
|
worker,
|
|
|
|
typing.get_recipient(),
|
2024-10-16 13:37:36 +02:00
|
|
|
realm.server_typing_started_wait_period_milliseconds,
|
|
|
|
realm.server_typing_stopped_wait_period_milliseconds,
|
2023-08-17 14:42:41 +02:00
|
|
|
);
|
2019-12-02 18:01:31 +01:00
|
|
|
assert.deepEqual(call_count.maybe_ping_server, 2);
|
2020-12-28 20:34:17 +01:00
|
|
|
assert.deepEqual(call_count.start_or_extend_idle_timer, 4);
|
2019-12-02 18:01:31 +01:00
|
|
|
assert.deepEqual(call_count.stop_last_notification, 2);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2020-12-28 20:34:17 +01:00
|
|
|
|
2024-10-16 13:37:36 +02:00
|
|
|
run_test("stream_messages", ({override, override_rewire}) => {
|
|
|
|
override(realm, "server_typing_started_wait_period_milliseconds", TYPING_STARTED_WAIT_PERIOD);
|
|
|
|
override(realm, "server_typing_stopped_wait_period_milliseconds", TYPING_STOPPED_WAIT_PERIOD);
|
2020-12-28 20:34:17 +01:00
|
|
|
override_rewire(typing_status, "state", null);
|
|
|
|
|
|
|
|
let worker = {};
|
|
|
|
const events = {};
|
|
|
|
|
|
|
|
function set_timeout(f, delay) {
|
|
|
|
assert.equal(delay, 5000);
|
|
|
|
events.idle_callback = f;
|
|
|
|
return "idle_timer_stub";
|
|
|
|
}
|
|
|
|
|
|
|
|
function clear_timeout() {
|
|
|
|
events.timer_cleared = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
set_global("setTimeout", set_timeout);
|
|
|
|
set_global("clearTimeout", clear_timeout);
|
|
|
|
|
|
|
|
function notify_server_start(recipient) {
|
2024-01-23 19:46:07 +01:00
|
|
|
assert.deepStrictEqual(recipient, {message_type: "stream", stream_id: 3, topic: "test"});
|
2020-12-28 20:34:17 +01:00
|
|
|
events.started = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function notify_server_stop(recipient) {
|
2024-01-23 19:46:07 +01:00
|
|
|
assert.deepStrictEqual(recipient, {message_type: "stream", stream_id: 3, topic: "test"});
|
2020-12-28 20:34:17 +01:00
|
|
|
events.stopped = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function clear_events() {
|
|
|
|
events.idle_callback = undefined;
|
|
|
|
events.started = false;
|
|
|
|
events.stopped = false;
|
|
|
|
events.timer_cleared = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function call_handler(new_recipient) {
|
|
|
|
clear_events();
|
|
|
|
typing_status.update(
|
|
|
|
worker,
|
|
|
|
new_recipient,
|
2024-10-16 13:37:36 +02:00
|
|
|
realm.server_typing_started_wait_period_milliseconds,
|
|
|
|
realm.server_typing_stopped_wait_period_milliseconds,
|
2020-12-28 20:34:17 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
worker = {
|
|
|
|
get_current_time: returns_time(5),
|
|
|
|
notify_server_start,
|
|
|
|
notify_server_stop,
|
|
|
|
};
|
|
|
|
|
|
|
|
// Start typing stream message
|
2024-01-23 19:46:07 +01:00
|
|
|
call_handler({message_type: "stream", stream_id: 3, topic: "test"});
|
2020-12-28 20:34:17 +01:00
|
|
|
assert.deepEqual(typing_status.state, {
|
|
|
|
next_send_start_time: make_time(5 + 10),
|
|
|
|
idle_timer: "idle_timer_stub",
|
2024-01-23 19:46:07 +01:00
|
|
|
current_recipient: {message_type: "stream", stream_id: 3, topic: "test"},
|
2020-12-28 20:34:17 +01:00
|
|
|
});
|
|
|
|
assert.deepEqual(events, {
|
|
|
|
idle_callback: events.idle_callback,
|
|
|
|
started: true,
|
|
|
|
stopped: false,
|
|
|
|
timer_cleared: false,
|
|
|
|
});
|
|
|
|
assert.ok(events.idle_callback);
|
|
|
|
|
|
|
|
// type again 3 seconds later. Covers 'same_stream_and_topic' codepath.
|
|
|
|
worker.get_current_time = returns_time(8);
|
2024-01-23 19:46:07 +01:00
|
|
|
call_handler({message_type: "stream", stream_id: 3, topic: "test"});
|
2020-12-28 20:34:17 +01:00
|
|
|
assert.deepEqual(typing_status.state, {
|
|
|
|
next_send_start_time: make_time(5 + 10),
|
|
|
|
idle_timer: "idle_timer_stub",
|
2024-01-23 19:46:07 +01:00
|
|
|
current_recipient: {message_type: "stream", stream_id: 3, topic: "test"},
|
2020-12-28 20:34:17 +01:00
|
|
|
});
|
|
|
|
assert.deepEqual(events, {
|
|
|
|
idle_callback: events.idle_callback,
|
|
|
|
started: false,
|
|
|
|
stopped: false,
|
|
|
|
timer_cleared: true,
|
|
|
|
});
|
|
|
|
assert.ok(events.idle_callback);
|
|
|
|
|
|
|
|
// Explicitly stop.
|
|
|
|
call_handler(null);
|
|
|
|
assert.deepEqual(typing_status.state, null);
|
|
|
|
assert.deepEqual(events, {
|
|
|
|
idle_callback: undefined,
|
|
|
|
started: false,
|
|
|
|
stopped: true,
|
|
|
|
timer_cleared: true,
|
|
|
|
});
|
|
|
|
});
|