Ghost/test/unit/server/web/api/middleware/normalize-image.test.js
Hannah Wolfe 9e96b04542
Moved server unit tests into the server folder
- this is a small part of a bit of cleanup of our test files
- the goal is to make the existing tests clearer with a view to making it easier to write more tests
- this makes the test structure follow the codebase structure more closely
- eventually we will colocate the tests as we break the codebase down further
2021-10-06 12:01:09 +01:00

83 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('@tryghost/logging');
const normalize = require('../../../../../../core/server/web/api/middleware/normalize-image');
describe('normalize', function () {
let res;
let 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();
});
});
});
});