Cable-Desktop/test/views/message_view_test.js

48 lines
1.5 KiB
JavaScript
Raw Normal View History

2014-09-01 20:52:58 +02:00
describe('MessageView', function() {
var conversations = new Whisper.ConversationCollection();
before(function(done) {
conversations.fetch().then(done);
});
var convo = conversations.add({id: 'foo'});
2014-11-21 01:30:52 +01:00
var message = convo.messageCollection.add({
conversationId: convo.id,
2014-09-01 20:52:58 +02:00
body: 'hello world',
type: 'outgoing',
2014-12-17 02:23:04 +01:00
received_at: new Date().getTime()
2014-09-01 20:52:58 +02:00
});
2014-09-04 09:25:08 +02:00
it('should display the message text', function() {
2014-11-21 01:30:52 +01:00
var view = new Whisper.MessageView({model: message}).render();
assert.match(view.$el.text(), /hello world/);
2014-09-04 09:25:08 +02:00
});
2014-09-01 20:52:58 +02:00
2014-09-04 09:25:08 +02:00
it('should auto-update the message text', function() {
2014-11-21 01:30:52 +01:00
var view = new Whisper.MessageView({model: message}).render();
2014-09-04 09:25:08 +02:00
message.set('body', 'goodbye world');
assert.match(view.$el.html(), /goodbye world/);
});
2014-09-01 20:52:58 +02:00
it('should have a nice timestamp', function() {
var view = new Whisper.MessageView({model: message});
2014-12-17 02:23:04 +01:00
message.set({'received_at': new Date().getTime() - 5000});
2015-03-06 01:51:53 +01:00
view.render();
assert.match(view.$el.html(), /seconds ago/);
2014-12-17 02:23:04 +01:00
message.set({'received_at': new Date().getTime() - 60000});
2015-03-06 01:51:53 +01:00
view.render();
assert.match(view.$el.html(), /minute ago/);
2014-12-17 02:23:04 +01:00
message.set({'received_at': new Date().getTime() - 3600000});
2015-03-06 01:51:53 +01:00
view.render();
assert.match(view.$el.html(), /hour ago/);
});
2014-09-04 09:25:08 +02:00
it('should go away when the model is destroyed', function() {
var view = new Whisper.MessageView({model: message});
var div = $('<div>').append(view.$el);
message.destroy();
assert.strictEqual(div.find(view.$el).length, 0);
2014-09-01 20:52:58 +02:00
});
});