2013-08-06 21:30:31 +02:00
|
|
|
// These unit tests for static/js/message_list.js emphasize the model-ish
|
|
|
|
// aspects of the MessageList class. We have to stub out a few functions
|
|
|
|
// related to views and events to get the tests working.
|
|
|
|
|
2017-06-07 05:04:13 +02:00
|
|
|
var noop = function () {};
|
|
|
|
|
2017-11-08 18:12:02 +01:00
|
|
|
set_global('Filter', noop);
|
|
|
|
global.stub_out_jquery();
|
2013-08-21 20:27:14 +02:00
|
|
|
set_global('document', null);
|
2018-05-17 00:11:54 +02:00
|
|
|
set_global('blueslip', global.make_zblueslip());
|
2016-07-30 20:01:15 +02:00
|
|
|
|
2018-03-09 23:23:53 +01:00
|
|
|
zrequire('FetchStatus', 'js/fetch_status');
|
2017-11-08 18:12:02 +01:00
|
|
|
zrequire('util');
|
|
|
|
zrequire('muting');
|
2018-05-04 12:44:28 +02:00
|
|
|
zrequire('MessageListData', 'js/message_list_data');
|
2017-11-08 18:12:02 +01:00
|
|
|
zrequire('MessageListView', 'js/message_list_view');
|
|
|
|
var MessageList = zrequire('message_list').MessageList;
|
2013-08-06 21:30:31 +02:00
|
|
|
|
2017-11-08 18:12:02 +01:00
|
|
|
set_global('i18n', global.stub_i18n);
|
2013-08-21 20:27:14 +02:00
|
|
|
set_global('feature_flags', {});
|
2013-08-06 21:30:31 +02:00
|
|
|
|
2017-06-07 05:04:13 +02:00
|
|
|
var with_overrides = global.with_overrides; // make lint happy
|
2013-08-06 21:30:31 +02:00
|
|
|
|
2018-05-13 22:05:41 +02:00
|
|
|
function accept_all_filter() {
|
|
|
|
var filter = {
|
|
|
|
predicate: () => {
|
|
|
|
return () => true;
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
return filter;
|
|
|
|
}
|
|
|
|
|
2018-05-15 12:40:07 +02:00
|
|
|
run_test('basics', () => {
|
2018-05-13 22:46:25 +02:00
|
|
|
var filter = accept_all_filter();
|
2013-08-06 21:30:31 +02:00
|
|
|
|
2018-05-14 15:46:25 +02:00
|
|
|
var list = new MessageList({
|
|
|
|
filter: filter,
|
|
|
|
});
|
2013-08-06 21:30:31 +02:00
|
|
|
|
|
|
|
var messages = [
|
|
|
|
{
|
|
|
|
id: 50,
|
2016-12-03 23:17:57 +01:00
|
|
|
content: 'fifty',
|
2013-08-06 21:30:31 +02:00
|
|
|
},
|
|
|
|
{
|
2016-12-03 23:17:57 +01:00
|
|
|
id: 60,
|
2013-08-06 21:30:31 +02:00
|
|
|
},
|
|
|
|
{
|
2016-12-03 23:17:57 +01:00
|
|
|
id: 70,
|
2013-08-06 21:30:31 +02:00
|
|
|
},
|
|
|
|
{
|
2016-12-03 23:17:57 +01:00
|
|
|
id: 80,
|
|
|
|
},
|
2013-08-06 21:30:31 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
assert.equal(list.empty(), true);
|
|
|
|
|
|
|
|
list.append(messages, true);
|
|
|
|
|
2017-06-07 04:34:44 +02:00
|
|
|
assert.equal(list.num_items(), 4);
|
2013-08-06 21:30:31 +02:00
|
|
|
assert.equal(list.empty(), false);
|
|
|
|
assert.equal(list.first().id, 50);
|
|
|
|
assert.equal(list.last().id, 80);
|
|
|
|
|
|
|
|
assert.equal(list.get(50).content, 'fifty');
|
|
|
|
|
|
|
|
assert.equal(list.closest_id(49), 50);
|
|
|
|
assert.equal(list.closest_id(50), 50);
|
|
|
|
assert.equal(list.closest_id(51), 50);
|
|
|
|
assert.equal(list.closest_id(59), 60);
|
|
|
|
assert.equal(list.closest_id(60), 60);
|
|
|
|
assert.equal(list.closest_id(61), 60);
|
|
|
|
|
2016-04-23 00:56:44 +02:00
|
|
|
assert.deepEqual(list.all_messages(), messages);
|
2013-08-06 21:30:31 +02:00
|
|
|
|
|
|
|
global.$.Event = function (ev) {
|
|
|
|
assert.equal(ev, 'message_selected.zulip');
|
|
|
|
};
|
|
|
|
list.select_id(50);
|
|
|
|
|
|
|
|
assert.equal(list.selected_id(), 50);
|
2017-06-07 04:34:44 +02:00
|
|
|
assert.equal(list.selected_idx(), 0);
|
2013-08-06 21:30:31 +02:00
|
|
|
|
|
|
|
list.advance_past_messages([60, 80]);
|
|
|
|
assert.equal(list.selected_id(), 60);
|
2017-06-07 04:34:44 +02:00
|
|
|
assert.equal(list.selected_idx(), 1);
|
|
|
|
|
|
|
|
// Make sure not rerendered when reselected
|
|
|
|
var num_renders = 0;
|
|
|
|
list.rerender = function () {
|
|
|
|
num_renders += 1;
|
|
|
|
};
|
|
|
|
list.reselect_selected_id();
|
|
|
|
assert.equal(num_renders, 0);
|
|
|
|
assert.equal(list.selected_id(), 60);
|
2013-08-06 21:30:31 +02:00
|
|
|
|
|
|
|
var old_messages = [
|
|
|
|
{
|
2016-12-03 23:17:57 +01:00
|
|
|
id: 30,
|
2013-08-06 21:30:31 +02:00
|
|
|
},
|
|
|
|
{
|
2016-12-03 23:17:57 +01:00
|
|
|
id: 40,
|
|
|
|
},
|
2013-08-06 21:30:31 +02:00
|
|
|
];
|
2018-05-13 22:46:25 +02:00
|
|
|
list.add_messages(old_messages);
|
2013-08-06 21:30:31 +02:00
|
|
|
assert.equal(list.first().id, 30);
|
|
|
|
assert.equal(list.last().id, 80);
|
|
|
|
|
|
|
|
var new_messages = [
|
|
|
|
{
|
2016-12-03 23:17:57 +01:00
|
|
|
id: 90,
|
|
|
|
},
|
2013-08-06 21:30:31 +02:00
|
|
|
];
|
|
|
|
list.append(new_messages, true);
|
|
|
|
assert.equal(list.last().id, 90);
|
|
|
|
|
2013-08-16 17:10:22 +02:00
|
|
|
list.view.clear_table = function () {};
|
2013-12-17 20:50:11 +01:00
|
|
|
|
|
|
|
list.remove_and_rerender([{id: 60}]);
|
2016-04-23 00:56:44 +02:00
|
|
|
var removed = list.all_messages().filter(function (msg) {
|
2013-12-17 20:50:11 +01:00
|
|
|
return msg.id !== 60;
|
|
|
|
});
|
2016-04-23 00:56:44 +02:00
|
|
|
assert.deepEqual(list.all_messages(), removed);
|
2013-12-17 20:50:11 +01:00
|
|
|
|
2013-08-06 21:30:31 +02:00
|
|
|
list.clear();
|
2016-04-23 00:56:44 +02:00
|
|
|
assert.deepEqual(list.all_messages(), []);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2013-08-14 23:04:24 +02:00
|
|
|
|
2018-05-26 12:29:38 +02:00
|
|
|
run_test('prev_next', () => {
|
|
|
|
var list = new MessageList({});
|
|
|
|
|
2018-05-29 00:18:27 +02:00
|
|
|
assert.equal(list.prev(), undefined);
|
|
|
|
assert.equal(list.next(), undefined);
|
|
|
|
assert.equal(list.is_at_end(), false);
|
|
|
|
|
|
|
|
// try to confuse things with bogus selected id
|
|
|
|
list.data.set_selected_id(33);
|
|
|
|
assert.equal(list.prev(), undefined);
|
|
|
|
assert.equal(list.next(), undefined);
|
|
|
|
assert.equal(list.is_at_end(), false);
|
|
|
|
|
2018-05-26 12:29:38 +02:00
|
|
|
var messages = [{id: 30}, {id: 40}, {id: 50}, {id: 60}];
|
|
|
|
list.append(messages, true);
|
|
|
|
assert.equal(list.prev(), undefined);
|
|
|
|
assert.equal(list.next(), undefined);
|
|
|
|
|
|
|
|
// The next case is for defensive code.
|
|
|
|
list.data.set_selected_id(45);
|
|
|
|
assert.equal(list.prev(), undefined);
|
|
|
|
assert.equal(list.next(), undefined);
|
2018-05-29 00:18:27 +02:00
|
|
|
assert.equal(list.is_at_end(), false);
|
2018-05-26 12:29:38 +02:00
|
|
|
|
|
|
|
list.data.set_selected_id(30);
|
|
|
|
assert.equal(list.prev(), undefined);
|
|
|
|
assert.equal(list.next(), 40);
|
|
|
|
|
|
|
|
list.data.set_selected_id(50);
|
|
|
|
assert.equal(list.prev(), 40);
|
|
|
|
assert.equal(list.next(), 60);
|
2018-05-29 00:18:27 +02:00
|
|
|
assert.equal(list.is_at_end(), false);
|
2018-05-26 12:29:38 +02:00
|
|
|
|
|
|
|
list.data.set_selected_id(60);
|
|
|
|
assert.equal(list.prev(), 50);
|
|
|
|
assert.equal(list.next(), undefined);
|
2018-05-29 00:18:27 +02:00
|
|
|
assert.equal(list.is_at_end(), true);
|
2018-05-26 12:29:38 +02:00
|
|
|
});
|
|
|
|
|
2018-05-15 12:40:07 +02:00
|
|
|
run_test('message_range', () => {
|
2018-05-14 15:46:25 +02:00
|
|
|
var list = new MessageList({});
|
2017-06-07 06:30:18 +02:00
|
|
|
|
|
|
|
var messages = [{id: 30}, {id: 40}, {id: 50}, {id: 60}];
|
|
|
|
list.append(messages, true);
|
|
|
|
assert.deepEqual(list.message_range(2, 30), [{id: 30}]);
|
|
|
|
assert.deepEqual(list.message_range(2, 31), [{id: 30}, {id: 40}]);
|
|
|
|
assert.deepEqual(list.message_range(30, 40), [{id: 30}, {id: 40}]);
|
|
|
|
assert.deepEqual(list.message_range(31, 39), [{id: 40}]);
|
|
|
|
assert.deepEqual(list.message_range(31, 1000), [{id: 40}, {id: 50}, {id: 60}]);
|
2018-05-17 00:11:54 +02:00
|
|
|
blueslip.set_test_data('error', 'message_range given a start of -1');
|
|
|
|
assert.deepEqual(list.message_range(-1, 40), [{id: 30}, {id: 40}]);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2017-06-07 06:30:18 +02:00
|
|
|
|
2018-05-15 12:40:07 +02:00
|
|
|
run_test('updates', () => {
|
2018-05-14 15:46:25 +02:00
|
|
|
var list = new MessageList({});
|
2017-06-07 07:51:13 +02:00
|
|
|
list.view.rerender_the_whole_thing = noop;
|
|
|
|
|
|
|
|
var messages = [
|
|
|
|
{
|
|
|
|
id: 1,
|
|
|
|
sender_id: 100,
|
|
|
|
sender_full_name: "tony",
|
|
|
|
stream_id: 32,
|
|
|
|
stream: "denmark",
|
|
|
|
small_avatar_url: "http://zulip.spork",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 2,
|
|
|
|
sender_id: 39,
|
|
|
|
sender_full_name: "jeff",
|
|
|
|
stream_id: 64,
|
|
|
|
stream: "russia",
|
|
|
|
small_avatar_url: "http://github.com",
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
list.append(messages, true);
|
|
|
|
list.update_user_full_name(100, "Anthony");
|
|
|
|
assert.equal(list.get(1).sender_full_name, "Anthony");
|
|
|
|
assert.equal(list.get(2).sender_full_name, "jeff");
|
|
|
|
|
|
|
|
list.update_user_avatar(100, "http://zulip.org");
|
|
|
|
assert.equal(list.get(1).small_avatar_url, "http://zulip.org");
|
|
|
|
assert.equal(list.get(2).small_avatar_url, "http://github.com");
|
|
|
|
|
|
|
|
list.update_stream_name(64, "Finland");
|
|
|
|
assert.equal(list.get(2).stream, "Finland");
|
|
|
|
assert.equal(list.get(1).stream, "denmark");
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2017-06-07 07:51:13 +02:00
|
|
|
|
2018-05-15 12:40:07 +02:00
|
|
|
run_test('nth_most_recent_id', () => {
|
2018-05-14 15:46:25 +02:00
|
|
|
var list = new MessageList({});
|
2013-08-14 23:04:24 +02:00
|
|
|
list.append([{id:10}, {id:20}, {id:30}]);
|
|
|
|
assert.equal(list.nth_most_recent_id(1), 30);
|
|
|
|
assert.equal(list.nth_most_recent_id(2), 20);
|
|
|
|
assert.equal(list.nth_most_recent_id(3), 10);
|
|
|
|
assert.equal(list.nth_most_recent_id(4), -1);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2014-03-11 20:17:14 +01:00
|
|
|
|
2018-05-15 12:40:07 +02:00
|
|
|
run_test('change_message_id', () => {
|
2018-05-14 15:46:25 +02:00
|
|
|
var list = new MessageList({});
|
2018-05-17 00:11:54 +02:00
|
|
|
list.data._add_to_hash([{id: 10.5, content: "good job"}, {id: 20.5, content: "ok!"}]);
|
|
|
|
|
|
|
|
// local to local
|
|
|
|
list.change_message_id(10.5, 11.5);
|
|
|
|
assert.equal(list.get(11.5).content, "good job");
|
|
|
|
|
|
|
|
list.change_message_id(11.5, 11);
|
2017-06-07 08:05:30 +02:00
|
|
|
assert.equal(list.get(11).content, "good job");
|
|
|
|
|
|
|
|
list.change_message_id(20.5, 10);
|
|
|
|
assert.equal(list.get(10).content, "ok!");
|
2018-05-17 00:11:54 +02:00
|
|
|
|
|
|
|
// test nonexistent id
|
|
|
|
assert.equal(list.change_message_id(13, 15), undefined);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2014-03-11 20:17:14 +01:00
|
|
|
|
2018-05-15 12:40:07 +02:00
|
|
|
run_test('last_sent_by_me', () => {
|
2018-05-14 15:46:25 +02:00
|
|
|
var list = new MessageList({});
|
2017-06-07 08:11:01 +02:00
|
|
|
var items = [
|
2018-05-07 03:30:13 +02:00
|
|
|
{
|
|
|
|
id: 1,
|
|
|
|
sender_id: 3,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 2,
|
|
|
|
sender_id: 3,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 3,
|
|
|
|
sender_id: 6,
|
|
|
|
},
|
2017-06-07 08:11:01 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
list.append(items);
|
|
|
|
set_global("page_params", {user_id: 3});
|
|
|
|
// Look for the last message where user_id == 3 (our ID)
|
|
|
|
assert.equal(list.get_last_message_sent_by_me().id, 2);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2017-06-07 08:11:01 +02:00
|
|
|
|
2018-05-15 12:40:07 +02:00
|
|
|
run_test('local_echo', () => {
|
2018-05-14 15:46:25 +02:00
|
|
|
var list = new MessageList({});
|
2014-03-11 20:17:14 +01:00
|
|
|
list.append([{id:10}, {id:20}, {id:30}, {id:20.02}, {id:20.03}, {id:40}, {id:50}, {id:60}]);
|
2018-06-04 21:13:07 +02:00
|
|
|
list._local_only = {20.02: {id:20.02}, 20.03: {id:20.03}};
|
2014-03-11 20:17:14 +01:00
|
|
|
|
|
|
|
assert.equal(list.closest_id(10), 10);
|
|
|
|
assert.equal(list.closest_id(20), 20);
|
|
|
|
assert.equal(list.closest_id(30), 30);
|
|
|
|
assert.equal(list.closest_id(20.02), 20.02);
|
|
|
|
assert.equal(list.closest_id(20.03), 20.03);
|
|
|
|
assert.equal(list.closest_id(29), 30);
|
|
|
|
assert.equal(list.closest_id(40), 40);
|
|
|
|
assert.equal(list.closest_id(50), 50);
|
|
|
|
assert.equal(list.closest_id(60), 60);
|
|
|
|
|
|
|
|
assert.equal(list.closest_id(60), 60);
|
|
|
|
assert.equal(list.closest_id(21), 20);
|
|
|
|
assert.equal(list.closest_id(29), 30);
|
|
|
|
assert.equal(list.closest_id(31), 30);
|
|
|
|
assert.equal(list.closest_id(54), 50);
|
|
|
|
assert.equal(list.closest_id(58), 60);
|
|
|
|
|
|
|
|
|
2018-05-14 15:46:25 +02:00
|
|
|
list = new MessageList({});
|
2018-05-07 03:30:13 +02:00
|
|
|
list.append([
|
|
|
|
{id:10}, {id:20}, {id:30}, {id:20.02}, {id:20.03}, {id:40},
|
|
|
|
{id:50}, {id: 50.01}, {id: 50.02}, {id:60}]);
|
2018-06-04 21:13:07 +02:00
|
|
|
list._local_only = {20.02: {id:20.02}, 20.03: {id:20.03},
|
|
|
|
50.01: {id: 50.01}, 50.02: {id: 50.02}};
|
2014-03-11 20:17:14 +01:00
|
|
|
|
|
|
|
assert.equal(list.closest_id(10), 10);
|
|
|
|
assert.equal(list.closest_id(20), 20);
|
|
|
|
assert.equal(list.closest_id(30), 30);
|
|
|
|
assert.equal(list.closest_id(20.02), 20.02);
|
|
|
|
assert.equal(list.closest_id(20.03), 20.03);
|
|
|
|
assert.equal(list.closest_id(40), 40);
|
|
|
|
assert.equal(list.closest_id(50), 50);
|
|
|
|
assert.equal(list.closest_id(60), 60);
|
|
|
|
|
|
|
|
assert.equal(list.closest_id(60), 60);
|
|
|
|
assert.equal(list.closest_id(21), 20);
|
|
|
|
assert.equal(list.closest_id(29), 30);
|
|
|
|
assert.equal(list.closest_id(31), 30);
|
|
|
|
assert.equal(list.closest_id(47), 50);
|
|
|
|
assert.equal(list.closest_id(51), 50.02);
|
|
|
|
assert.equal(list.closest_id(59), 60);
|
|
|
|
assert.equal(list.closest_id(50.01), 50.01);
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2017-06-07 05:04:13 +02:00
|
|
|
|
2018-05-15 12:40:07 +02:00
|
|
|
run_test('bookend', () => {
|
2018-05-14 15:46:25 +02:00
|
|
|
var list = new MessageList({});
|
2017-06-07 05:04:13 +02:00
|
|
|
|
|
|
|
with_overrides(function (override) {
|
2017-11-08 18:06:53 +01:00
|
|
|
var expected = "translated: You subscribed to stream IceCream";
|
2017-06-07 05:04:13 +02:00
|
|
|
list.view.clear_trailing_bookend = noop;
|
|
|
|
list.narrowed = true;
|
|
|
|
|
|
|
|
override("narrow_state.stream", function () {
|
|
|
|
return "IceCream";
|
|
|
|
});
|
|
|
|
|
|
|
|
override("stream_data.is_subscribed", function () {
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
|
|
|
|
global.with_stub(function (stub) {
|
|
|
|
list.view.render_trailing_bookend = stub.f;
|
|
|
|
list.update_trailing_bookend();
|
2017-06-21 02:20:33 +02:00
|
|
|
var bookend = stub.get_args('content', 'subscribed', 'show_button');
|
2017-06-07 05:04:13 +02:00
|
|
|
assert.equal(bookend.content, expected);
|
|
|
|
assert.equal(bookend.subscribed, true);
|
2017-06-21 02:20:33 +02:00
|
|
|
assert.equal(bookend.show_button, true);
|
2017-06-07 05:04:13 +02:00
|
|
|
});
|
|
|
|
|
2017-11-08 18:06:53 +01:00
|
|
|
expected = "translated: You unsubscribed from stream IceCream";
|
2017-06-07 05:04:13 +02:00
|
|
|
list.last_message_historical = false;
|
|
|
|
override("stream_data.is_subscribed", function () {
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2017-06-21 02:20:33 +02:00
|
|
|
override("stream_data.get_sub", function () {
|
|
|
|
return {invite_only: false};
|
|
|
|
});
|
|
|
|
|
|
|
|
global.with_stub(function (stub) {
|
|
|
|
list.view.render_trailing_bookend = stub.f;
|
|
|
|
list.update_trailing_bookend();
|
|
|
|
var bookend = stub.get_args('content', 'subscribed', 'show_button');
|
|
|
|
assert.equal(bookend.content, expected);
|
|
|
|
assert.equal(bookend.subscribed, false);
|
|
|
|
assert.equal(bookend.show_button, true);
|
|
|
|
});
|
|
|
|
|
|
|
|
// Test when the stream is privates (invite only)
|
2017-11-08 18:06:53 +01:00
|
|
|
expected = "translated: You unsubscribed from stream IceCream";
|
2017-06-21 02:20:33 +02:00
|
|
|
override("stream_data.is_subscribed", function () {
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
override("stream_data.get_sub", function () {
|
|
|
|
return {invite_only: true};
|
|
|
|
});
|
|
|
|
|
2017-06-07 05:04:13 +02:00
|
|
|
global.with_stub(function (stub) {
|
|
|
|
list.view.render_trailing_bookend = stub.f;
|
|
|
|
list.update_trailing_bookend();
|
2017-06-21 02:20:33 +02:00
|
|
|
var bookend = stub.get_args('content', 'subscribed', 'show_button');
|
2017-06-07 05:04:13 +02:00
|
|
|
assert.equal(bookend.content, expected);
|
|
|
|
assert.equal(bookend.subscribed, false);
|
2017-06-21 02:20:33 +02:00
|
|
|
assert.equal(bookend.show_button, false);
|
2017-06-07 05:04:13 +02:00
|
|
|
});
|
|
|
|
|
2017-11-08 18:06:53 +01:00
|
|
|
expected = "translated: You are not subscribed to stream IceCream";
|
2017-06-07 05:04:13 +02:00
|
|
|
list.last_message_historical = true;
|
|
|
|
|
|
|
|
global.with_stub(function (stub) {
|
|
|
|
list.view.render_trailing_bookend = stub.f;
|
|
|
|
list.update_trailing_bookend();
|
2017-06-21 02:20:33 +02:00
|
|
|
var bookend = stub.get_args('content', 'subscribed', 'show_button');
|
2017-06-07 05:04:13 +02:00
|
|
|
assert.equal(bookend.content, expected);
|
|
|
|
assert.equal(bookend.subscribed, false);
|
2017-06-21 02:20:33 +02:00
|
|
|
assert.equal(bookend.show_button, true);
|
2017-06-07 05:04:13 +02:00
|
|
|
});
|
|
|
|
});
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2017-06-07 05:54:46 +02:00
|
|
|
|
2018-05-15 12:40:07 +02:00
|
|
|
run_test('unmuted_messages', () => {
|
2018-05-14 15:46:25 +02:00
|
|
|
var list = new MessageList({});
|
2017-06-07 05:54:46 +02:00
|
|
|
|
2018-12-13 22:26:10 +01:00
|
|
|
var muted_stream_id = 999;
|
|
|
|
|
2017-06-07 05:54:46 +02:00
|
|
|
var unmuted = [
|
|
|
|
{
|
|
|
|
id: 50,
|
2018-12-13 22:26:10 +01:00
|
|
|
stream_id: muted_stream_id,
|
|
|
|
mentioned: true, // overrides mute
|
2017-06-07 05:54:46 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 60,
|
2018-12-13 22:26:10 +01:00
|
|
|
stream_id: 42,
|
2017-06-07 05:54:46 +02:00
|
|
|
mentioned: false,
|
|
|
|
},
|
|
|
|
];
|
|
|
|
var muted = [
|
|
|
|
{
|
|
|
|
id: 70,
|
2018-12-13 22:26:10 +01:00
|
|
|
stream_id: muted_stream_id,
|
2017-06-07 05:54:46 +02:00
|
|
|
mentioned: false,
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
with_overrides(function (override) {
|
2018-12-13 22:26:10 +01:00
|
|
|
override('muting.is_topic_muted', function (stream_id) {
|
|
|
|
return stream_id === muted_stream_id;
|
2017-06-07 05:54:46 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
// Make sure unmuted_message filters out the "muted" entry,
|
|
|
|
// which we mark as having a muted topic, and not mentioned.
|
|
|
|
var test_unmuted = list.unmuted_messages(unmuted.concat(muted));
|
|
|
|
assert.deepEqual(unmuted, test_unmuted);
|
|
|
|
});
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2017-06-07 06:09:58 +02:00
|
|
|
|
2018-05-15 12:40:07 +02:00
|
|
|
run_test('add_remove_rerender', () => {
|
2018-05-13 22:05:41 +02:00
|
|
|
var filter = accept_all_filter();
|
2017-06-07 06:09:58 +02:00
|
|
|
|
2018-05-14 15:46:25 +02:00
|
|
|
var list = new MessageList({filter: filter});
|
2017-06-07 06:09:58 +02:00
|
|
|
|
|
|
|
var messages = [{id: 1}, {id: 2}, {id: 3}];
|
|
|
|
|
2018-05-04 12:44:28 +02:00
|
|
|
list.data.unmuted_messages = function (msgs) { return msgs; };
|
2018-05-13 22:05:41 +02:00
|
|
|
list.add_messages(messages);
|
|
|
|
assert.equal(list.num_items(), 3);
|
2017-06-07 06:09:58 +02:00
|
|
|
|
|
|
|
global.with_stub(function (stub) {
|
|
|
|
list.rerender = stub.f;
|
|
|
|
list.remove_and_rerender(messages);
|
|
|
|
assert.equal(stub.num_calls, 1);
|
|
|
|
assert.equal(list.num_items(), 0);
|
|
|
|
});
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|