mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 22:43:30 +03:00
f08a55c21f
refs: https://github.com/TryGhost/Team/issues/856 refs: https://github.com/TryGhost/Team/issues/756 - The .test.js extension is better than _spec.js as it's more obvious that it's an extension - It also meaans we can use the --extension parameter in mocha, which should result in a better default behaviour for `yarn test` - It also highlights that some of our tests were named incorrectly and were not (and still will not be) run (see https://github.com/TryGhost/Team/issues/856) - Note: even with this change, `yarn test` is throwing errors, I believe because of this issue https://github.com/TryGhost/Team/issues/756
195 lines
7.3 KiB
JavaScript
195 lines
7.3 KiB
JavaScript
const should = require('should');
|
|
const sinon = require('sinon');
|
|
const configUtils = require('../../utils/configUtils');
|
|
|
|
// Stuff we are testing
|
|
const helpers = require('../../../core/frontend/helpers');
|
|
|
|
const logging = require('@tryghost/logging');
|
|
|
|
describe('{{img_url}} helper', function () {
|
|
let logWarnStub;
|
|
|
|
beforeEach(function () {
|
|
logWarnStub = sinon.stub(logging, 'warn');
|
|
});
|
|
|
|
afterEach(function () {
|
|
sinon.restore();
|
|
});
|
|
|
|
describe('without sub-directory', function () {
|
|
before(function () {
|
|
configUtils.set({url: 'http://localhost:65535/'});
|
|
});
|
|
|
|
after(function () {
|
|
configUtils.restore();
|
|
});
|
|
|
|
it('should output relative url of image', function () {
|
|
const rendered = helpers.img_url('/content/images/image-relative-url.png', {});
|
|
should.exist(rendered);
|
|
rendered.should.equal('/content/images/image-relative-url.png');
|
|
logWarnStub.called.should.be.false();
|
|
});
|
|
|
|
it('should output relative url of image if the input is absolute', function () {
|
|
const rendered = helpers.img_url('http://localhost:65535/content/images/image-relative-url.png', {});
|
|
should.exist(rendered);
|
|
rendered.should.equal('/content/images/image-relative-url.png');
|
|
logWarnStub.called.should.be.false();
|
|
});
|
|
|
|
it('should output absolute url of image if the option is present ', function () {
|
|
const rendered = helpers.img_url('/content/images/image-relative-url.png', {hash: {absolute: 'true'}});
|
|
should.exist(rendered);
|
|
rendered.should.equal('http://localhost:65535/content/images/image-relative-url.png');
|
|
logWarnStub.called.should.be.false();
|
|
});
|
|
|
|
it('should NOT output absolute url of image if the option is "false" ', function () {
|
|
const rendered = helpers.img_url('/content/images/image-relative-url.png', {hash: {absolute: 'false'}});
|
|
should.exist(rendered);
|
|
rendered.should.equal('/content/images/image-relative-url.png');
|
|
});
|
|
|
|
it('should output author url', function () {
|
|
const rendered = helpers.img_url('/content/images/author-image-relative-url.png', {});
|
|
should.exist(rendered);
|
|
rendered.should.equal('/content/images/author-image-relative-url.png');
|
|
logWarnStub.called.should.be.false();
|
|
});
|
|
|
|
it('should have no output if the image attribute is not provided (with warning)', function () {
|
|
const rendered = helpers.img_url({hash: {absolute: 'true'}});
|
|
should.not.exist(rendered);
|
|
logWarnStub.calledOnce.should.be.true();
|
|
});
|
|
|
|
it('should have no output if the image attribute evaluates to undefined (with warning)', function () {
|
|
const rendered = helpers.img_url(undefined, {hash: {absolute: 'true'}});
|
|
should.not.exist(rendered);
|
|
logWarnStub.calledOnce.should.be.true();
|
|
});
|
|
|
|
it('should have no output if the image attribute evaluates to null (no waring)', function () {
|
|
const rendered = helpers.img_url(null, {hash: {absolute: 'true'}});
|
|
should.not.exist(rendered);
|
|
logWarnStub.calledOnce.should.be.false();
|
|
});
|
|
});
|
|
|
|
describe('with sub-directory', function () {
|
|
before(function () {
|
|
configUtils.set({url: 'http://localhost:65535/blog'});
|
|
});
|
|
|
|
after(function () {
|
|
configUtils.restore();
|
|
});
|
|
|
|
it('should output relative url of image', function () {
|
|
const rendered = helpers.img_url('/blog/content/images/image-relative-url.png', {});
|
|
should.exist(rendered);
|
|
rendered.should.equal('/blog/content/images/image-relative-url.png');
|
|
});
|
|
|
|
it('should output absolute url of image if the option is present ', function () {
|
|
const rendered = helpers.img_url('/blog/content/images/image-relative-url.png', {hash: {absolute: 'true'}});
|
|
should.exist(rendered);
|
|
rendered.should.equal('http://localhost:65535/blog/content/images/image-relative-url.png');
|
|
});
|
|
|
|
it('should not change output for an external url', function () {
|
|
const rendered = helpers.img_url('http://example.com/picture.jpg', {});
|
|
should.exist(rendered);
|
|
rendered.should.equal('http://example.com/picture.jpg');
|
|
});
|
|
});
|
|
|
|
describe('image_sizes', function () {
|
|
before(function () {
|
|
configUtils.set({url: 'http://localhost:65535/'});
|
|
});
|
|
|
|
after(function () {
|
|
configUtils.restore();
|
|
});
|
|
|
|
it('should output correct url for absolute paths which are internal', function () {
|
|
const rendered = helpers.img_url('http://localhost:65535/content/images/my-coole-img.jpg', {
|
|
hash: {
|
|
size: 'medium'
|
|
},
|
|
data: {
|
|
config: {
|
|
image_sizes: {
|
|
medium: {
|
|
width: 400
|
|
}
|
|
}
|
|
}
|
|
}
|
|
});
|
|
should.exist(rendered);
|
|
rendered.should.equal('/content/images/size/w400/my-coole-img.jpg');
|
|
});
|
|
it('should output the correct url for protocol relative urls', function () {
|
|
const rendered = helpers.img_url('//website.com/whatever/my-coole-img.jpg', {
|
|
hash: {
|
|
size: 'medium'
|
|
},
|
|
data: {
|
|
config: {
|
|
image_sizes: {
|
|
medium: {
|
|
width: 400
|
|
}
|
|
}
|
|
}
|
|
}
|
|
});
|
|
should.exist(rendered);
|
|
rendered.should.equal('//website.com/whatever/my-coole-img.jpg');
|
|
});
|
|
it('should output the correct url for relative paths', function () {
|
|
const rendered = helpers.img_url('/content/images/my-coole-img.jpg', {
|
|
hash: {
|
|
size: 'medium'
|
|
},
|
|
data: {
|
|
config: {
|
|
image_sizes: {
|
|
medium: {
|
|
width: 400
|
|
}
|
|
}
|
|
}
|
|
}
|
|
});
|
|
should.exist(rendered);
|
|
rendered.should.equal('/content/images/size/w400/my-coole-img.jpg');
|
|
});
|
|
|
|
it('should output the correct url for relative paths without leading slash', function () {
|
|
const rendered = helpers.img_url('content/images/my-coole-img.jpg', {
|
|
hash: {
|
|
size: 'medium'
|
|
},
|
|
data: {
|
|
config: {
|
|
image_sizes: {
|
|
medium: {
|
|
width: 400
|
|
}
|
|
}
|
|
}
|
|
}
|
|
});
|
|
should.exist(rendered);
|
|
rendered.should.equal('content/images/size/w400/my-coole-img.jpg');
|
|
});
|
|
});
|
|
});
|