mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 22:43:30 +03:00
00c324fa4e
- Represents that logging is shared across all parts of Ghost at present
* moved core/server/lib/common/logging to core/shared/logging
* updated logging path for generic imports
* updated migration and schema imports of logging
* updated tests and index logging import
* 🔥 removed logging from common module
* fixed tests
204 lines
7.5 KiB
JavaScript
204 lines
7.5 KiB
JavaScript
const should = require('should');
|
|
const sinon = require('sinon');
|
|
const urlUtils = require('../../utils/urlUtils');
|
|
|
|
// Stuff we are testing
|
|
const helpers = require('../../../core/frontend/helpers');
|
|
|
|
const logging = require('../../../core/shared/logging');
|
|
|
|
describe('{{image}} helper', function () {
|
|
let logWarnStub;
|
|
|
|
beforeEach(function () {
|
|
logWarnStub = sinon.stub(logging, 'warn');
|
|
});
|
|
|
|
afterEach(function () {
|
|
sinon.restore();
|
|
});
|
|
|
|
describe('without sub-directory', function () {
|
|
let sandbox;
|
|
|
|
before(function () {
|
|
sandbox = sinon.createSandbox();
|
|
urlUtils.stubUrlUtils({url: 'http://localhost:65535/'}, sandbox);
|
|
});
|
|
|
|
after(function () {
|
|
sandbox.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 attributeis 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 () {
|
|
let sandbox;
|
|
|
|
before(function () {
|
|
sandbox = sinon.createSandbox();
|
|
urlUtils.stubUrlUtils({url: 'http://localhost:65535/blog'}, sandbox);
|
|
});
|
|
|
|
after(function () {
|
|
sandbox.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 () {
|
|
let sandbox;
|
|
|
|
before(function () {
|
|
sandbox = sinon.createSandbox();
|
|
urlUtils.stubUrlUtils({url: 'http://localhost:65535/'}, sandbox);
|
|
});
|
|
|
|
after(function () {
|
|
sandbox.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');
|
|
});
|
|
});
|
|
});
|