mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 01:41:46 +03:00
95d27e7f58
- 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 frontend tests with the frontend code
195 lines
7.2 KiB
JavaScript
195 lines
7.2 KiB
JavaScript
const should = require('should');
|
|
const sinon = require('sinon');
|
|
const configUtils = require('../../../utils/configUtils');
|
|
|
|
// Stuff we are testing
|
|
const img_url = require('../../../../core/frontend/helpers/img_url');
|
|
|
|
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 = 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 = 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 = 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 = 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 = 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 = 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 = 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 = 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 = 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 = 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 = 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 = 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 = 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 = 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 = 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');
|
|
});
|
|
});
|
|
});
|