2020-08-01 03:43:15 +02:00
|
|
|
"use strict";
|
|
|
|
|
2020-11-30 23:46:45 +01:00
|
|
|
const {strict: assert} = require("assert");
|
|
|
|
|
2021-03-25 22:35:45 +01:00
|
|
|
const {zrequire} = require("../zjsunit/namespace");
|
2020-12-01 00:39:47 +01:00
|
|
|
const {run_test} = require("../zjsunit/test");
|
2021-03-25 22:35:45 +01:00
|
|
|
const {page_params} = require("../zjsunit/zpage_params");
|
2020-12-01 23:21:38 +01:00
|
|
|
|
2020-08-20 21:24:06 +02:00
|
|
|
const people = zrequire("people");
|
2021-02-10 04:53:22 +01:00
|
|
|
const user_pill = zrequire("user_pill");
|
2018-03-07 15:28:11 +01:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const alice = {
|
2020-07-15 01:29:15 +02:00
|
|
|
email: "alice@example.com",
|
2018-03-07 15:28:11 +01:00
|
|
|
user_id: 99,
|
2020-07-15 01:29:15 +02:00
|
|
|
full_name: "Alice Barson",
|
2018-03-07 15:28:11 +01:00
|
|
|
};
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const isaac = {
|
2020-07-15 01:29:15 +02:00
|
|
|
email: "isaac@example.com",
|
2018-03-07 15:28:11 +01:00
|
|
|
user_id: 102,
|
2020-07-15 01:29:15 +02:00
|
|
|
full_name: "Isaac Newton",
|
2018-03-07 15:28:11 +01:00
|
|
|
};
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const bogus_item = {
|
2020-07-15 01:29:15 +02:00
|
|
|
email: "bogus@example.com",
|
2021-04-27 16:56:20 +02:00
|
|
|
type: "user",
|
2020-07-15 01:29:15 +02:00
|
|
|
display_value: "bogus@example.com",
|
2022-02-05 19:15:30 +01:00
|
|
|
// status_emoji_info: undefined,
|
2018-03-07 15:28:11 +01:00
|
|
|
};
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const isaac_item = {
|
2020-07-15 01:29:15 +02:00
|
|
|
email: "isaac@example.com",
|
|
|
|
display_value: "Isaac Newton",
|
2021-04-27 16:56:20 +02:00
|
|
|
type: "user",
|
2018-03-07 15:28:11 +01:00
|
|
|
user_id: isaac.user_id,
|
2020-07-29 03:27:36 +02:00
|
|
|
deactivated: false,
|
2021-10-14 00:48:32 +02:00
|
|
|
img_src: `http://zulip.zulipdev.com/avatar/${isaac.user_id}?s=50`,
|
2022-02-05 19:15:30 +01:00
|
|
|
status_emoji_info: undefined,
|
2018-03-07 15:28:11 +01:00
|
|
|
};
|
|
|
|
|
2021-05-03 15:31:09 +02:00
|
|
|
let pill_widget = {};
|
|
|
|
|
|
|
|
function test(label, f) {
|
2021-06-16 14:38:37 +02:00
|
|
|
run_test(label, ({override}) => {
|
2021-05-03 15:31:09 +02:00
|
|
|
people.init();
|
|
|
|
people.add_active_user(alice);
|
|
|
|
people.add_active_user(isaac);
|
|
|
|
pill_widget = {};
|
2021-06-16 14:38:37 +02:00
|
|
|
f({override});
|
2021-05-03 15:31:09 +02:00
|
|
|
});
|
|
|
|
}
|
2018-03-07 15:28:11 +01:00
|
|
|
|
2021-05-03 15:31:09 +02:00
|
|
|
test("create_item", () => {
|
2018-03-07 15:28:11 +01:00
|
|
|
function test_create_item(email, current_items, expected_item) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const item = user_pill.create_item_from_email(email, current_items);
|
2018-03-07 15:28:11 +01:00
|
|
|
assert.deepEqual(item, expected_item);
|
|
|
|
}
|
|
|
|
|
|
|
|
page_params.realm_is_zephyr_mirror_realm = true;
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
test_create_item("bogus@example.com", [], bogus_item);
|
|
|
|
test_create_item("bogus@example.com", [bogus_item], undefined);
|
2018-03-07 15:28:11 +01:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
test_create_item("isaac@example.com", [], isaac_item);
|
|
|
|
test_create_item("isaac@example.com", [isaac_item], undefined);
|
2018-03-07 15:28:11 +01:00
|
|
|
|
|
|
|
page_params.realm_is_zephyr_mirror_realm = false;
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
test_create_item("bogus@example.com", [], undefined);
|
|
|
|
test_create_item("isaac@example.com", [], isaac_item);
|
|
|
|
test_create_item("isaac@example.com", [isaac_item], undefined);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2018-03-07 15:28:11 +01:00
|
|
|
|
2021-05-03 15:31:09 +02:00
|
|
|
test("get_email", () => {
|
2020-07-15 01:29:15 +02:00
|
|
|
assert.equal(user_pill.get_email_from_item({email: "foo@example.com"}), "foo@example.com");
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2018-03-07 15:28:11 +01:00
|
|
|
|
2021-05-03 15:31:09 +02:00
|
|
|
test("append", () => {
|
2019-11-02 00:06:25 +01:00
|
|
|
let appended;
|
|
|
|
let cleared;
|
2018-03-07 15:28:11 +01:00
|
|
|
|
|
|
|
function fake_append(opts) {
|
|
|
|
appended = true;
|
|
|
|
assert.equal(opts.email, isaac.email);
|
|
|
|
assert.equal(opts.display_value, isaac.full_name);
|
|
|
|
assert.equal(opts.user_id, isaac.user_id);
|
2018-06-27 20:55:56 +02:00
|
|
|
assert.equal(opts.img_src, isaac_item.img_src);
|
2018-03-07 15:28:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function fake_clear() {
|
|
|
|
cleared = true;
|
|
|
|
}
|
|
|
|
|
2021-05-03 15:31:09 +02:00
|
|
|
pill_widget.appendValidatedData = fake_append;
|
|
|
|
pill_widget.clear_text = fake_clear;
|
2018-03-07 15:28:11 +01:00
|
|
|
|
|
|
|
user_pill.append_person({
|
|
|
|
person: isaac,
|
2020-07-20 22:18:43 +02:00
|
|
|
pill_widget,
|
2018-03-07 15:28:11 +01:00
|
|
|
});
|
|
|
|
|
2021-06-10 08:32:54 +02:00
|
|
|
assert.ok(appended);
|
|
|
|
assert.ok(cleared);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2018-03-07 15:28:11 +01:00
|
|
|
|
2021-05-03 15:31:09 +02:00
|
|
|
test("get_items", () => {
|
2019-11-02 00:06:25 +01:00
|
|
|
const items = [isaac_item, bogus_item];
|
2021-05-03 15:31:09 +02:00
|
|
|
pill_widget.items = () => items;
|
2018-03-07 15:28:11 +01:00
|
|
|
|
|
|
|
assert.deepEqual(user_pill.get_user_ids(pill_widget), [isaac.user_id]);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2018-03-07 15:28:11 +01:00
|
|
|
|
2021-05-03 15:31:09 +02:00
|
|
|
test("typeahead", () => {
|
2019-11-02 00:06:25 +01:00
|
|
|
const items = [isaac_item, bogus_item];
|
2021-05-03 15:31:09 +02:00
|
|
|
pill_widget.items = () => items;
|
2018-03-07 15:28:11 +01:00
|
|
|
|
|
|
|
// Both alice and isaac are in our realm, but isaac will be
|
|
|
|
// excluded by virtue of already being one of the widget items.
|
|
|
|
// And then bogus_item is just a red herring to test robustness.
|
2019-11-02 00:06:25 +01:00
|
|
|
const result = user_pill.typeahead_source(pill_widget);
|
2018-03-07 15:28:11 +01:00
|
|
|
assert.deepEqual(result, [alice]);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|