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, zrequire} = require("./lib/namespace");
|
|
|
|
const {run_test} = require("./lib/test");
|
|
|
|
const blueslip = require("./lib/zblueslip");
|
|
|
|
const $ = require("./lib/zjquery");
|
|
|
|
const {user_settings} = require("./lib/zpage_params");
|
2020-12-01 00:02:16 +01:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
let $window_stub;
|
|
|
|
set_global("to_$", () => $window_stub);
|
2020-07-15 01:29:15 +02:00
|
|
|
|
|
|
|
set_global("document", "document-stub");
|
2021-02-10 04:53:22 +01:00
|
|
|
const history = set_global("history", {});
|
2020-07-15 01:29:15 +02:00
|
|
|
|
2023-02-22 23:04:10 +01:00
|
|
|
const admin = mock_esm("../src/admin");
|
|
|
|
const drafts = mock_esm("../src/drafts");
|
|
|
|
const info_overlay = mock_esm("../src/info_overlay");
|
|
|
|
const message_viewport = mock_esm("../src/message_viewport");
|
|
|
|
const narrow = mock_esm("../src/narrow");
|
|
|
|
const overlays = mock_esm("../src/overlays");
|
2023-05-02 18:25:39 +02:00
|
|
|
const popovers = mock_esm("../src/popovers");
|
2023-02-22 23:04:10 +01:00
|
|
|
const recent_topics_ui = mock_esm("../src/recent_topics_ui");
|
|
|
|
const settings = mock_esm("../src/settings");
|
|
|
|
const stream_settings_ui = mock_esm("../src/stream_settings_ui");
|
|
|
|
const ui_util = mock_esm("../src/ui_util");
|
|
|
|
const ui_report = mock_esm("../src/ui_report");
|
2023-06-15 17:07:10 +02:00
|
|
|
mock_esm("../src/left_sidebar_navigation_area", {
|
2022-11-17 23:33:43 +01:00
|
|
|
handle_narrow_deactivated() {},
|
2020-09-20 10:14:24 +02:00
|
|
|
});
|
2021-03-06 17:37:51 +01:00
|
|
|
set_global("favicon", {});
|
2020-07-15 01:29:15 +02:00
|
|
|
|
2021-03-22 16:09:12 +01:00
|
|
|
const browser_history = zrequire("browser_history");
|
2020-12-01 23:21:38 +01:00
|
|
|
const people = zrequire("people");
|
|
|
|
const hash_util = zrequire("hash_util");
|
|
|
|
const hashchange = zrequire("hashchange");
|
|
|
|
const stream_data = zrequire("stream_data");
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
run_test("operators_round_trip", () => {
|
2019-11-02 00:06:25 +01:00
|
|
|
let operators;
|
|
|
|
let hash;
|
|
|
|
let narrow;
|
2014-02-19 22:19:16 +01:00
|
|
|
|
|
|
|
operators = [
|
2020-07-15 01:29:15 +02:00
|
|
|
{operator: "stream", operand: "devel"},
|
|
|
|
{operator: "topic", operand: "algol"},
|
2014-02-19 22:19:16 +01:00
|
|
|
];
|
2018-08-04 16:33:28 +02:00
|
|
|
hash = hash_util.operators_to_hash(operators);
|
2020-07-15 01:29:15 +02:00
|
|
|
assert.equal(hash, "#narrow/stream/devel/topic/algol");
|
2014-02-19 22:19:16 +01:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
narrow = hash_util.parse_narrow(hash.split("/"));
|
2017-01-05 22:04:33 +01:00
|
|
|
assert.deepEqual(narrow, [
|
2020-07-15 01:29:15 +02:00
|
|
|
{operator: "stream", operand: "devel", negated: false},
|
|
|
|
{operator: "topic", operand: "algol", negated: false},
|
2017-01-05 22:04:33 +01:00
|
|
|
]);
|
|
|
|
|
2014-02-19 22:19:16 +01:00
|
|
|
operators = [
|
2020-07-15 01:29:15 +02:00
|
|
|
{operator: "stream", operand: "devel"},
|
|
|
|
{operator: "topic", operand: "visual c++", negated: true},
|
2014-02-19 22:19:16 +01:00
|
|
|
];
|
2018-08-04 16:33:28 +02:00
|
|
|
hash = hash_util.operators_to_hash(operators);
|
2020-07-15 01:29:15 +02:00
|
|
|
assert.equal(hash, "#narrow/stream/devel/-topic/visual.20c.2B.2B");
|
2017-01-05 22:04:33 +01:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
narrow = hash_util.parse_narrow(hash.split("/"));
|
2017-01-05 22:04:33 +01:00
|
|
|
assert.deepEqual(narrow, [
|
2020-07-15 01:29:15 +02:00
|
|
|
{operator: "stream", operand: "devel", negated: false},
|
|
|
|
{operator: "topic", operand: "visual c++", negated: true},
|
2017-01-05 22:04:33 +01:00
|
|
|
]);
|
|
|
|
|
2018-02-15 21:02:47 +01:00
|
|
|
// test new encodings, where we have a stream id
|
2019-11-02 00:06:25 +01:00
|
|
|
const florida_stream = {
|
2020-07-15 01:29:15 +02:00
|
|
|
name: "Florida, USA",
|
2018-02-15 21:02:47 +01:00
|
|
|
stream_id: 987,
|
|
|
|
};
|
2020-02-09 22:02:55 +01:00
|
|
|
stream_data.add_sub(florida_stream);
|
2020-07-15 00:34:28 +02:00
|
|
|
operators = [{operator: "stream", operand: "Florida, USA"}];
|
2018-08-04 16:33:28 +02:00
|
|
|
hash = hash_util.operators_to_hash(operators);
|
2020-07-15 01:29:15 +02:00
|
|
|
assert.equal(hash, "#narrow/stream/987-Florida.2C-USA");
|
|
|
|
narrow = hash_util.parse_narrow(hash.split("/"));
|
2020-07-15 00:34:28 +02:00
|
|
|
assert.deepEqual(narrow, [{operator: "stream", operand: "Florida, USA", negated: false}]);
|
2018-05-15 15:59:50 +02:00
|
|
|
});
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
run_test("operators_trailing_slash", () => {
|
|
|
|
const hash = "#narrow/stream/devel/topic/algol/";
|
|
|
|
const narrow = hash_util.parse_narrow(hash.split("/"));
|
2018-05-15 15:59:50 +02:00
|
|
|
assert.deepEqual(narrow, [
|
2020-07-15 01:29:15 +02:00
|
|
|
{operator: "stream", operand: "devel", negated: false},
|
|
|
|
{operator: "topic", operand: "algol", negated: false},
|
2018-02-15 21:02:47 +01:00
|
|
|
]);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2017-01-19 03:53:50 +01:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
run_test("people_slugs", () => {
|
2019-11-02 00:06:25 +01:00
|
|
|
let operators;
|
|
|
|
let hash;
|
2023-04-11 21:04:33 +02:00
|
|
|
let narrow;
|
2017-01-19 03:53:50 +01:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const alice = {
|
2020-07-15 01:29:15 +02:00
|
|
|
email: "alice@example.com",
|
2017-01-19 03:53:50 +01:00
|
|
|
user_id: 42,
|
2020-07-15 01:29:15 +02:00
|
|
|
full_name: "Alice Smith",
|
2017-01-19 03:53:50 +01:00
|
|
|
};
|
|
|
|
|
2020-05-26 22:34:15 +02:00
|
|
|
people.add_active_user(alice);
|
2020-07-15 00:34:28 +02:00
|
|
|
operators = [{operator: "sender", operand: "alice@example.com"}];
|
2018-08-04 16:33:28 +02:00
|
|
|
hash = hash_util.operators_to_hash(operators);
|
2022-10-25 14:38:45 +02:00
|
|
|
assert.equal(hash, "#narrow/sender/42-Alice-Smith");
|
2023-04-11 21:04:33 +02:00
|
|
|
narrow = hash_util.parse_narrow(hash.split("/"));
|
2020-07-15 00:34:28 +02:00
|
|
|
assert.deepEqual(narrow, [{operator: "sender", operand: "alice@example.com", negated: false}]);
|
2017-01-19 03:53:50 +01:00
|
|
|
|
2023-04-11 21:04:33 +02:00
|
|
|
operators = [{operator: "dm", operand: "alice@example.com"}];
|
|
|
|
hash = hash_util.operators_to_hash(operators);
|
|
|
|
assert.equal(hash, "#narrow/dm/42-Alice-Smith");
|
|
|
|
narrow = hash_util.parse_narrow(hash.split("/"));
|
|
|
|
assert.deepEqual(narrow, [{operator: "dm", operand: "alice@example.com", negated: false}]);
|
|
|
|
|
|
|
|
// Even though we renamed "pm-with" to "dm", preexisting
|
|
|
|
// links/URLs with "pm-with" operator are handled correctly.
|
2020-07-15 00:34:28 +02:00
|
|
|
operators = [{operator: "pm-with", operand: "alice@example.com"}];
|
2018-08-04 16:33:28 +02:00
|
|
|
hash = hash_util.operators_to_hash(operators);
|
2022-10-25 14:38:45 +02:00
|
|
|
assert.equal(hash, "#narrow/pm-with/42-Alice-Smith");
|
2023-04-11 21:04:33 +02:00
|
|
|
narrow = hash_util.parse_narrow(hash.split("/"));
|
|
|
|
assert.deepEqual(narrow, [{operator: "pm-with", operand: "alice@example.com", negated: false}]);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2018-04-11 13:14:39 +02:00
|
|
|
|
2022-07-10 01:06:33 +02:00
|
|
|
function test_helper({override, change_tab}) {
|
2019-11-02 00:06:25 +01:00
|
|
|
let events = [];
|
|
|
|
let narrow_terms;
|
2018-04-11 13:14:39 +02:00
|
|
|
|
2021-02-11 01:42:59 +01:00
|
|
|
function stub(module, func_name) {
|
|
|
|
module[func_name] = () => {
|
|
|
|
events.push([module, func_name]);
|
2018-04-11 13:14:39 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-02-11 01:42:59 +01:00
|
|
|
stub(admin, "launch");
|
2023-04-15 18:52:44 +02:00
|
|
|
stub(admin, "build_page");
|
2021-02-11 01:42:59 +01:00
|
|
|
stub(drafts, "launch");
|
|
|
|
stub(message_viewport, "stop_auto_scrolling");
|
|
|
|
stub(narrow, "deactivate");
|
|
|
|
stub(overlays, "close_for_hash_change");
|
|
|
|
stub(settings, "launch");
|
2023-04-15 18:52:44 +02:00
|
|
|
stub(settings, "build_page");
|
2021-07-09 15:51:31 +02:00
|
|
|
stub(stream_settings_ui, "launch");
|
2021-02-11 01:42:59 +01:00
|
|
|
stub(ui_util, "blur_active_element");
|
2022-02-25 19:27:25 +01:00
|
|
|
stub(ui_report, "error");
|
2018-04-11 13:14:39 +02:00
|
|
|
|
2021-03-14 11:01:58 +01:00
|
|
|
if (change_tab) {
|
2022-07-10 01:06:33 +02:00
|
|
|
override(narrow, "activate", (terms) => {
|
2021-03-14 11:01:58 +01:00
|
|
|
narrow_terms = terms;
|
|
|
|
events.push("narrow.activate");
|
|
|
|
});
|
2018-04-11 13:14:39 +02:00
|
|
|
|
2021-03-14 11:01:58 +01:00
|
|
|
override(info_overlay, "show", (name) => {
|
|
|
|
events.push("info: " + name);
|
|
|
|
});
|
|
|
|
}
|
2018-04-11 13:14:39 +02:00
|
|
|
|
|
|
|
return {
|
2022-11-17 23:33:43 +01:00
|
|
|
clear_events() {
|
2018-04-11 13:14:39 +02:00
|
|
|
events = [];
|
|
|
|
},
|
2022-11-17 23:33:43 +01:00
|
|
|
assert_events(expected_events) {
|
2021-03-14 11:01:58 +01:00
|
|
|
assert.deepEqual(events, expected_events);
|
2018-04-11 13:14:39 +02:00
|
|
|
},
|
2020-07-02 01:41:40 +02:00
|
|
|
get_narrow_terms: () => narrow_terms,
|
2018-04-11 13:14:39 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-07-10 01:06:33 +02:00
|
|
|
run_test("hash_interactions", ({override}) => {
|
2022-01-25 11:36:19 +01:00
|
|
|
$window_stub = $.create("window-stub");
|
2021-07-28 16:00:58 +02:00
|
|
|
user_settings.default_view = "recent_topics";
|
2021-03-14 11:01:58 +01:00
|
|
|
|
2022-07-10 01:06:33 +02:00
|
|
|
const helper = test_helper({override, change_tab: true});
|
2018-04-11 13:14:39 +02:00
|
|
|
|
2021-06-19 06:58:15 +02:00
|
|
|
let recent_topics_ui_shown = false;
|
2022-07-10 01:06:33 +02:00
|
|
|
override(recent_topics_ui, "show", () => {
|
2021-06-19 06:58:15 +02:00
|
|
|
recent_topics_ui_shown = true;
|
|
|
|
});
|
2023-05-02 18:25:39 +02:00
|
|
|
let hide_all_called = false;
|
|
|
|
override(popovers, "hide_all", () => {
|
|
|
|
hide_all_called = true;
|
|
|
|
});
|
2021-06-19 06:58:15 +02:00
|
|
|
window.location.hash = "#unknown_hash";
|
2018-04-11 13:14:39 +02:00
|
|
|
|
2021-03-22 16:09:12 +01:00
|
|
|
browser_history.clear_for_testing();
|
2018-04-11 13:14:39 +02:00
|
|
|
hashchange.initialize();
|
2021-06-19 06:58:15 +02:00
|
|
|
// If it's an unknown hash it should show the default view.
|
|
|
|
assert.equal(recent_topics_ui_shown, true);
|
2023-05-02 18:25:39 +02:00
|
|
|
assert.equal(hide_all_called, true);
|
2021-06-19 06:58:15 +02:00
|
|
|
helper.assert_events([
|
|
|
|
[overlays, "close_for_hash_change"],
|
|
|
|
[message_viewport, "stop_auto_scrolling"],
|
|
|
|
]);
|
|
|
|
|
|
|
|
window.location.hash = "#all_messages";
|
2023-05-02 18:25:39 +02:00
|
|
|
hide_all_called = false;
|
2021-06-19 06:58:15 +02:00
|
|
|
|
|
|
|
helper.clear_events();
|
2022-01-25 11:36:19 +01:00
|
|
|
$window_stub.trigger("hashchange");
|
2023-05-02 18:25:39 +02:00
|
|
|
assert.equal(hide_all_called, true);
|
2018-04-11 13:14:39 +02:00
|
|
|
helper.assert_events([
|
2021-02-11 01:42:59 +01:00
|
|
|
[overlays, "close_for_hash_change"],
|
|
|
|
[message_viewport, "stop_auto_scrolling"],
|
|
|
|
[narrow, "deactivate"],
|
2018-04-11 13:14:39 +02:00
|
|
|
]);
|
|
|
|
|
|
|
|
helper.clear_events();
|
2022-01-25 11:36:19 +01:00
|
|
|
$window_stub.trigger("hashchange");
|
2018-04-11 13:14:39 +02:00
|
|
|
helper.assert_events([
|
2021-02-11 01:42:59 +01:00
|
|
|
[overlays, "close_for_hash_change"],
|
|
|
|
[message_viewport, "stop_auto_scrolling"],
|
|
|
|
[narrow, "deactivate"],
|
2018-04-11 13:14:39 +02:00
|
|
|
]);
|
|
|
|
|
2022-10-24 12:18:09 +02:00
|
|
|
// Test old "#recent_topics" hash redirects to "#recent".
|
|
|
|
recent_topics_ui_shown = false;
|
|
|
|
window.location.hash = "#recent_topics";
|
|
|
|
|
|
|
|
helper.clear_events();
|
|
|
|
$window_stub.trigger("hashchange");
|
|
|
|
assert.equal(recent_topics_ui_shown, true);
|
|
|
|
helper.assert_events([
|
|
|
|
[overlays, "close_for_hash_change"],
|
|
|
|
[message_viewport, "stop_auto_scrolling"],
|
|
|
|
]);
|
|
|
|
assert.equal(window.location.hash, "#recent");
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
window.location.hash = "#narrow/stream/Denmark";
|
2018-04-11 13:14:39 +02:00
|
|
|
|
|
|
|
helper.clear_events();
|
2022-01-25 11:36:19 +01:00
|
|
|
$window_stub.trigger("hashchange");
|
2018-04-11 13:14:39 +02:00
|
|
|
helper.assert_events([
|
2021-02-11 01:42:59 +01:00
|
|
|
[overlays, "close_for_hash_change"],
|
|
|
|
[message_viewport, "stop_auto_scrolling"],
|
2020-07-15 01:29:15 +02:00
|
|
|
"narrow.activate",
|
2018-04-11 13:14:39 +02:00
|
|
|
]);
|
2019-11-02 00:06:25 +01:00
|
|
|
let terms = helper.get_narrow_terms();
|
2020-07-15 01:29:15 +02:00
|
|
|
assert.equal(terms[0].operand, "Denmark");
|
2018-04-11 13:14:39 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
window.location.hash = "#narrow";
|
2018-04-11 13:14:39 +02:00
|
|
|
|
|
|
|
helper.clear_events();
|
2022-01-25 11:36:19 +01:00
|
|
|
$window_stub.trigger("hashchange");
|
2018-04-11 13:14:39 +02:00
|
|
|
helper.assert_events([
|
2021-02-11 01:42:59 +01:00
|
|
|
[overlays, "close_for_hash_change"],
|
|
|
|
[message_viewport, "stop_auto_scrolling"],
|
2020-07-15 01:29:15 +02:00
|
|
|
"narrow.activate",
|
2018-04-11 13:14:39 +02:00
|
|
|
]);
|
|
|
|
terms = helper.get_narrow_terms();
|
|
|
|
assert.equal(terms.length, 0);
|
|
|
|
|
2022-02-25 19:27:25 +01:00
|
|
|
// Test an invalid narrow hash
|
|
|
|
window.location.hash = "#narrow/foo.foo";
|
|
|
|
|
|
|
|
helper.clear_events();
|
2022-01-25 11:36:19 +01:00
|
|
|
$window_stub.trigger("hashchange");
|
2022-02-25 19:27:25 +01:00
|
|
|
helper.assert_events([
|
|
|
|
[overlays, "close_for_hash_change"],
|
|
|
|
[message_viewport, "stop_auto_scrolling"],
|
|
|
|
[ui_report, "error"],
|
|
|
|
]);
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
window.location.hash = "#streams/whatever";
|
2018-04-11 13:14:39 +02:00
|
|
|
|
|
|
|
helper.clear_events();
|
2022-01-25 11:36:19 +01:00
|
|
|
$window_stub.trigger("hashchange");
|
2021-02-11 01:42:59 +01:00
|
|
|
helper.assert_events([
|
|
|
|
[overlays, "close_for_hash_change"],
|
2021-07-09 15:51:31 +02:00
|
|
|
[stream_settings_ui, "launch"],
|
2021-02-11 01:42:59 +01:00
|
|
|
]);
|
2018-04-11 13:14:39 +02:00
|
|
|
|
2021-06-28 05:08:55 +02:00
|
|
|
recent_topics_ui_shown = false;
|
|
|
|
window.location.hash = "#reload:send_after_reload=0...";
|
|
|
|
|
|
|
|
helper.clear_events();
|
2022-01-25 11:36:19 +01:00
|
|
|
$window_stub.trigger("hashchange");
|
2021-06-28 05:08:55 +02:00
|
|
|
helper.assert_events([]);
|
|
|
|
// If it's reload hash it shouldn't show the default view.
|
|
|
|
assert.equal(recent_topics_ui_shown, false);
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
window.location.hash = "#keyboard-shortcuts/whatever";
|
2018-04-11 13:14:39 +02:00
|
|
|
|
|
|
|
helper.clear_events();
|
2022-01-25 11:36:19 +01:00
|
|
|
$window_stub.trigger("hashchange");
|
2021-02-11 01:42:59 +01:00
|
|
|
helper.assert_events([[overlays, "close_for_hash_change"], "info: keyboard-shortcuts"]);
|
2018-04-11 13:14:39 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
window.location.hash = "#message-formatting/whatever";
|
2018-04-11 13:14:39 +02:00
|
|
|
|
|
|
|
helper.clear_events();
|
2022-01-25 11:36:19 +01:00
|
|
|
$window_stub.trigger("hashchange");
|
2021-02-11 01:42:59 +01:00
|
|
|
helper.assert_events([[overlays, "close_for_hash_change"], "info: message-formatting"]);
|
2018-04-11 13:14:39 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
window.location.hash = "#search-operators/whatever";
|
2018-04-11 13:14:39 +02:00
|
|
|
|
|
|
|
helper.clear_events();
|
2022-01-25 11:36:19 +01:00
|
|
|
$window_stub.trigger("hashchange");
|
2021-02-11 01:42:59 +01:00
|
|
|
helper.assert_events([[overlays, "close_for_hash_change"], "info: search-operators"]);
|
2018-04-11 13:14:39 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
window.location.hash = "#drafts";
|
2018-04-11 13:14:39 +02:00
|
|
|
|
|
|
|
helper.clear_events();
|
2022-01-25 11:36:19 +01:00
|
|
|
$window_stub.trigger("hashchange");
|
2021-02-11 01:42:59 +01:00
|
|
|
helper.assert_events([
|
|
|
|
[overlays, "close_for_hash_change"],
|
|
|
|
[drafts, "launch"],
|
|
|
|
]);
|
2018-04-11 13:14:39 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
window.location.hash = "#settings/alert-words";
|
2018-04-11 13:14:39 +02:00
|
|
|
|
|
|
|
helper.clear_events();
|
2022-01-25 11:36:19 +01:00
|
|
|
$window_stub.trigger("hashchange");
|
2021-02-11 01:42:59 +01:00
|
|
|
helper.assert_events([
|
|
|
|
[overlays, "close_for_hash_change"],
|
2023-04-15 18:52:44 +02:00
|
|
|
[settings, "build_page"],
|
|
|
|
[admin, "build_page"],
|
2021-02-11 01:42:59 +01:00
|
|
|
[settings, "launch"],
|
|
|
|
]);
|
2018-04-11 13:14:39 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
window.location.hash = "#organization/user-list-admin";
|
2018-04-11 13:14:39 +02:00
|
|
|
|
|
|
|
helper.clear_events();
|
2022-01-25 11:36:19 +01:00
|
|
|
$window_stub.trigger("hashchange");
|
2021-02-11 01:42:59 +01:00
|
|
|
helper.assert_events([
|
|
|
|
[overlays, "close_for_hash_change"],
|
2023-04-15 18:52:44 +02:00
|
|
|
[settings, "build_page"],
|
|
|
|
[admin, "build_page"],
|
2021-02-11 01:42:59 +01:00
|
|
|
[admin, "launch"],
|
|
|
|
]);
|
2018-04-11 13:14:39 +02:00
|
|
|
|
|
|
|
helper.clear_events();
|
2021-03-22 16:09:12 +01:00
|
|
|
browser_history.exit_overlay();
|
2018-04-11 13:14:39 +02:00
|
|
|
|
2021-02-11 01:42:59 +01:00
|
|
|
helper.assert_events([[ui_util, "blur_active_element"]]);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2018-04-11 13:14:39 +02:00
|
|
|
|
2022-07-10 01:06:33 +02:00
|
|
|
run_test("save_narrow", ({override}) => {
|
|
|
|
const helper = test_helper({override});
|
2018-04-11 13:14:39 +02:00
|
|
|
|
2023-04-07 14:03:34 +02:00
|
|
|
let operators = [{operator: "is", operand: "dm"}];
|
2018-04-11 13:14:39 +02:00
|
|
|
|
2023-05-25 22:30:20 +02:00
|
|
|
blueslip.expect("error", "browser does not support pushState");
|
2018-04-11 13:14:39 +02:00
|
|
|
hashchange.save_narrow(operators);
|
2018-12-06 22:59:05 +01:00
|
|
|
|
2021-02-11 01:42:59 +01:00
|
|
|
helper.assert_events([[message_viewport, "stop_auto_scrolling"]]);
|
2023-04-07 14:03:34 +02:00
|
|
|
assert.equal(window.location.hash, "#narrow/is/dm");
|
2018-04-11 13:14:39 +02:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
let url_pushed;
|
2023-06-29 21:59:08 +02:00
|
|
|
override(history, "pushState", (_state, _title, url) => {
|
2018-04-11 13:14:39 +02:00
|
|
|
url_pushed = url;
|
2021-03-14 11:01:58 +01:00
|
|
|
});
|
2018-04-11 13:14:39 +02:00
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
operators = [{operator: "is", operand: "starred"}];
|
2018-04-11 13:14:39 +02:00
|
|
|
|
|
|
|
helper.clear_events();
|
|
|
|
hashchange.save_narrow(operators);
|
2021-02-11 01:42:59 +01:00
|
|
|
helper.assert_events([[message_viewport, "stop_auto_scrolling"]]);
|
2021-10-14 00:23:21 +02:00
|
|
|
assert.equal(url_pushed, "http://zulip.zulipdev.com/#narrow/is/starred");
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|