|
|
|
@ -5,7 +5,7 @@ import 'mocha';
|
|
|
|
|
import { assert } from 'chai';
|
|
|
|
|
|
|
|
|
|
import * as Attachment from '../../types/Attachment';
|
|
|
|
|
import { MIMEType } from '../../types/MIME';
|
|
|
|
|
import * as MIME from '../../types/MIME';
|
|
|
|
|
// @ts-ignore
|
|
|
|
|
import { stringToArrayBuffer } from '../../../js/modules/string_to_array_buffer';
|
|
|
|
|
|
|
|
|
@ -14,7 +14,7 @@ describe('Attachment', () => {
|
|
|
|
|
it('should return file extension from content type', () => {
|
|
|
|
|
const input: Attachment.Attachment = {
|
|
|
|
|
data: stringToArrayBuffer('foo'),
|
|
|
|
|
contentType: 'image/gif' as MIMEType,
|
|
|
|
|
contentType: MIME.IMAGE_GIF,
|
|
|
|
|
};
|
|
|
|
|
assert.strictEqual(Attachment.getFileExtension(input), 'gif');
|
|
|
|
|
});
|
|
|
|
@ -22,7 +22,7 @@ describe('Attachment', () => {
|
|
|
|
|
it('should return file extension for QuickTime videos', () => {
|
|
|
|
|
const input: Attachment.Attachment = {
|
|
|
|
|
data: stringToArrayBuffer('foo'),
|
|
|
|
|
contentType: 'video/quicktime' as MIMEType,
|
|
|
|
|
contentType: MIME.VIDEO_QUICKTIME,
|
|
|
|
|
};
|
|
|
|
|
assert.strictEqual(Attachment.getFileExtension(input), 'mov');
|
|
|
|
|
});
|
|
|
|
@ -34,7 +34,7 @@ describe('Attachment', () => {
|
|
|
|
|
const attachment: Attachment.Attachment = {
|
|
|
|
|
fileName: 'funny-cat.mov',
|
|
|
|
|
data: stringToArrayBuffer('foo'),
|
|
|
|
|
contentType: 'video/quicktime' as MIMEType,
|
|
|
|
|
contentType: MIME.VIDEO_QUICKTIME,
|
|
|
|
|
};
|
|
|
|
|
const actual = Attachment.getSuggestedFilename({ attachment });
|
|
|
|
|
const expected = 'funny-cat.mov';
|
|
|
|
@ -45,7 +45,7 @@ describe('Attachment', () => {
|
|
|
|
|
it('should generate a filename based on timestamp', () => {
|
|
|
|
|
const attachment: Attachment.Attachment = {
|
|
|
|
|
data: stringToArrayBuffer('foo'),
|
|
|
|
|
contentType: 'video/quicktime' as MIMEType,
|
|
|
|
|
contentType: MIME.VIDEO_QUICKTIME,
|
|
|
|
|
};
|
|
|
|
|
const timestamp = new Date(new Date(0).getTimezoneOffset() * 60 * 1000);
|
|
|
|
|
const actual = Attachment.getSuggestedFilename({
|
|
|
|
|