52 lines
1.4 KiB
JavaScript
52 lines
1.4 KiB
JavaScript
|
const chai = require('chai');
|
||
|
const expect = chai.expect;
|
||
|
|
||
|
describe('#parsePublishApiRequestFiles()', function () {
|
||
|
const parsePublishApiRequestFiles = require('./parsePublishApiRequestFiles.js');
|
||
|
|
||
|
it('should throw an error if no files', function () {
|
||
|
expect(parsePublishApiRequestFiles.bind(this, null)).to.throw();
|
||
|
});
|
||
|
|
||
|
it('should throw an error if no files.file', function () {
|
||
|
const filesNoFile = {};
|
||
|
expect(parsePublishApiRequestFiles.bind(this, filesNoFile)).to.throw();
|
||
|
});
|
||
|
|
||
|
it('should throw an error if file.size is too large', function () {
|
||
|
const filesTooBig = {
|
||
|
file: {
|
||
|
name: 'file.jpg',
|
||
|
path: '/path/to/file.jpg',
|
||
|
type: 'image/jpg',
|
||
|
size: 10000001,
|
||
|
},
|
||
|
};
|
||
|
expect(parsePublishApiRequestFiles.bind(this, filesTooBig)).to.throw();
|
||
|
});
|
||
|
|
||
|
it('should throw error if not an accepted file type', function () {
|
||
|
const filesWrongType = {
|
||
|
file: {
|
||
|
name: 'file.jpg',
|
||
|
path: '/path/to/file.jpg',
|
||
|
type: 'someType/ext',
|
||
|
size: 10000000,
|
||
|
},
|
||
|
};
|
||
|
expect(parsePublishApiRequestFiles.bind(this, filesWrongType)).to.throw();
|
||
|
});
|
||
|
|
||
|
it('should throw NO error if no problems', function () {
|
||
|
const filesNoProblems = {
|
||
|
file: {
|
||
|
name: 'file.jpg',
|
||
|
path: '/path/to/file.jpg',
|
||
|
type: 'image/jpg',
|
||
|
size: 10000000,
|
||
|
},
|
||
|
};
|
||
|
expect(parsePublishApiRequestFiles.bind(this, filesNoProblems)).to.not.throw();
|
||
|
});
|
||
|
});
|