2017-08-09 18:28:34 +02:00
|
|
|
zrequire('hash_util');
|
|
|
|
zrequire('hashchange');
|
|
|
|
zrequire('narrow_state');
|
|
|
|
zrequire('people');
|
|
|
|
zrequire('stream_data');
|
2018-11-30 00:20:10 +01:00
|
|
|
zrequire('util');
|
2017-08-09 18:28:34 +02:00
|
|
|
zrequire('Filter', 'js/filter');
|
2018-08-06 00:58:07 +02:00
|
|
|
set_global('i18n', global.stub_i18n);
|
2013-08-09 02:05:23 +02:00
|
|
|
|
2017-08-09 18:28:34 +02:00
|
|
|
zrequire('narrow');
|
2017-04-25 15:25:31 +02:00
|
|
|
|
2013-09-18 19:01:21 +02:00
|
|
|
function set_filter(operators) {
|
2014-02-10 18:59:48 +01:00
|
|
|
operators = _.map(operators, function (op) {
|
|
|
|
return {operator: op[0], operand: op[1]};
|
|
|
|
});
|
2017-04-25 15:25:31 +02:00
|
|
|
narrow_state.set_current_filter(new Filter(operators));
|
2013-09-18 19:01:21 +02:00
|
|
|
}
|
|
|
|
|
2018-10-18 19:41:44 +02:00
|
|
|
var me = {
|
|
|
|
email: 'me@example.com',
|
|
|
|
user_id: 5,
|
|
|
|
full_name: 'Me Myself',
|
|
|
|
};
|
|
|
|
|
2018-05-28 14:10:33 +02:00
|
|
|
var alice = {
|
|
|
|
email: 'alice@example.com',
|
|
|
|
user_id: 23,
|
|
|
|
full_name: 'Alice Smith',
|
|
|
|
};
|
|
|
|
|
|
|
|
var ray = {
|
|
|
|
email: 'ray@example.com',
|
|
|
|
user_id: 22,
|
|
|
|
full_name: 'Raymond',
|
|
|
|
};
|
|
|
|
|
2018-05-15 12:40:07 +02:00
|
|
|
run_test('stream_topic', () => {
|
2017-04-21 21:33:06 +02:00
|
|
|
set_filter([['stream', 'Foo'], ['topic', 'Bar'], ['search', 'Yo']]);
|
|
|
|
|
|
|
|
set_global('current_msg_list', {
|
|
|
|
});
|
|
|
|
|
|
|
|
global.current_msg_list.selected_message = function () {};
|
|
|
|
|
|
|
|
var stream_topic = narrow.stream_topic();
|
|
|
|
|
|
|
|
assert.deepEqual(stream_topic, {
|
|
|
|
stream: 'Foo',
|
|
|
|
topic: 'Bar',
|
|
|
|
});
|
|
|
|
|
|
|
|
global.current_msg_list.selected_message = function () {
|
|
|
|
return {
|
|
|
|
stream: 'Stream1',
|
2018-12-23 16:49:14 +01:00
|
|
|
topic: 'Topic1',
|
2017-04-21 21:33:06 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
stream_topic = narrow.stream_topic();
|
|
|
|
|
|
|
|
assert.deepEqual(stream_topic, {
|
|
|
|
stream: 'Stream1',
|
|
|
|
topic: 'Topic1',
|
|
|
|
});
|
|
|
|
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2017-04-21 21:33:06 +02:00
|
|
|
|
2018-05-15 12:40:07 +02:00
|
|
|
run_test('uris', () => {
|
2017-01-06 14:42:52 +01:00
|
|
|
people.add(ray);
|
|
|
|
people.add(alice);
|
2018-10-18 19:41:44 +02:00
|
|
|
people.add(me);
|
|
|
|
people.initialize_current_user(me.user_id);
|
2017-01-06 14:42:52 +01:00
|
|
|
|
2018-08-04 16:46:17 +02:00
|
|
|
var uri = hash_util.pm_with_uri(ray.email);
|
Make nicer slugs for "pm-with" narrows.
The slugs for PM-with narrows now have user ids in them, so they
are more resilient to email changes, and they have less escaping
characters and are generally prettier.
Examples:
narrow/pm-with/3-cordelia
narrow/pm-with/3,5-group
The part of the URL that is actionable is the comma-delimited
list of one or more userids.
When we decode the slugs, we only use the part before the dash; the
stuff after the dash is just for humans. If we don't see a number
before the dash, we fall back to the old decoding (which should only
matter during a transition period where folks may have old links).
For group PMS, we always say "group" after the dash. For single PMs,
we use the person's email userid, since it's usually fairly concise
and not noisy for a URL. We may tinker with this later.
Basically, the heart of this change is these two new methods:
people.emails_to_slug
people.slug_to_emails
And then we unify the encode codepath as follows:
narrow.pm_with_uri ->
hashchange.operators_to_hash ->
hashchange.encode_operand ->
people.emails_to_slug
The decode path didn't really require much modication in this commit,
other than to have hashchange.decode_operand call people.slug_to_emails
for the pm-with case.
2017-01-06 02:00:03 +01:00
|
|
|
assert.equal(uri, '#narrow/pm-with/22-ray');
|
2017-01-06 14:42:52 +01:00
|
|
|
|
2018-08-04 16:52:37 +02:00
|
|
|
uri = hash_util.huddle_with_uri("22,23");
|
2017-01-06 14:42:52 +01:00
|
|
|
assert.equal(uri, '#narrow/pm-with/22,23-group');
|
|
|
|
|
2018-08-04 17:19:03 +02:00
|
|
|
uri = hash_util.by_sender_uri(ray.email);
|
2017-01-19 03:53:50 +01:00
|
|
|
assert.equal(uri, '#narrow/sender/22-ray');
|
|
|
|
|
2017-03-19 00:43:14 +01:00
|
|
|
var emails = global.hash_util.decode_operand('pm-with', '22,23-group');
|
2017-01-06 14:42:52 +01:00
|
|
|
assert.equal(emails, 'alice@example.com,ray@example.com');
|
2018-10-18 19:41:44 +02:00
|
|
|
|
|
|
|
emails = global.hash_util.decode_operand('pm-with', '5,22,23-group');
|
|
|
|
assert.equal(emails, 'alice@example.com,ray@example.com');
|
|
|
|
|
|
|
|
emails = global.hash_util.decode_operand('pm-with', '5-group');
|
|
|
|
assert.equal(emails, 'me@example.com');
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2017-01-25 19:13:10 +01:00
|
|
|
|
2018-05-15 12:40:07 +02:00
|
|
|
run_test('show_empty_narrow_message', () => {
|
2017-01-25 19:13:10 +01:00
|
|
|
|
|
|
|
var hide_id;
|
|
|
|
var show_id;
|
2018-08-06 00:58:07 +02:00
|
|
|
var attr_id;
|
2018-04-11 22:19:42 +02:00
|
|
|
set_global('$', (id) => {
|
|
|
|
return {
|
|
|
|
hide: () => {hide_id = id;},
|
|
|
|
show: () => {show_id = id;},
|
2018-08-06 00:58:07 +02:00
|
|
|
attr: () => {attr_id = id;},
|
2018-04-11 22:19:42 +02:00
|
|
|
};
|
|
|
|
});
|
2017-01-25 19:13:10 +01:00
|
|
|
|
2017-04-25 15:25:31 +02:00
|
|
|
narrow_state.reset_current_filter();
|
2017-01-25 19:13:10 +01:00
|
|
|
narrow.show_empty_narrow_message();
|
2018-12-07 22:14:28 +01:00
|
|
|
assert.equal(hide_id, '.empty_feed_notice');
|
2017-01-25 19:13:10 +01:00
|
|
|
assert.equal(show_id, '#empty_narrow_message');
|
2018-08-06 00:58:07 +02:00
|
|
|
assert.equal(attr_id, '#left_bar_compose_reply_button_big');
|
2017-01-25 19:13:10 +01:00
|
|
|
|
|
|
|
// for non-existent or private stream
|
|
|
|
set_filter([['stream', 'Foo']]);
|
|
|
|
narrow.show_empty_narrow_message();
|
2018-12-07 22:14:28 +01:00
|
|
|
assert.equal(hide_id, '.empty_feed_notice');
|
2017-01-25 19:13:10 +01:00
|
|
|
assert.equal(show_id, '#nonsubbed_private_nonexistent_stream_narrow_message');
|
|
|
|
|
|
|
|
// for non sub public stream
|
2017-06-01 20:45:32 +02:00
|
|
|
stream_data.add_sub('ROME', {name: 'ROME', stream_id: 99});
|
2017-01-25 19:13:10 +01:00
|
|
|
set_filter([['stream', 'Rome']]);
|
|
|
|
narrow.show_empty_narrow_message();
|
2018-12-07 22:14:28 +01:00
|
|
|
assert.equal(hide_id, '.empty_feed_notice');
|
2017-01-25 19:13:10 +01:00
|
|
|
assert.equal(show_id, '#nonsubbed_stream_narrow_message');
|
|
|
|
|
|
|
|
set_filter([['is', 'starred']]);
|
|
|
|
narrow.show_empty_narrow_message();
|
2018-12-07 22:14:28 +01:00
|
|
|
assert.equal(hide_id, '.empty_feed_notice');
|
2017-01-25 19:13:10 +01:00
|
|
|
assert.equal(show_id, '#empty_star_narrow_message');
|
|
|
|
|
|
|
|
set_filter([['is', 'mentioned']]);
|
|
|
|
narrow.show_empty_narrow_message();
|
2018-12-07 22:14:28 +01:00
|
|
|
assert.equal(hide_id, '.empty_feed_notice');
|
2017-01-25 19:13:10 +01:00
|
|
|
assert.equal(show_id, '#empty_narrow_all_mentioned');
|
|
|
|
|
|
|
|
set_filter([['is', 'private']]);
|
|
|
|
narrow.show_empty_narrow_message();
|
2018-12-07 22:14:28 +01:00
|
|
|
assert.equal(hide_id, '.empty_feed_notice');
|
2017-01-25 19:13:10 +01:00
|
|
|
assert.equal(show_id, '#empty_narrow_all_private_message');
|
|
|
|
|
2017-06-18 23:50:00 +02:00
|
|
|
set_filter([['is', 'unread']]);
|
|
|
|
narrow.show_empty_narrow_message();
|
2018-12-07 22:14:28 +01:00
|
|
|
assert.equal(hide_id, '.empty_feed_notice');
|
2017-06-18 23:50:00 +02:00
|
|
|
assert.equal(show_id, '#no_unread_narrow_message');
|
|
|
|
|
2018-05-28 14:10:33 +02:00
|
|
|
set_filter([['pm-with', ['Yo']]]);
|
|
|
|
narrow.show_empty_narrow_message();
|
2018-12-07 22:14:28 +01:00
|
|
|
assert.equal(hide_id, '.empty_feed_notice');
|
2018-05-28 14:10:33 +02:00
|
|
|
assert.equal(show_id, '#non_existing_user');
|
|
|
|
|
|
|
|
people.add_in_realm(alice);
|
2017-01-25 19:13:10 +01:00
|
|
|
set_filter([['pm-with', ['alice@example.com', 'Yo']]]);
|
|
|
|
narrow.show_empty_narrow_message();
|
2018-12-07 22:14:28 +01:00
|
|
|
assert.equal(hide_id, '.empty_feed_notice');
|
2018-05-28 14:10:33 +02:00
|
|
|
assert.equal(show_id, '#non_existing_users');
|
2017-01-25 19:13:10 +01:00
|
|
|
|
|
|
|
set_filter([['pm-with', 'alice@example.com']]);
|
|
|
|
narrow.show_empty_narrow_message();
|
2018-12-07 22:14:28 +01:00
|
|
|
assert.equal(hide_id, '.empty_feed_notice');
|
2017-01-25 19:13:10 +01:00
|
|
|
assert.equal(show_id, '#empty_narrow_private_message');
|
|
|
|
|
2017-09-24 19:26:51 +02:00
|
|
|
set_filter([['group-pm-with', 'alice@example.com']]);
|
|
|
|
narrow.show_empty_narrow_message();
|
2018-12-07 22:14:28 +01:00
|
|
|
assert.equal(hide_id, '.empty_feed_notice');
|
2017-09-24 19:26:51 +02:00
|
|
|
assert.equal(show_id, '#empty_narrow_group_private_message');
|
|
|
|
|
2017-01-25 19:13:10 +01:00
|
|
|
set_filter([['sender', 'ray@example.com']]);
|
|
|
|
narrow.show_empty_narrow_message();
|
2018-12-07 22:14:28 +01:00
|
|
|
assert.equal(hide_id, '.empty_feed_notice');
|
2017-01-25 19:13:10 +01:00
|
|
|
assert.equal(show_id, '#silent_user');
|
|
|
|
|
|
|
|
set_filter([['sender', 'sinwar@example.com']]);
|
|
|
|
narrow.show_empty_narrow_message();
|
2018-12-07 22:14:28 +01:00
|
|
|
assert.equal(hide_id, '.empty_feed_notice');
|
2017-01-25 19:13:10 +01:00
|
|
|
assert.equal(show_id, '#non_existing_user');
|
|
|
|
|
|
|
|
set_filter([['search', 'grail']]);
|
|
|
|
narrow.show_empty_narrow_message();
|
2018-12-07 22:14:28 +01:00
|
|
|
assert.equal(hide_id, '.empty_feed_notice');
|
2017-01-25 19:13:10 +01:00
|
|
|
assert.equal(show_id, '#empty_search_narrow_message');
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2018-11-30 00:20:10 +01:00
|
|
|
|
|
|
|
run_test('narrow_to_compose_target', () => {
|
|
|
|
set_global('compose_state', {});
|
|
|
|
set_global('topic_data', {});
|
|
|
|
const args = {called: false};
|
|
|
|
const activate_backup = narrow.activate;
|
|
|
|
narrow.activate = function (operators, opts) {
|
|
|
|
args.operators = operators;
|
|
|
|
args.opts = opts;
|
|
|
|
args.called = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
// No-op when not composing.
|
|
|
|
global.compose_state.composing = () => false;
|
|
|
|
narrow.to_compose_target();
|
|
|
|
assert.equal(args.called, false);
|
|
|
|
global.compose_state.composing = () => true;
|
|
|
|
|
|
|
|
// No-op when empty stream.
|
|
|
|
global.compose_state.get_message_type = () => 'stream';
|
|
|
|
global.compose_state.stream_name = () => '';
|
|
|
|
args.called = false;
|
|
|
|
narrow.to_compose_target();
|
|
|
|
assert.equal(args.called, false);
|
|
|
|
|
|
|
|
// --- Tests for stream messages ---
|
|
|
|
global.compose_state.get_message_type = () => 'stream';
|
|
|
|
stream_data.add_sub('ROME', {name: 'ROME', stream_id: 99});
|
|
|
|
global.compose_state.stream_name = () => 'ROME';
|
|
|
|
global.topic_data.get_recent_names = () => ['one', 'two', 'three'];
|
|
|
|
|
|
|
|
// Test with existing topic
|
|
|
|
global.compose_state.topic = () => 'one';
|
|
|
|
args.called = false;
|
|
|
|
narrow.to_compose_target();
|
|
|
|
assert.equal(args.called, true);
|
|
|
|
assert.equal(args.opts.trigger, 'narrow_to_compose_target');
|
|
|
|
assert.deepEqual(args.operators, [
|
|
|
|
{operator: 'stream', operand: 'ROME'},
|
|
|
|
{operator: 'topic', operand: 'one'},
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Test with new topic
|
|
|
|
global.compose_state.topic = () => 'four';
|
|
|
|
args.called = false;
|
|
|
|
narrow.to_compose_target();
|
|
|
|
assert.equal(args.called, true);
|
|
|
|
assert.deepEqual(args.operators, [
|
|
|
|
{operator: 'stream', operand: 'ROME'},
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Test with blank topic
|
|
|
|
global.compose_state.topic = () => '';
|
|
|
|
args.called = false;
|
|
|
|
narrow.to_compose_target();
|
|
|
|
assert.equal(args.called, true);
|
|
|
|
assert.deepEqual(args.operators, [
|
|
|
|
{operator: 'stream', operand: 'ROME'},
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Test with no topic
|
|
|
|
global.compose_state.topic = () => {};
|
|
|
|
args.called = false;
|
|
|
|
narrow.to_compose_target();
|
|
|
|
assert.equal(args.called, true);
|
|
|
|
assert.deepEqual(args.operators, [
|
|
|
|
{operator: 'stream', operand: 'ROME'},
|
|
|
|
]);
|
|
|
|
|
|
|
|
// --- Tests for PMs ---
|
|
|
|
global.compose_state.get_message_type = () => 'private';
|
|
|
|
people.add_in_realm(ray);
|
|
|
|
people.add_in_realm(alice);
|
|
|
|
people.add_in_realm(me);
|
|
|
|
|
|
|
|
// Test with valid person
|
|
|
|
global.compose_state.recipient = () => 'alice@example.com';
|
|
|
|
args.called = false;
|
|
|
|
narrow.to_compose_target();
|
|
|
|
assert.equal(args.called, true);
|
|
|
|
assert.deepEqual(args.operators, [
|
|
|
|
{operator: 'pm-with', operand: 'alice@example.com'},
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Test with valid persons
|
|
|
|
global.compose_state.recipient = () => 'alice@example.com,ray@example.com';
|
|
|
|
args.called = false;
|
|
|
|
narrow.to_compose_target();
|
|
|
|
assert.equal(args.called, true);
|
|
|
|
assert.deepEqual(args.operators, [
|
|
|
|
{operator: 'pm-with', operand: 'alice@example.com,ray@example.com'},
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Test with some inavlid persons
|
|
|
|
global.compose_state.recipient = () => 'alice@example.com,random,ray@example.com';
|
|
|
|
args.called = false;
|
|
|
|
narrow.to_compose_target();
|
|
|
|
assert.equal(args.called, true);
|
|
|
|
assert.deepEqual(args.operators, [
|
|
|
|
{operator: 'is', operand: 'private'},
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Test with all inavlid persons
|
|
|
|
global.compose_state.recipient = () => 'alice,random,ray';
|
|
|
|
args.called = false;
|
|
|
|
narrow.to_compose_target();
|
|
|
|
assert.equal(args.called, true);
|
|
|
|
assert.deepEqual(args.operators, [
|
|
|
|
{operator: 'is', operand: 'private'},
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Test with no persons
|
|
|
|
global.compose_state.recipient = () => '';
|
|
|
|
args.called = false;
|
|
|
|
narrow.to_compose_target();
|
|
|
|
assert.equal(args.called, true);
|
|
|
|
assert.deepEqual(args.operators, [
|
|
|
|
{operator: 'is', operand: 'private'},
|
|
|
|
]);
|
|
|
|
|
|
|
|
narrow.activate = activate_backup;
|
|
|
|
});
|