mirror of
https://github.com/zulip/zulip.git
synced 2026-07-12 21:04:41 +08:00
148 lines
3.3 KiB
JavaScript
148 lines
3.3 KiB
JavaScript
var assert = require('assert');
|
|
|
|
add_dependencies({
|
|
_: 'third/underscore/underscore.js',
|
|
util: 'js/util.js',
|
|
Dict: 'js/dict.js'
|
|
});
|
|
|
|
set_global('$', function () {
|
|
return {
|
|
on: function () {
|
|
return;
|
|
}
|
|
};
|
|
});
|
|
|
|
set_global('document', {
|
|
hasFocus: function () {
|
|
return true;
|
|
}
|
|
});
|
|
|
|
set_global('people_dict', new global.Dict.from({
|
|
'[email protected]': {
|
|
full_name: 'Alice Smith'
|
|
},
|
|
'[email protected]': {
|
|
full_name: "Fred Flintstone"
|
|
},
|
|
'[email protected]': {
|
|
full_name: 'Jill Hill'
|
|
},
|
|
'[email protected]': {
|
|
full_name: 'Marky Mark'
|
|
}
|
|
}));
|
|
|
|
var activity = require('js/activity.js');
|
|
|
|
(function test_sort_users() {
|
|
var users = ['[email protected]', '[email protected]', '[email protected]'];
|
|
|
|
var user_info = {
|
|
'[email protected]': 'inactive',
|
|
'[email protected]': 'active',
|
|
'[email protected]': 'active'
|
|
};
|
|
|
|
activity._sort_users(users, user_info);
|
|
|
|
assert.deepEqual(users, [
|
|
'[email protected]',
|
|
'[email protected]',
|
|
'[email protected]'
|
|
]);
|
|
}());
|
|
|
|
(function test_process_loaded_messages() {
|
|
|
|
var huddle1 = '[email protected],[email protected]';
|
|
var timestamp1 = 1382479029; // older
|
|
|
|
var huddle2 = '[email protected],[email protected]';
|
|
var timestamp2 = 1382479033; // newer
|
|
|
|
var old_timestamp = 1382479000;
|
|
|
|
var messages = [
|
|
{
|
|
type: 'private',
|
|
reply_to: huddle1,
|
|
timestamp: timestamp1
|
|
},
|
|
{
|
|
type: 'stream'
|
|
},
|
|
{
|
|
type: 'private',
|
|
reply_to: '[email protected]'
|
|
},
|
|
{
|
|
type: 'private',
|
|
reply_to: huddle2,
|
|
timestamp: timestamp2
|
|
},
|
|
{
|
|
type: 'private',
|
|
reply_to: huddle2,
|
|
timestamp: old_timestamp
|
|
}
|
|
];
|
|
|
|
activity.process_loaded_messages(messages);
|
|
|
|
assert.deepEqual(activity.get_huddles(), [huddle2, huddle1]);
|
|
}());
|
|
|
|
(function test_full_huddle_name() {
|
|
assert.equal(
|
|
activity.full_huddle_name('[email protected],[email protected]'),
|
|
'Alice Smith, Jill Hill'
|
|
);
|
|
|
|
assert.equal(
|
|
activity.full_huddle_name('[email protected],[email protected],[email protected]'),
|
|
'Alice Smith, Fred Flintstone, Jill Hill'
|
|
);
|
|
}());
|
|
|
|
(function test_short_huddle_name() {
|
|
assert.equal(
|
|
activity.short_huddle_name('[email protected]'),
|
|
'Alice Smith'
|
|
);
|
|
|
|
assert.equal(
|
|
activity.short_huddle_name('[email protected],[email protected]'),
|
|
'Alice Smith, Jill Hill'
|
|
);
|
|
|
|
assert.equal(
|
|
activity.short_huddle_name('[email protected],[email protected],[email protected]'),
|
|
'Alice Smith, Fred Flintstone, + 1 other'
|
|
);
|
|
|
|
assert.equal(
|
|
activity.short_huddle_name('[email protected],[email protected],[email protected],[email protected]'),
|
|
'Alice Smith, Fred Flintstone, + 2 others'
|
|
);
|
|
}());
|
|
|
|
(function test_huddle_fraction_present() {
|
|
var huddle = '[email protected],[email protected],[email protected],[email protected]';
|
|
|
|
var presence_list = {
|
|
'[email protected]': 'active',
|
|
'[email protected]': 'idle', // counts as present
|
|
// jill not in list
|
|
'[email protected]': 'offline' // does not count
|
|
};
|
|
|
|
assert.equal(
|
|
activity.huddle_fraction_present(huddle, presence_list),
|
|
'0.50'
|
|
);
|
|
}());
|
|
|