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 {zrequire} = require("./lib/namespace.cjs");
|
|
|
|
const {run_test} = require("./lib/test.cjs");
|
|
|
|
const {page_params} = require("./lib/zpage_params.cjs");
|
2020-12-01 00:02:16 +01:00
|
|
|
|
2020-08-20 21:24:06 +02:00
|
|
|
const people = zrequire("people");
|
2023-02-22 23:03:47 +01:00
|
|
|
const {Filter} = zrequire("../src/filter");
|
2021-02-10 04:53:22 +01:00
|
|
|
const stream_data = zrequire("stream_data");
|
|
|
|
const narrow_state = zrequire("narrow_state");
|
2024-02-13 03:44:04 +01:00
|
|
|
const message_lists = zrequire("message_lists");
|
2017-06-01 20:45:32 +02:00
|
|
|
|
2023-12-22 00:26:14 +01:00
|
|
|
function set_filter(raw_terms) {
|
|
|
|
const terms = raw_terms.map((op) => ({
|
js: Convert _.map(a, …) to a.map(…).
And convert the corresponding function expressions to arrow style
while we’re here.
import * as babelParser from "recast/parsers/babel";
import * as recast from "recast";
import * as tsParser from "recast/parsers/typescript";
import { builders as b, namedTypes as n } from "ast-types";
import K from "ast-types/gen/kinds";
import fs from "fs";
import path from "path";
import process from "process";
const checkExpression = (node: n.Node): node is K.ExpressionKind =>
n.Expression.check(node);
for (const file of process.argv.slice(2)) {
console.log("Parsing", file);
const ast = recast.parse(fs.readFileSync(file, { encoding: "utf8" }), {
parser: path.extname(file) === ".ts" ? tsParser : babelParser,
});
let changed = false;
recast.visit(ast, {
visitCallExpression(path) {
const { callee, arguments: args } = path.node;
if (
n.MemberExpression.check(callee) &&
!callee.computed &&
n.Identifier.check(callee.object) &&
callee.object.name === "_" &&
n.Identifier.check(callee.property) &&
callee.property.name === "map" &&
args.length === 2 &&
checkExpression(args[0]) &&
checkExpression(args[1])
) {
const [arr, fn] = args;
path.replace(
b.callExpression(b.memberExpression(arr, b.identifier("map")), [
n.FunctionExpression.check(fn) ||
n.ArrowFunctionExpression.check(fn)
? b.arrowFunctionExpression(
fn.params,
n.BlockStatement.check(fn.body) &&
fn.body.body.length === 1 &&
n.ReturnStatement.check(fn.body.body[0])
? fn.body.body[0].argument || b.identifier("undefined")
: fn.body
)
: fn,
])
);
changed = true;
}
this.traverse(path);
},
});
if (changed) {
console.log("Writing", file);
fs.writeFileSync(file, recast.print(ast).code, { encoding: "utf8" });
}
}
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-02-08 02:43:49 +01:00
|
|
|
operator: op[0],
|
|
|
|
operand: op[1],
|
|
|
|
}));
|
2024-02-14 08:52:00 +01:00
|
|
|
const filter = new Filter(terms);
|
2024-02-13 03:44:04 +01:00
|
|
|
message_lists.set_current({
|
|
|
|
data: {
|
2024-02-14 08:52:00 +01:00
|
|
|
filter,
|
2024-02-13 03:44:04 +01:00
|
|
|
},
|
|
|
|
});
|
2024-02-14 08:52:00 +01:00
|
|
|
|
|
|
|
return filter;
|
2017-06-01 20:45:32 +02:00
|
|
|
}
|
|
|
|
|
2021-03-09 14:50:26 +01:00
|
|
|
function test(label, f) {
|
2021-06-16 14:38:37 +02:00
|
|
|
run_test(label, ({override}) => {
|
2024-02-13 03:44:04 +01:00
|
|
|
message_lists.set_current(undefined);
|
2021-03-09 14:50:26 +01:00
|
|
|
stream_data.clear_subscriptions();
|
2021-06-16 14:38:37 +02:00
|
|
|
f({override});
|
2021-03-09 14:50:26 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
test("stream", () => {
|
2023-12-22 00:26:14 +01:00
|
|
|
assert.equal(narrow_state.public_search_terms(), undefined);
|
2024-02-13 03:44:04 +01:00
|
|
|
assert.ok(!narrow_state.filter());
|
2021-04-28 18:41:55 +02:00
|
|
|
assert.equal(narrow_state.stream_id(), undefined);
|
2017-06-01 20:57:17 +02:00
|
|
|
|
2024-08-03 03:05:34 +02:00
|
|
|
const test_stream_id = 15;
|
|
|
|
const test_stream = {name: "Test", stream_id: test_stream_id};
|
2020-02-09 22:02:55 +01:00
|
|
|
stream_data.add_sub(test_stream);
|
2017-06-01 20:45:32 +02:00
|
|
|
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(!narrow_state.is_for_stream_id(test_stream.stream_id));
|
2017-06-01 20:45:32 +02:00
|
|
|
|
2017-06-01 20:57:17 +02:00
|
|
|
set_filter([
|
2024-08-03 03:05:34 +02:00
|
|
|
["stream", test_stream_id.toString()],
|
2020-07-15 01:29:15 +02:00
|
|
|
["topic", "Bar"],
|
|
|
|
["search", "yo"],
|
2017-06-01 20:57:17 +02:00
|
|
|
]);
|
2024-02-13 03:44:04 +01:00
|
|
|
assert.ok(narrow_state.filter());
|
2017-06-01 20:45:32 +02:00
|
|
|
|
2023-06-26 18:52:26 +02:00
|
|
|
assert.equal(narrow_state.stream_name(), "Test");
|
2024-08-03 03:05:34 +02:00
|
|
|
assert.equal(narrow_state.stream_id(), test_stream_id);
|
2020-09-23 02:22:47 +02:00
|
|
|
assert.equal(narrow_state.stream_sub().stream_id, test_stream.stream_id);
|
2020-07-15 01:29:15 +02:00
|
|
|
assert.equal(narrow_state.topic(), "Bar");
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(narrow_state.is_for_stream_id(test_stream.stream_id));
|
2017-06-01 20:57:17 +02:00
|
|
|
|
2023-12-22 00:26:14 +01:00
|
|
|
const expected_terms = [
|
2024-08-03 03:05:34 +02:00
|
|
|
{negated: false, operator: "channel", operand: test_stream_id.toString()},
|
2020-07-16 22:40:18 +02:00
|
|
|
{negated: false, operator: "topic", operand: "Bar"},
|
|
|
|
{negated: false, operator: "search", operand: "yo"},
|
2017-06-01 20:57:17 +02:00
|
|
|
];
|
|
|
|
|
2023-12-22 00:26:14 +01:00
|
|
|
const public_terms = narrow_state.public_search_terms();
|
|
|
|
assert.deepEqual(public_terms, expected_terms);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2017-06-01 20:45:32 +02:00
|
|
|
|
2024-08-03 03:05:34 +02:00
|
|
|
const foo_stream_id = 72;
|
|
|
|
const foo_stream = {name: "Foo", stream_id: foo_stream_id};
|
2021-03-09 14:50:26 +01:00
|
|
|
test("narrowed", () => {
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(!narrow_state.narrowed_to_pms());
|
|
|
|
assert.ok(!narrow_state.narrowed_by_reply());
|
|
|
|
assert.ok(!narrow_state.narrowed_by_pm_reply());
|
|
|
|
assert.ok(!narrow_state.narrowed_by_topic_reply());
|
|
|
|
assert.ok(!narrow_state.narrowed_by_stream_reply());
|
2020-09-23 02:22:47 +02:00
|
|
|
assert.equal(narrow_state.stream_sub(), undefined);
|
2017-06-01 20:45:32 +02:00
|
|
|
|
2024-08-03 03:05:34 +02:00
|
|
|
stream_data.add_sub(foo_stream);
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
set_filter([["stream", "Foo"]]);
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(!narrow_state.narrowed_to_pms());
|
|
|
|
assert.ok(!narrow_state.narrowed_by_reply());
|
|
|
|
assert.ok(!narrow_state.narrowed_by_pm_reply());
|
|
|
|
assert.ok(!narrow_state.narrowed_by_topic_reply());
|
|
|
|
assert.ok(narrow_state.narrowed_by_stream_reply());
|
2017-06-01 20:45:32 +02:00
|
|
|
|
2023-04-11 21:04:33 +02:00
|
|
|
set_filter([["dm", "steve@zulip.com"]]);
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(narrow_state.narrowed_to_pms());
|
|
|
|
assert.ok(narrow_state.narrowed_by_reply());
|
|
|
|
assert.ok(narrow_state.narrowed_by_pm_reply());
|
|
|
|
assert.ok(!narrow_state.narrowed_by_topic_reply());
|
|
|
|
assert.ok(!narrow_state.narrowed_by_stream_reply());
|
2017-06-01 20:45:32 +02:00
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
set_filter([
|
2024-08-03 03:05:34 +02:00
|
|
|
["stream", foo_stream_id.toString()],
|
2020-07-15 00:34:28 +02:00
|
|
|
["topic", "bar"],
|
|
|
|
]);
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(!narrow_state.narrowed_to_pms());
|
|
|
|
assert.ok(narrow_state.narrowed_by_reply());
|
|
|
|
assert.ok(!narrow_state.narrowed_by_pm_reply());
|
|
|
|
assert.ok(narrow_state.narrowed_by_topic_reply());
|
|
|
|
assert.ok(!narrow_state.narrowed_by_stream_reply());
|
2017-06-01 20:45:32 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
set_filter([["search", "grail"]]);
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(!narrow_state.narrowed_to_pms());
|
|
|
|
assert.ok(!narrow_state.narrowed_by_reply());
|
|
|
|
assert.ok(!narrow_state.narrowed_by_pm_reply());
|
|
|
|
assert.ok(!narrow_state.narrowed_by_topic_reply());
|
|
|
|
assert.ok(!narrow_state.narrowed_by_stream_reply());
|
2020-02-25 20:46:21 +01:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
set_filter([["is", "starred"]]);
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(!narrow_state.narrowed_to_pms());
|
|
|
|
assert.ok(!narrow_state.narrowed_by_reply());
|
|
|
|
assert.ok(!narrow_state.narrowed_by_pm_reply());
|
|
|
|
assert.ok(!narrow_state.narrowed_by_topic_reply());
|
|
|
|
assert.ok(!narrow_state.narrowed_by_stream_reply());
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2017-06-01 20:45:32 +02:00
|
|
|
|
2023-12-22 00:26:14 +01:00
|
|
|
test("terms", () => {
|
2020-07-15 00:34:28 +02:00
|
|
|
set_filter([
|
2024-08-03 03:05:34 +02:00
|
|
|
["stream", foo_stream_id.toString()],
|
2020-07-15 00:34:28 +02:00
|
|
|
["topic", "Bar"],
|
|
|
|
["search", "Yo"],
|
|
|
|
]);
|
2023-12-22 00:26:14 +01:00
|
|
|
let result = narrow_state.search_terms();
|
2017-06-01 20:45:32 +02:00
|
|
|
assert.equal(result.length, 3);
|
2024-04-05 19:41:15 +02:00
|
|
|
assert.equal(result[0].operator, "channel");
|
2024-08-03 03:05:34 +02:00
|
|
|
assert.equal(result[0].operand, foo_stream_id.toString());
|
2017-06-01 20:45:32 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
assert.equal(result[1].operator, "topic");
|
|
|
|
assert.equal(result[1].operand, "Bar");
|
2017-06-01 20:45:32 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
assert.equal(result[2].operator, "search");
|
|
|
|
assert.equal(result[2].operand, "yo");
|
2017-12-02 03:18:05 +01:00
|
|
|
|
2024-02-13 03:44:04 +01:00
|
|
|
message_lists.set_current(undefined);
|
2023-12-22 00:26:14 +01:00
|
|
|
result = narrow_state.search_terms();
|
2017-12-02 03:18:05 +01:00
|
|
|
assert.equal(result.length, 0);
|
2024-01-07 16:38:29 +01:00
|
|
|
|
2024-08-03 03:05:34 +02:00
|
|
|
page_params.narrow = [{operator: "stream", operand: foo_stream_id.toString()}];
|
2024-01-07 16:38:29 +01:00
|
|
|
result = narrow_state.search_terms();
|
|
|
|
assert.equal(result.length, 1);
|
2024-04-05 19:41:15 +02:00
|
|
|
assert.equal(result[0].operator, "channel");
|
2024-08-03 03:05:34 +02:00
|
|
|
assert.equal(result[0].operand, foo_stream_id.toString());
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2017-06-01 20:45:32 +02:00
|
|
|
|
2021-03-09 14:50:26 +01:00
|
|
|
test("excludes_muted_topics", () => {
|
2024-02-14 08:52:00 +01:00
|
|
|
let filter = set_filter([["stream", "devel"]]);
|
|
|
|
assert.ok(filter.excludes_muted_topics());
|
2017-06-01 20:45:32 +02:00
|
|
|
|
2024-04-02 13:10:48 +02:00
|
|
|
// Combined feed view.
|
2024-02-14 08:52:00 +01:00
|
|
|
filter = set_filter([["in", "home"]]);
|
|
|
|
assert.ok(filter.excludes_muted_topics());
|
2017-06-01 20:45:32 +02:00
|
|
|
|
2024-02-14 08:52:00 +01:00
|
|
|
filter = set_filter([
|
2020-07-15 00:34:28 +02:00
|
|
|
["stream", "devel"],
|
|
|
|
["topic", "mac"],
|
|
|
|
]);
|
2024-02-14 08:52:00 +01:00
|
|
|
assert.ok(!filter.excludes_muted_topics());
|
2017-06-01 20:45:32 +02:00
|
|
|
|
2024-02-14 08:52:00 +01:00
|
|
|
filter = set_filter([["search", "whatever"]]);
|
|
|
|
assert.ok(!filter.excludes_muted_topics());
|
2017-06-01 20:45:32 +02:00
|
|
|
|
2024-02-14 08:52:00 +01:00
|
|
|
filter = set_filter([["is", "private"]]);
|
|
|
|
assert.ok(!filter.excludes_muted_topics());
|
2017-06-01 20:45:32 +02:00
|
|
|
|
2024-02-14 08:52:00 +01:00
|
|
|
filter = set_filter([["is", "starred"]]);
|
|
|
|
assert.ok(!filter.excludes_muted_topics());
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2017-06-01 20:45:32 +02:00
|
|
|
|
2021-03-09 14:50:26 +01:00
|
|
|
test("set_compose_defaults", () => {
|
2020-07-15 00:34:28 +02:00
|
|
|
set_filter([
|
2024-08-03 03:05:34 +02:00
|
|
|
["stream", foo_stream_id.toString()],
|
2020-07-15 00:34:28 +02:00
|
|
|
["topic", "Bar"],
|
|
|
|
]);
|
2017-06-01 20:45:32 +02:00
|
|
|
|
2023-05-13 02:32:22 +02:00
|
|
|
// First try with a stream that doesn't exist.
|
|
|
|
let stream_and_topic = narrow_state.set_compose_defaults();
|
2023-06-27 01:40:25 +02:00
|
|
|
assert.equal(stream_and_topic.stream_id, undefined);
|
2023-05-13 02:32:22 +02:00
|
|
|
assert.equal(stream_and_topic.topic, "Bar");
|
|
|
|
|
2024-08-03 03:05:34 +02:00
|
|
|
stream_data.add_sub(foo_stream);
|
2023-05-13 02:32:22 +02:00
|
|
|
stream_and_topic = narrow_state.set_compose_defaults();
|
2024-08-03 03:05:34 +02:00
|
|
|
assert.equal(stream_and_topic.stream_id, foo_stream_id);
|
2022-09-28 21:42:53 +02:00
|
|
|
assert.equal(stream_and_topic.topic, "Bar");
|
2017-06-01 20:45:32 +02:00
|
|
|
|
2023-04-11 21:04:33 +02:00
|
|
|
set_filter([["dm", "foo@bar.com"]]);
|
|
|
|
let dm_test = narrow_state.set_compose_defaults();
|
|
|
|
assert.equal(dm_test.private_message_recipient, undefined);
|
2018-05-28 11:44:28 +02:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const john = {
|
2020-07-15 01:29:15 +02:00
|
|
|
email: "john@doe.com",
|
2018-05-28 11:44:28 +02:00
|
|
|
user_id: 57,
|
2020-07-15 01:29:15 +02:00
|
|
|
full_name: "John Doe",
|
2018-05-28 11:44:28 +02:00
|
|
|
};
|
2020-05-26 22:34:15 +02:00
|
|
|
people.add_active_user(john);
|
|
|
|
people.add_active_user(john);
|
2018-05-28 11:44:28 +02:00
|
|
|
|
2023-04-11 21:04:33 +02:00
|
|
|
set_filter([["dm", "john@doe.com"]]);
|
|
|
|
dm_test = narrow_state.set_compose_defaults();
|
|
|
|
assert.equal(dm_test.private_message_recipient, "john@doe.com");
|
|
|
|
|
|
|
|
// Even though we renamed "pm-with" to "dm",
|
|
|
|
// compose defaults are set correctly.
|
2020-07-15 01:29:15 +02:00
|
|
|
set_filter([["pm-with", "john@doe.com"]]);
|
2023-04-11 21:04:33 +02:00
|
|
|
dm_test = narrow_state.set_compose_defaults();
|
|
|
|
assert.equal(dm_test.private_message_recipient, "john@doe.com");
|
2017-11-29 23:47:13 +01:00
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
set_filter([
|
|
|
|
["topic", "duplicate"],
|
|
|
|
["topic", "duplicate"],
|
|
|
|
]);
|
2017-12-02 23:10:09 +01:00
|
|
|
assert.deepEqual(narrow_state.set_compose_defaults(), {});
|
|
|
|
|
2024-08-03 03:05:34 +02:00
|
|
|
const rome_id = 99;
|
|
|
|
stream_data.add_sub({name: "ROME", stream_id: rome_id});
|
|
|
|
set_filter([["stream", rome_id.toString()]]);
|
2017-06-01 20:45:32 +02:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const stream_test = narrow_state.set_compose_defaults();
|
2024-08-03 03:05:34 +02:00
|
|
|
assert.equal(stream_test.stream_id, rome_id);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2017-06-01 20:45:32 +02:00
|
|
|
|
2021-03-09 14:50:26 +01:00
|
|
|
test("update_email", () => {
|
2019-11-02 00:06:25 +01:00
|
|
|
const steve = {
|
2020-07-15 01:29:15 +02:00
|
|
|
email: "steve@foo.com",
|
2017-06-01 20:45:32 +02:00
|
|
|
user_id: 43,
|
2020-07-15 01:29:15 +02:00
|
|
|
full_name: "Steve",
|
2017-06-01 20:45:32 +02:00
|
|
|
};
|
|
|
|
|
2020-05-26 22:34:15 +02:00
|
|
|
people.add_active_user(steve);
|
2017-06-01 20:45:32 +02:00
|
|
|
set_filter([
|
2023-04-11 21:04:33 +02:00
|
|
|
["dm", "steve@foo.com"],
|
2020-07-15 01:29:15 +02:00
|
|
|
["sender", "steve@foo.com"],
|
|
|
|
["stream", "steve@foo.com"], // try to be tricky
|
2017-06-01 20:45:32 +02:00
|
|
|
]);
|
2020-07-15 01:29:15 +02:00
|
|
|
narrow_state.update_email(steve.user_id, "showell@foo.com");
|
2019-11-02 00:06:25 +01:00
|
|
|
const filter = narrow_state.filter();
|
2023-04-11 21:04:33 +02:00
|
|
|
assert.deepEqual(filter.operands("dm"), ["showell@foo.com"]);
|
2020-07-15 01:29:15 +02:00
|
|
|
assert.deepEqual(filter.operands("sender"), ["showell@foo.com"]);
|
2024-04-05 19:41:15 +02:00
|
|
|
assert.deepEqual(filter.operands("channel"), ["steve@foo.com"]);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2017-11-29 17:32:25 +01:00
|
|
|
|
2021-03-09 14:50:26 +01:00
|
|
|
test("topic", () => {
|
2020-07-15 00:34:28 +02:00
|
|
|
set_filter([
|
2024-08-03 03:05:34 +02:00
|
|
|
["stream", foo_stream.stream_id.toString()],
|
2020-07-15 00:34:28 +02:00
|
|
|
["topic", "Bar"],
|
|
|
|
]);
|
2020-07-15 01:29:15 +02:00
|
|
|
assert.equal(narrow_state.topic(), "Bar");
|
2017-11-29 17:32:25 +01:00
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
set_filter([
|
|
|
|
["stream", "release"],
|
|
|
|
["topic", "@#$$^test"],
|
|
|
|
]);
|
2020-07-15 01:29:15 +02:00
|
|
|
assert.equal(narrow_state.topic(), "@#$$^test");
|
2017-11-29 17:32:25 +01:00
|
|
|
|
2020-02-08 01:27:04 +01:00
|
|
|
set_filter([]);
|
2017-11-29 17:32:25 +01:00
|
|
|
assert.equal(narrow_state.topic(), undefined);
|
|
|
|
|
|
|
|
set_filter([
|
2020-07-15 01:29:15 +02:00
|
|
|
["sender", "test@foo.com"],
|
2023-04-11 21:04:33 +02:00
|
|
|
["dm", "test@foo.com"],
|
2017-11-29 17:32:25 +01:00
|
|
|
]);
|
|
|
|
assert.equal(narrow_state.topic(), undefined);
|
2017-12-14 19:02:06 +01:00
|
|
|
|
2024-02-13 03:44:04 +01:00
|
|
|
message_lists.set_current(undefined);
|
2017-12-14 19:02:06 +01:00
|
|
|
assert.equal(narrow_state.topic(), undefined);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2017-11-29 17:32:25 +01:00
|
|
|
|
2021-03-09 14:50:26 +01:00
|
|
|
test("stream_sub", () => {
|
2020-02-08 01:27:04 +01:00
|
|
|
set_filter([]);
|
2023-06-26 18:52:26 +02:00
|
|
|
assert.equal(narrow_state.stream_name(), undefined);
|
2020-09-23 02:22:47 +02:00
|
|
|
assert.equal(narrow_state.stream_sub(), undefined);
|
2017-11-29 17:32:25 +01:00
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
set_filter([
|
2024-08-03 03:05:34 +02:00
|
|
|
["stream", "55"],
|
2020-07-15 00:34:28 +02:00
|
|
|
["topic", "Bar"],
|
|
|
|
]);
|
2024-08-03 03:05:34 +02:00
|
|
|
assert.equal(narrow_state.stream_name(), undefined);
|
2018-05-02 13:51:02 +02:00
|
|
|
assert.equal(narrow_state.stream_sub(), undefined);
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
const sub = {name: "Foo", stream_id: 55};
|
2020-02-09 22:02:55 +01:00
|
|
|
stream_data.add_sub(sub);
|
2024-08-03 03:05:34 +02:00
|
|
|
assert.equal(narrow_state.stream_name(), "Foo");
|
2018-05-02 13:51:02 +02:00
|
|
|
assert.deepEqual(narrow_state.stream_sub(), sub);
|
2017-11-29 17:32:25 +01:00
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
set_filter([
|
|
|
|
["sender", "someone"],
|
|
|
|
["topic", "random"],
|
|
|
|
]);
|
2023-06-26 18:52:26 +02:00
|
|
|
assert.equal(narrow_state.stream_name(), undefined);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2017-11-29 17:32:25 +01:00
|
|
|
|
2022-05-26 04:20:07 +02:00
|
|
|
test("pm_ids_string", () => {
|
2018-02-09 22:26:45 +01:00
|
|
|
// This function will return undefined unless we're clearly
|
2023-04-11 21:04:33 +02:00
|
|
|
// narrowed to a specific direct message (including group
|
|
|
|
// direct messages) with real users.
|
2024-02-13 03:44:04 +01:00
|
|
|
message_lists.set_current(undefined);
|
2022-05-26 04:20:07 +02:00
|
|
|
assert.equal(narrow_state.pm_ids_string(), undefined);
|
2024-02-06 22:21:20 +01:00
|
|
|
assert.deepStrictEqual(narrow_state.pm_ids_set(), new Set());
|
2018-02-09 22:26:45 +01:00
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
set_filter([
|
2024-08-03 03:05:34 +02:00
|
|
|
["stream", foo_stream.stream_id.toString()],
|
2020-07-15 00:34:28 +02:00
|
|
|
["topic", "Bar"],
|
|
|
|
]);
|
2022-05-26 04:20:07 +02:00
|
|
|
assert.equal(narrow_state.pm_ids_string(), undefined);
|
2024-02-06 22:21:20 +01:00
|
|
|
assert.deepStrictEqual(narrow_state.pm_ids_set(), new Set());
|
2018-02-09 22:26:45 +01:00
|
|
|
|
2023-04-11 21:04:33 +02:00
|
|
|
set_filter([["dm", ""]]);
|
2022-05-26 04:20:07 +02:00
|
|
|
assert.equal(narrow_state.pm_ids_string(), undefined);
|
2024-02-06 22:21:20 +01:00
|
|
|
assert.deepStrictEqual(narrow_state.pm_ids_set(), new Set());
|
2018-02-09 22:26:45 +01:00
|
|
|
|
2023-04-11 21:04:33 +02:00
|
|
|
set_filter([["dm", "bogus@foo.com"]]);
|
2022-05-26 04:20:07 +02:00
|
|
|
assert.equal(narrow_state.pm_ids_string(), undefined);
|
2024-02-06 22:21:20 +01:00
|
|
|
assert.deepStrictEqual(narrow_state.pm_ids_set(), new Set());
|
2018-02-09 22:26:45 +01:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const alice = {
|
2020-07-15 01:29:15 +02:00
|
|
|
email: "alice@foo.com",
|
2018-02-09 22:26:45 +01:00
|
|
|
user_id: 444,
|
2020-07-15 01:29:15 +02:00
|
|
|
full_name: "Alice",
|
2018-02-09 22:26:45 +01:00
|
|
|
};
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const bob = {
|
2020-07-15 01:29:15 +02:00
|
|
|
email: "bob@foo.com",
|
2018-02-09 22:26:45 +01:00
|
|
|
user_id: 555,
|
2020-07-15 01:29:15 +02:00
|
|
|
full_name: "Bob",
|
2018-02-09 22:26:45 +01:00
|
|
|
};
|
|
|
|
|
2020-05-26 22:34:15 +02:00
|
|
|
people.add_active_user(alice);
|
|
|
|
people.add_active_user(bob);
|
2018-02-09 22:26:45 +01:00
|
|
|
|
2023-04-11 21:04:33 +02:00
|
|
|
set_filter([["dm", "bob@foo.com,alice@foo.com"]]);
|
2022-05-26 04:20:07 +02:00
|
|
|
assert.equal(narrow_state.pm_ids_string(), "444,555");
|
2024-02-06 22:21:20 +01:00
|
|
|
assert.deepStrictEqual(narrow_state.pm_ids_set(), new Set([444, 555]));
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|