Replace Backbone `saveFile` with `Attachment.save`
parent
9a76d4bcf8
commit
41fe50553f
@ -1,59 +1,44 @@
|
|||||||
describe('AttachmentView', function() {
|
/* global assert: false */
|
||||||
|
|
||||||
describe('with arbitrary files', function() {
|
/* global Whisper: false */
|
||||||
it('should render a file view', function() {
|
|
||||||
var attachment = {
|
|
||||||
contentType: 'unused',
|
|
||||||
size: 1232
|
|
||||||
};
|
|
||||||
var view = new Whisper.AttachmentView({model: attachment}).render();
|
|
||||||
assert.match(view.el.innerHTML, /fileView/);
|
|
||||||
});
|
|
||||||
it('should display the filename if present', function() {
|
|
||||||
var attachment = {
|
|
||||||
fileName: 'foo.txt',
|
|
||||||
contentType: 'unused',
|
|
||||||
size: 1232,
|
|
||||||
};
|
|
||||||
var view = new Whisper.AttachmentView({model: attachment}).render();
|
|
||||||
assert.match(view.el.innerHTML, /foo.txt/);
|
|
||||||
});
|
|
||||||
it('should render a file size', function() {
|
|
||||||
var attachment = {
|
|
||||||
size: 1232,
|
|
||||||
contentType: 'unused'
|
|
||||||
};
|
|
||||||
var view = new Whisper.AttachmentView({model: attachment}).render();
|
|
||||||
assert.match(view.el.innerHTML, /1.2 KB/);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
it('should render an image for images', function() {
|
|
||||||
var now = new Date().getTime();
|
|
||||||
var attachment = { contentType: 'image/png', data: 'grumpy cat' };
|
|
||||||
var view = new Whisper.AttachmentView({model: attachment, timestamp: now}).render();
|
|
||||||
assert.equal(view.el.firstChild.tagName, "IMG");
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should display a filename', function() {
|
'use strict';
|
||||||
var epoch = new Date((new Date(0)).getTimezoneOffset() * 60 * 1000);
|
|
||||||
var attachment = { contentType: 'image/png', data: 'grumpy cat' };
|
|
||||||
var result = new Whisper.AttachmentView({
|
|
||||||
model: attachment,
|
|
||||||
timestamp: epoch
|
|
||||||
}).suggestedName();
|
|
||||||
|
|
||||||
var expected = '1970-01-01-000000';
|
describe('AttachmentView', () => {
|
||||||
assert(result === 'signal-' + expected + '.png');
|
describe('with arbitrary files', () => {
|
||||||
|
it('should render a file view', () => {
|
||||||
|
const attachment = {
|
||||||
|
contentType: 'unused',
|
||||||
|
size: 1232,
|
||||||
|
};
|
||||||
|
const view = new Whisper.AttachmentView({ model: attachment }).render();
|
||||||
|
assert.match(view.el.innerHTML, /fileView/);
|
||||||
|
});
|
||||||
|
it('should display the filename if present', () => {
|
||||||
|
const attachment = {
|
||||||
|
fileName: 'foo.txt',
|
||||||
|
contentType: 'unused',
|
||||||
|
size: 1232,
|
||||||
|
};
|
||||||
|
const view = new Whisper.AttachmentView({ model: attachment }).render();
|
||||||
|
assert.match(view.el.innerHTML, /foo.txt/);
|
||||||
|
});
|
||||||
|
it('should render a file size', () => {
|
||||||
|
const attachment = {
|
||||||
|
size: 1232,
|
||||||
|
contentType: 'unused',
|
||||||
|
};
|
||||||
|
const view = new Whisper.AttachmentView({ model: attachment }).render();
|
||||||
|
assert.match(view.el.innerHTML, /1.2 KB/);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
it('should auto-generate a filename', function() {
|
it('should render an image for images', () => {
|
||||||
var epoch = new Date((new Date(0)).getTimezoneOffset() * 60 * 1000);
|
const now = new Date().getTime();
|
||||||
var attachment = { contentType: 'image/png', data: 'grumpy cat' };
|
const attachment = { contentType: 'image/png', data: 'grumpy cat' };
|
||||||
var result = new Whisper.AttachmentView({
|
const view = new Whisper.AttachmentView({
|
||||||
model: attachment,
|
model: attachment,
|
||||||
timestamp: epoch
|
timestamp: now,
|
||||||
}).suggestedName();
|
}).render();
|
||||||
|
assert.equal(view.el.firstChild.tagName, 'IMG');
|
||||||
var expected = '1970-01-01-000000';
|
|
||||||
assert(result === 'signal-' + expected + '.png');
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue