You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
155 lines
4.3 KiB
JavaScript
155 lines
4.3 KiB
JavaScript
'use strict';
|
|
|
|
const attributes = {
|
|
type: 'outgoing',
|
|
body: 'hi',
|
|
conversationId: 'foo',
|
|
attachments: [],
|
|
received_at: new Date().getTime(),
|
|
};
|
|
|
|
const source = '+14155555555';
|
|
|
|
describe('MessageCollection', () => {
|
|
before(async () => {
|
|
await clearDatabase();
|
|
window.getConversationController().reset();
|
|
window.textsecure.storage.user.getNumber = () =>
|
|
'051111111111111111111111111111111111111111111111111111111111111111';
|
|
await window.getConversationController().load();
|
|
});
|
|
after(() => {
|
|
return clearDatabase();
|
|
});
|
|
|
|
it('gets outgoing contact', () => {
|
|
const messages = new window.models.Message.MessageCollection();
|
|
const message = messages.add(attributes);
|
|
message.getContact();
|
|
});
|
|
|
|
it('gets incoming contact', () => {
|
|
const messages = new window.models.Message.MessageCollection();
|
|
const message = messages.add({
|
|
type: 'incoming',
|
|
source,
|
|
conversationId: 'conversationId',
|
|
});
|
|
message.getContact();
|
|
});
|
|
|
|
it('should be ordered oldest to newest', () => {
|
|
const messages = new window.models.Message.MessageCollection();
|
|
// Timestamps
|
|
const today = new Date();
|
|
const tomorrow = new Date();
|
|
tomorrow.setDate(today.getDate() + 1);
|
|
|
|
// Add threads
|
|
messages.add({ received_at: today, conversationId: 'conversationId' });
|
|
messages.add({ received_at: tomorrow, conversationId: 'conversationId' });
|
|
|
|
const { models } = messages;
|
|
const firstTimestamp = models[0].get('received_at').getTime();
|
|
const secondTimestamp = models[1].get('received_at').getTime();
|
|
|
|
// Compare timestamps
|
|
assert(firstTimestamp < secondTimestamp);
|
|
});
|
|
|
|
it('checks if is incoming message', () => {
|
|
const messages = new window.models.Message.MessageCollection();
|
|
let message = messages.add(attributes);
|
|
assert.notOk(message.isIncoming());
|
|
message = messages.add({
|
|
type: 'incoming',
|
|
conversationId: 'conversationId',
|
|
});
|
|
assert.ok(message.isIncoming());
|
|
});
|
|
|
|
it('checks if is outgoing message', () => {
|
|
const messages = new window.models.Message.MessageCollection();
|
|
let message = messages.add(attributes);
|
|
assert.ok(message.isOutgoing());
|
|
message = messages.add({
|
|
type: 'incoming',
|
|
conversationId: 'conversationId',
|
|
});
|
|
assert.notOk(message.isOutgoing());
|
|
});
|
|
|
|
it('checks if is group update', () => {
|
|
const messages = new window.models.Message.MessageCollection();
|
|
let message = messages.add(attributes);
|
|
assert.notOk(message.isGroupUpdate());
|
|
|
|
message = messages.add({
|
|
group_update: true,
|
|
conversationId: 'conversationId',
|
|
});
|
|
assert.ok(message.isGroupUpdate());
|
|
});
|
|
|
|
it('returns an accurate description', () => {
|
|
const messages = new window.models.Message.MessageCollection();
|
|
let message = messages.add(attributes);
|
|
|
|
assert.equal(
|
|
message.getDescription(),
|
|
'hi',
|
|
'If no group updates or end session flags, return message body.'
|
|
);
|
|
|
|
message = messages.add({
|
|
group_update: { left: 'Alice' },
|
|
conversationId: 'conversationId',
|
|
});
|
|
assert.equal(
|
|
message.getDescription(),
|
|
'Alice has left the group.',
|
|
'Notes one person leaving the group.'
|
|
);
|
|
|
|
message = messages.add({
|
|
group_update: { name: 'blerg' },
|
|
conversationId: 'conversationId',
|
|
});
|
|
assert.equal(
|
|
message.getDescription(),
|
|
"Group name is now 'blerg'.",
|
|
'Returns a single notice if only group_updates.name changes.'
|
|
);
|
|
|
|
message = messages.add({
|
|
group_update: { joined: ['Bob'] },
|
|
conversationId: 'conversationId',
|
|
});
|
|
assert.equal(
|
|
message.getDescription(),
|
|
'Bob joined the group.',
|
|
'Returns a single notice if only group_updates.joined changes.'
|
|
);
|
|
|
|
message = messages.add({
|
|
group_update: { joined: ['Bob', 'Alice', 'Eve'] },
|
|
conversationId: 'conversationId',
|
|
});
|
|
assert.equal(
|
|
message.getDescription(),
|
|
'Bob, Alice, Eve joined the group.',
|
|
'Notes when >1 person joins the group.'
|
|
);
|
|
|
|
message = messages.add({
|
|
group_update: { joined: ['Bob'], name: 'blerg' },
|
|
conversationId: 'conversationId',
|
|
});
|
|
assert.equal(
|
|
message.getDescription(),
|
|
"Group name is now 'blerg'. Bob joined the group.",
|
|
'Notes when there are multiple changes to group_updates properties.'
|
|
);
|
|
});
|
|
});
|