zulip/frontend_tests/node_tests/bot_data.js

139 lines
4.1 KiB
JavaScript
Raw Normal View History

var patched_underscore = _.clone(_);
patched_underscore.debounce = function (f) { return f; };
global.patch_builtin('_', patched_underscore);
zrequire('people');
zrequire('bot_data');
set_global('$', function (f) {
if (f) {
return f();
}
return {trigger: function () {}};
});
set_global('document', null);
var page_params = {
realm_bots: [{email: 'bot0@zulip.com', user_id: 42, full_name: 'Bot 0'},
{email: 'outgoingwebhook@zulip.com', user_id: 314, full_name: "Outgoing webhook",
services: [{base_url: "http://foo.com", interface: 1}]}],
is_admin: false,
};
set_global('page_params', page_params);
global.people.add({
email: 'owner@zulip.com',
full_name: 'The Human Boss',
user_id: 42,
});
global.people.initialize_current_user(42);
bot_data.initialize();
// Our startup logic should have added Bot 0 from page_params.
assert.equal(bot_data.get(42).full_name, 'Bot 0');
assert.equal(bot_data.get(314).full_name, 'Outgoing webhook');
(function () {
var test_bot = {
email: 'bot1@zulip.com',
user_id: 43,
avatar_url: '',
full_name: 'Bot 1',
services: [{base_url: "http://bar.com", interface: 1}],
extra: 'Not in data',
};
(function test_add() {
bot_data.add(test_bot);
var bot = bot_data.get(43);
var services = bot_data.get_services(43);
assert.equal('Bot 1', bot.full_name);
assert.equal('http://bar.com', services[0].base_url);
assert.equal(1, services[0].interface);
assert.equal(undefined, bot.extra);
}());
(function test_update() {
var bot;
var services;
bot_data.add(test_bot);
bot = bot_data.get(43);
assert.equal('Bot 1', bot.full_name);
bot_data.update(43, {full_name: 'New Bot 1',
2018-01-30 18:27:04 +01:00
services: [{interface: 2,
base_url: 'http://baz.com'}]});
bot = bot_data.get(43);
services = bot_data.get_services(43);
assert.equal('New Bot 1', bot.full_name);
assert.equal(2, services[0].interface);
assert.equal('http://baz.com', services[0].base_url);
}());
(function test_remove() {
var bot;
bot_data.add(_.extend({}, test_bot, {is_active: true}));
bot = bot_data.get(43);
assert.equal('Bot 1', bot.full_name);
assert(bot.is_active);
bot_data.deactivate(43);
bot = bot_data.get(43);
assert.equal(bot.is_active, false);
}());
(function test_owner_can_admin() {
var bot;
bot_data.add(_.extend({owner: 'owner@zulip.com'}, test_bot));
bot = bot_data.get(43);
assert(bot.can_admin);
bot_data.add(_.extend({owner: 'notowner@zulip.com'}, test_bot));
bot = bot_data.get(43);
assert.equal(false, bot.can_admin);
}());
(function test_admin_can_admin() {
var bot;
page_params.is_admin = true;
bot_data.add(test_bot);
bot = bot_data.get(43);
assert(bot.can_admin);
page_params.is_admin = false;
}());
(function test_get_editable() {
var can_admin;
bot_data.add(_.extend({}, test_bot, {user_id: 44, owner: 'owner@zulip.com', is_active: true}));
bot_data.add(_.extend({}, test_bot, {user_id: 45, email: 'bot2@zulip.com', owner: 'owner@zulip.com', is_active: true}));
bot_data.add(_.extend({}, test_bot, {user_id: 46, email: 'bot3@zulip.com', owner: 'not_owner@zulip.com', is_active: true}));
can_admin = _.pluck(bot_data.get_editable(), 'email');
assert.deepEqual(['bot1@zulip.com', 'bot2@zulip.com'], can_admin);
page_params.is_admin = true;
can_admin = _.pluck(bot_data.get_editable(), 'email');
assert.deepEqual(['bot1@zulip.com', 'bot2@zulip.com'], can_admin);
}());
(function test_get_all_bots_for_current_user() {
var bots = bot_data.get_all_bots_for_current_user();
assert.equal(bots.length, 2);
assert.equal(bots[0].email, 'bot1@zulip.com');
assert.equal(bots[1].email, 'bot2@zulip.com');
}());
}());