2018-04-13 23:44:10 +02:00
|
|
|
zrequire('hash_util');
|
|
|
|
zrequire('stream_data');
|
|
|
|
zrequire('people');
|
|
|
|
|
2018-08-05 01:30:23 +02:00
|
|
|
var _window = {
|
|
|
|
location: {
|
|
|
|
protocol: "https:",
|
|
|
|
host: "example.com",
|
|
|
|
pathname: "/",
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
global.patch_builtin('window', _window);
|
|
|
|
|
2018-04-13 23:44:10 +02:00
|
|
|
var hamlet = {
|
|
|
|
user_id: 1,
|
|
|
|
email: 'hamlet@example.com',
|
|
|
|
full_name: 'Hamlet',
|
|
|
|
};
|
|
|
|
|
|
|
|
people.add_in_realm(hamlet);
|
|
|
|
|
|
|
|
var sub = {
|
|
|
|
stream_id: 99,
|
|
|
|
name: 'frontend',
|
|
|
|
};
|
|
|
|
|
|
|
|
stream_data.add_sub(sub.name, sub);
|
|
|
|
|
2018-05-15 12:40:07 +02:00
|
|
|
run_test('hash_util', () => {
|
2018-04-13 23:44:10 +02:00
|
|
|
// Test encodeHashComponent
|
|
|
|
var str = 'https://www.zulipexample.com';
|
|
|
|
var result1 = hash_util.encodeHashComponent(str);
|
|
|
|
assert.equal(result1, 'https.3A.2F.2Fwww.2Ezulipexample.2Ecom');
|
|
|
|
|
|
|
|
// Test decodeHashComponent
|
|
|
|
var result2 = hash_util.decodeHashComponent(result1);
|
|
|
|
assert.equal(result2, str);
|
|
|
|
|
|
|
|
// Test encode_operand and decode_operand
|
|
|
|
|
|
|
|
function encode_decode_operand(operator, operand, expected_val) {
|
|
|
|
var encode_result = hash_util.encode_operand(operator, operand);
|
|
|
|
assert.equal(encode_result, expected_val);
|
|
|
|
var new_operand = encode_result;
|
|
|
|
var decode_result = hash_util.decode_operand(operator, new_operand);
|
|
|
|
assert.equal(decode_result, operand);
|
|
|
|
}
|
|
|
|
|
|
|
|
var operator = 'sender';
|
|
|
|
var operand = hamlet.email;
|
|
|
|
|
|
|
|
encode_decode_operand(operator, operand, '1-hamlet');
|
|
|
|
|
|
|
|
operator = 'stream';
|
|
|
|
operand = 'frontend';
|
|
|
|
|
|
|
|
encode_decode_operand(operator, operand, '99-frontend');
|
|
|
|
|
|
|
|
operator = 'topic';
|
|
|
|
operand = 'testing 123';
|
|
|
|
|
|
|
|
encode_decode_operand(operator, operand, 'testing.20123');
|
2018-05-15 12:40:07 +02:00
|
|
|
});
|
2018-08-05 01:30:23 +02:00
|
|
|
|
2018-12-04 23:24:03 +01:00
|
|
|
run_test('test_parse_narrow', () => {
|
|
|
|
assert.deepEqual(
|
|
|
|
hash_util.parse_narrow(['narrow', 'stream', '11-social']),
|
|
|
|
[{negated: false, operator: 'stream', operand: '11-social'}]
|
|
|
|
);
|
|
|
|
|
2018-12-04 23:29:43 +01:00
|
|
|
assert.equal(
|
2018-12-04 23:24:03 +01:00
|
|
|
hash_util.parse_narrow(['narrow', 'BOGUS']),
|
2018-12-04 23:29:43 +01:00
|
|
|
undefined
|
2018-12-04 23:24:03 +01:00
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2018-12-02 19:42:34 +01:00
|
|
|
run_test('test_stream_edit_uri', () => {
|
|
|
|
var sub = {
|
|
|
|
name: 'research & development',
|
|
|
|
stream_id: 42,
|
|
|
|
};
|
|
|
|
assert.equal(hash_util.stream_edit_uri(sub),
|
|
|
|
'#streams/42/research.20.26.20development');
|
|
|
|
});
|
|
|
|
|
2018-08-05 01:30:23 +02:00
|
|
|
run_test('test_by_conversation_and_time_uri', () => {
|
|
|
|
var message = {
|
|
|
|
type: 'stream',
|
|
|
|
stream: 'frontend',
|
|
|
|
subject: 'testing',
|
|
|
|
id: 42,
|
|
|
|
};
|
|
|
|
|
|
|
|
assert.equal(hash_util.by_conversation_and_time_uri(message),
|
|
|
|
'https://example.com/#narrow/stream/99-frontend/subject/testing/near/42');
|
|
|
|
|
|
|
|
message = {
|
|
|
|
type: 'private',
|
2018-10-18 22:05:43 +02:00
|
|
|
display_recipient: [
|
|
|
|
{
|
|
|
|
user_id: hamlet.user_id,
|
|
|
|
},
|
|
|
|
],
|
2018-08-05 01:30:23 +02:00
|
|
|
id: 43,
|
|
|
|
};
|
|
|
|
|
|
|
|
assert.equal(hash_util.by_conversation_and_time_uri(message),
|
2018-10-18 22:05:43 +02:00
|
|
|
'https://example.com/#narrow/pm-with/1-pm/near/43');
|
2018-08-05 01:30:23 +02:00
|
|
|
});
|