Ghost/test/unit/web/api/middleware/normalize-image_spec.js
Hannah Wolfe f4f61b8a3a Moved normalize image mw into api app
- Moved normalize image mw from shared to api as it is not shared (except within the API)
- This file is only used in one part of the app, this updates the code structure to reflect this
- This is one of many similar changes needed to make it easier to refactor to the existing setup
2020-04-22 17:48:54 +01:00

82 lines
2.4 KiB
JavaScript

const should = require('should');
const sinon = require('sinon');
const configUtils = require('../../../../utils/configUtils');
const imageTransform = require('@tryghost/image-transform');
const {logging} = require('../../../../../core/server/lib/common');
const normalize = require('../../../../../core/server/web/api/middleware/normalize-image');
describe('normalize', function () {
let res, req;
beforeEach(function () {
req = {
file: {
name: 'test',
path: '/test/path',
ext: '.jpg'
}
};
sinon.stub(imageTransform, 'resizeFromPath');
sinon.stub(logging, 'error');
});
afterEach(function () {
sinon.restore();
configUtils.restore();
});
it('should do manipulation by default', function (done) {
imageTransform.resizeFromPath.resolves();
normalize(req, res, function () {
imageTransform.resizeFromPath.calledOnce.should.be.true();
done();
});
});
it('should add files array to request object with original and resized files', function (done) {
imageTransform.resizeFromPath.resolves();
normalize(req, res, function () {
req.files.length.should.be.equal(2);
done();
});
});
it('should not do manipulation without resize flag set', function (done) {
configUtils.set({
imageOptimization: {
resize: false
}
});
normalize(req, res, function () {
imageTransform.resizeFromPath.called.should.be.false();
done();
});
});
it('should not create files array when resizing fails', function (done) {
imageTransform.resizeFromPath.rejects();
normalize(req, res, () => {
logging.error.calledOnce.should.be.true();
req.file.should.not.be.equal(undefined);
should.not.exist(req.files);
done();
});
});
['.gif', '.svg', '.svgz'].forEach(function (extension) {
it(`should skip resizing when file extension is ${extension}`, function (done) {
req.file.ext = extension;
normalize(req, res, function () {
req.file.should.not.be.equal(undefined);
should.not.exist(req.files);
done();
});
});
});
});