63 lines
2.1 KiB
JavaScript
63 lines
2.1 KiB
JavaScript
const chai = require('chai');
|
|
const expect = chai.expect;
|
|
|
|
describe('publishHelpers.js', function () {
|
|
const publishHelpers = require('../../server/helpers/publishHelpers.js');
|
|
|
|
describe('#parsePublishApiRequestBody()', function () {
|
|
it('should throw an error if no body', function () {
|
|
expect(publishHelpers.parsePublishApiRequestBody.bind(this, null)).to.throw();
|
|
});
|
|
it('should throw an error if no body.name', function () {
|
|
const bodyNoName = {};
|
|
expect(publishHelpers.parsePublishApiRequestBody.bind(this, bodyNoName)).to.throw();
|
|
});
|
|
});
|
|
|
|
describe('#parsePublishApiRequestFiles()', function () {
|
|
it('should throw an error if no files', function () {
|
|
expect(publishHelpers.parsePublishApiRequestFiles.bind(this, null)).to.throw();
|
|
});
|
|
it('should throw an error if no files.file', function () {
|
|
const filesNoFile = {};
|
|
expect(publishHelpers.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(publishHelpers.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(publishHelpers.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(publishHelpers.parsePublishApiRequestFiles.bind(this, filesNoProblems)).to.not.throw();
|
|
});
|
|
});
|
|
|
|
describe('#parsePublishApiChannel()', function () {
|
|
it('should pass the tests I write here');
|
|
});
|
|
});
|