2020-08-01 03:43:15 +02:00
|
|
|
"use strict";
|
|
|
|
|
2020-11-30 23:46:45 +01:00
|
|
|
const {strict: assert} = require("assert");
|
|
|
|
|
2021-06-28 00:41: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-02-21 15:38:51 +01:00
|
|
|
const $ = require("../zjsunit/zjquery");
|
2021-03-25 22:35:45 +01:00
|
|
|
const {page_params} = require("../zjsunit/zpage_params");
|
2020-12-01 00:02:16 +01:00
|
|
|
|
2021-03-10 06:10:32 +01:00
|
|
|
const loading = mock_esm("../../static/js/loading");
|
2021-02-28 00:36:14 +01:00
|
|
|
|
2018-08-15 11:35:18 +02:00
|
|
|
const SHORT_TEXT_ID = 1;
|
2021-03-06 17:37:51 +01:00
|
|
|
|
2021-03-24 11:41:29 +01:00
|
|
|
const SELECT_ID = 3;
|
2019-05-27 10:59:55 +02:00
|
|
|
const EXTERNAL_ACCOUNT_ID = 7;
|
|
|
|
|
2021-05-10 07:02:14 +02:00
|
|
|
const SHORT_TEXT_NAME = "Short text";
|
2021-03-24 11:41:29 +01:00
|
|
|
const SELECT_NAME = "Select";
|
2019-05-27 10:59:55 +02:00
|
|
|
const EXTERNAL_ACCOUNT_NAME = "External account";
|
2018-08-15 11:35:18 +02:00
|
|
|
|
2021-04-03 19:07:13 +02:00
|
|
|
const custom_profile_field_types = {
|
2018-08-15 11:35:18 +02:00
|
|
|
SHORT_TEXT: {
|
|
|
|
id: SHORT_TEXT_ID,
|
2019-05-27 10:59:55 +02:00
|
|
|
name: SHORT_TEXT_NAME,
|
2018-08-15 11:35:18 +02:00
|
|
|
},
|
2021-03-24 11:41:29 +01:00
|
|
|
SELECT: {
|
|
|
|
id: SELECT_ID,
|
|
|
|
name: SELECT_NAME,
|
2019-05-27 10:59:55 +02:00
|
|
|
},
|
|
|
|
EXTERNAL_ACCOUNT: {
|
|
|
|
id: EXTERNAL_ACCOUNT_ID,
|
|
|
|
name: EXTERNAL_ACCOUNT_NAME,
|
2018-08-15 11:35:18 +02:00
|
|
|
},
|
|
|
|
};
|
2018-06-11 22:32:11 +02:00
|
|
|
|
2021-04-03 19:07:13 +02:00
|
|
|
page_params.custom_profile_field_types = custom_profile_field_types;
|
|
|
|
|
2021-03-10 06:36:44 +01:00
|
|
|
mock_esm("sortablejs", {Sortable: {create: () => {}}});
|
|
|
|
|
2021-02-24 22:31:50 +01:00
|
|
|
const settings_profile_fields = zrequire("settings_profile_fields");
|
2018-08-15 13:17:15 +02:00
|
|
|
|
2021-06-14 11:20:47 +02:00
|
|
|
function test_populate(opts, template_data) {
|
2018-06-11 22:32:11 +02:00
|
|
|
const fields_data = opts.fields_data;
|
|
|
|
|
|
|
|
page_params.is_admin = opts.is_admin;
|
2020-07-15 01:29:15 +02:00
|
|
|
const table = $("#admin_profile_fields_table");
|
|
|
|
const rows = $.create("rows");
|
|
|
|
const form = $.create("forms");
|
|
|
|
table.set_find_results("tr.profile-field-row", rows);
|
|
|
|
table.set_find_results("tr.profile-field-form", form);
|
2018-06-11 22:32:11 +02:00
|
|
|
|
2021-02-22 17:01:29 +01:00
|
|
|
table[0] = "stub";
|
|
|
|
|
2021-02-25 16:07:04 +01:00
|
|
|
rows.remove = () => {};
|
|
|
|
form.remove = () => {};
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
let num_appends = 0;
|
2018-06-11 22:32:11 +02:00
|
|
|
table.append = () => {
|
|
|
|
num_appends += 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
loading.destroy_indicator = () => {};
|
|
|
|
|
|
|
|
settings_profile_fields.do_populate_profile_fields(fields_data);
|
|
|
|
|
|
|
|
assert.deepEqual(template_data, opts.expected_template_data);
|
|
|
|
assert.equal(num_appends, fields_data.length);
|
|
|
|
}
|
|
|
|
|
2021-06-28 00:41:05 +02:00
|
|
|
run_test("populate_profile_fields", ({mock_template}) => {
|
2021-04-03 19:07:13 +02:00
|
|
|
page_params.custom_profile_fields = {};
|
|
|
|
page_params.realm_default_external_accounts = JSON.stringify({});
|
|
|
|
|
2021-06-14 11:20:47 +02:00
|
|
|
const template_data = [];
|
2021-06-28 00:41:05 +02:00
|
|
|
mock_template("settings/admin_profile_field_list.hbs", false, (data) => {
|
2021-06-14 11:20:47 +02:00
|
|
|
template_data.push(data);
|
|
|
|
return "whatever";
|
|
|
|
});
|
|
|
|
|
2018-06-11 22:32:11 +02:00
|
|
|
const fields_data = [
|
|
|
|
{
|
2018-08-15 11:35:18 +02:00
|
|
|
type: SHORT_TEXT_ID,
|
2018-06-11 22:32:11 +02:00
|
|
|
id: 10,
|
2020-07-15 01:29:15 +02:00
|
|
|
name: "favorite color",
|
|
|
|
hint: "blue?",
|
|
|
|
field_data: "",
|
2018-06-11 22:32:11 +02:00
|
|
|
},
|
|
|
|
{
|
2021-03-24 11:41:29 +01:00
|
|
|
type: SELECT_ID,
|
2018-06-11 22:32:11 +02:00
|
|
|
id: 30,
|
2020-07-15 01:29:15 +02:00
|
|
|
name: "meal",
|
|
|
|
hint: "lunch",
|
2018-06-11 22:32:11 +02:00
|
|
|
field_data: JSON.stringify([
|
|
|
|
{
|
2020-07-15 01:29:15 +02:00
|
|
|
text: "lunch",
|
2018-06-11 22:32:11 +02:00
|
|
|
order: 0,
|
|
|
|
},
|
|
|
|
{
|
2020-07-15 01:29:15 +02:00
|
|
|
text: "dinner",
|
2018-06-11 22:32:11 +02:00
|
|
|
order: 1,
|
|
|
|
},
|
|
|
|
]),
|
|
|
|
},
|
2019-05-27 10:59:55 +02:00
|
|
|
{
|
|
|
|
type: EXTERNAL_ACCOUNT_ID,
|
|
|
|
id: 20,
|
2020-07-15 01:29:15 +02:00
|
|
|
name: "github profile",
|
|
|
|
hint: "username only",
|
2019-05-27 10:59:55 +02:00
|
|
|
field_data: JSON.stringify({
|
2020-07-15 01:29:15 +02:00
|
|
|
subtype: "github",
|
2019-05-27 10:59:55 +02:00
|
|
|
}),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: EXTERNAL_ACCOUNT_ID,
|
|
|
|
id: 21,
|
2020-07-15 01:29:15 +02:00
|
|
|
name: "zulip profile",
|
|
|
|
hint: "username only",
|
2019-05-27 10:59:55 +02:00
|
|
|
field_data: JSON.stringify({
|
2020-07-15 01:29:15 +02:00
|
|
|
subtype: "custom",
|
|
|
|
url_pattern: "https://chat.zulip.com/%(username)s",
|
2019-05-27 10:59:55 +02:00
|
|
|
}),
|
|
|
|
},
|
2018-06-11 22:32:11 +02:00
|
|
|
];
|
|
|
|
const expected_template_data = [
|
|
|
|
{
|
|
|
|
profile_field: {
|
|
|
|
id: 10,
|
2020-07-15 01:29:15 +02:00
|
|
|
name: "favorite color",
|
|
|
|
hint: "blue?",
|
2019-05-27 10:59:55 +02:00
|
|
|
type: SHORT_TEXT_NAME,
|
2018-06-11 22:32:11 +02:00
|
|
|
choices: [],
|
2021-03-24 11:41:29 +01:00
|
|
|
is_select_field: false,
|
2019-05-27 10:59:55 +02:00
|
|
|
is_external_account_field: false,
|
2018-06-11 22:32:11 +02:00
|
|
|
},
|
|
|
|
can_modify: true,
|
2020-07-15 00:34:28 +02:00
|
|
|
realm_default_external_accounts: page_params.realm_default_external_accounts,
|
2018-06-11 22:32:11 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
profile_field: {
|
|
|
|
id: 30,
|
2020-07-15 01:29:15 +02:00
|
|
|
name: "meal",
|
|
|
|
hint: "lunch",
|
2021-03-24 11:41:29 +01:00
|
|
|
type: SELECT_NAME,
|
2018-06-11 22:32:11 +02:00
|
|
|
choices: [
|
2020-07-15 01:29:15 +02:00
|
|
|
{order: 0, value: "0", text: "lunch"},
|
|
|
|
{order: 1, value: "1", text: "dinner"},
|
2018-06-11 22:32:11 +02:00
|
|
|
],
|
2021-03-24 11:41:29 +01:00
|
|
|
is_select_field: true,
|
2019-05-27 10:59:55 +02:00
|
|
|
is_external_account_field: false,
|
|
|
|
},
|
|
|
|
can_modify: true,
|
2020-07-15 00:34:28 +02:00
|
|
|
realm_default_external_accounts: page_params.realm_default_external_accounts,
|
2019-05-27 10:59:55 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
profile_field: {
|
|
|
|
id: 20,
|
2020-07-15 01:29:15 +02:00
|
|
|
name: "github profile",
|
|
|
|
hint: "username only",
|
2019-05-27 10:59:55 +02:00
|
|
|
type: EXTERNAL_ACCOUNT_NAME,
|
|
|
|
choices: [],
|
2021-03-24 11:41:29 +01:00
|
|
|
is_select_field: false,
|
2019-05-27 10:59:55 +02:00
|
|
|
is_external_account_field: true,
|
|
|
|
},
|
|
|
|
can_modify: true,
|
2020-07-15 00:34:28 +02:00
|
|
|
realm_default_external_accounts: page_params.realm_default_external_accounts,
|
2019-05-27 10:59:55 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
profile_field: {
|
|
|
|
id: 21,
|
2020-07-15 01:29:15 +02:00
|
|
|
name: "zulip profile",
|
|
|
|
hint: "username only",
|
2019-05-27 10:59:55 +02:00
|
|
|
type: EXTERNAL_ACCOUNT_NAME,
|
|
|
|
choices: [],
|
2021-03-24 11:41:29 +01:00
|
|
|
is_select_field: false,
|
2019-05-27 10:59:55 +02:00
|
|
|
is_external_account_field: true,
|
2018-06-11 22:32:11 +02:00
|
|
|
},
|
|
|
|
can_modify: true,
|
2020-07-15 00:34:28 +02:00
|
|
|
realm_default_external_accounts: page_params.realm_default_external_accounts,
|
2018-06-11 22:32:11 +02:00
|
|
|
},
|
|
|
|
];
|
|
|
|
|
2021-06-14 11:20:47 +02:00
|
|
|
test_populate(
|
|
|
|
{
|
|
|
|
fields_data,
|
|
|
|
expected_template_data,
|
|
|
|
is_admin: true,
|
|
|
|
},
|
|
|
|
template_data,
|
|
|
|
);
|
2018-06-11 22:32:11 +02:00
|
|
|
});
|