2018-04-09 15:22:26 +02:00
|
|
|
|
set_global('$', global.make_zjquery());
|
2020-02-05 13:14:24 +01:00
|
|
|
|
set_global('XDate', zrequire('XDate', 'xdate'));
|
2018-04-09 15:22:26 +02:00
|
|
|
|
|
2020-02-05 13:14:24 +01:00
|
|
|
|
zrequire('timerender');
|
2018-04-09 15:22:26 +02:00
|
|
|
|
zrequire('settings_muting');
|
2018-12-13 22:26:10 +01:00
|
|
|
|
zrequire('stream_data');
|
2018-04-09 15:22:26 +02:00
|
|
|
|
zrequire('muting');
|
|
|
|
|
set_global('muting_ui', {});
|
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
|
const noop = function () {};
|
2018-04-09 15:22:26 +02:00
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
|
const frontend = {
|
2018-12-13 22:26:10 +01:00
|
|
|
|
stream_id: 101,
|
|
|
|
|
name: 'frontend',
|
|
|
|
|
};
|
2020-02-09 22:02:55 +01:00
|
|
|
|
stream_data.add_sub(frontend);
|
2018-12-13 22:26:10 +01:00
|
|
|
|
|
2018-05-15 12:40:07 +02:00
|
|
|
|
run_test('settings', () => {
|
2018-04-09 15:22:26 +02:00
|
|
|
|
|
2020-02-05 13:14:24 +01:00
|
|
|
|
muting.add_muted_topic(frontend.stream_id, 'js', 1577836800);
|
2019-11-02 00:06:25 +01:00
|
|
|
|
let set_up_ui_called = false;
|
2020-04-22 23:22:26 +02:00
|
|
|
|
muting_ui.set_up_muted_topics_ui = function () {
|
|
|
|
|
const opts = muting.get_muted_topics();
|
2020-02-05 13:14:24 +01:00
|
|
|
|
assert.deepEqual(opts, [
|
|
|
|
|
{
|
|
|
|
|
date_muted: 1577836800000,
|
|
|
|
|
date_muted_str: 'Jan 01',
|
|
|
|
|
stream: frontend.name,
|
|
|
|
|
stream_id: frontend.stream_id,
|
|
|
|
|
topic: 'js',
|
|
|
|
|
}]);
|
2018-04-09 15:22:26 +02:00
|
|
|
|
set_up_ui_called = true;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
settings_muting.set_up();
|
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
|
const click_handler = $('body').get_on_handler('click', '.settings-unmute-topic');
|
2018-06-05 08:12:06 +02:00
|
|
|
|
assert.equal(typeof click_handler, 'function');
|
2018-04-09 15:22:26 +02:00
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
|
const event = {
|
2018-04-09 15:22:26 +02:00
|
|
|
|
stopImmediatePropagation: noop,
|
|
|
|
|
};
|
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
|
const fake_this = $.create('fake.settings-unmute-topic');
|
|
|
|
|
const tr_html = $('tr[data-topic="js"]');
|
2018-04-09 15:22:26 +02:00
|
|
|
|
fake_this.closest = function (opts) {
|
|
|
|
|
assert.equal(opts, 'tr');
|
|
|
|
|
return tr_html;
|
|
|
|
|
};
|
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
|
let data_called = 0;
|
2018-12-14 17:52:01 +01:00
|
|
|
|
tr_html.attr = function (opts) {
|
|
|
|
|
if (opts === 'data-stream-id') {
|
2018-04-09 15:22:26 +02:00
|
|
|
|
data_called += 1;
|
2018-12-14 17:52:01 +01:00
|
|
|
|
return frontend.stream_id;
|
2018-04-09 15:22:26 +02:00
|
|
|
|
}
|
2018-12-14 17:52:01 +01:00
|
|
|
|
if (opts === 'data-topic') {
|
2018-04-09 15:22:26 +02:00
|
|
|
|
data_called += 1;
|
|
|
|
|
return 'js';
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
|
let unmute_called = false;
|
2018-12-14 17:20:35 +01:00
|
|
|
|
muting_ui.unmute = function (stream_id, topic) {
|
|
|
|
|
assert.equal(stream_id, frontend.stream_id);
|
2018-04-09 15:22:26 +02:00
|
|
|
|
assert.equal(topic, 'js');
|
|
|
|
|
unmute_called = true;
|
|
|
|
|
};
|
|
|
|
|
click_handler.call(fake_this, event);
|
|
|
|
|
assert(unmute_called);
|
|
|
|
|
assert(set_up_ui_called);
|
|
|
|
|
assert.equal(data_called, 2);
|
2018-05-15 12:40:07 +02:00
|
|
|
|
});
|