mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
b29852b012
closes: https://github.com/TryGhost/Toolbox/issues/324 refs: https://github.com/TryGhost/Ghost/issues/14446 - Currently, if url is configured to http but a request is marked secure, Ghost will handle upgrading all internal URLs to https so that there are no mixed content warnings - From 5.0 that feature is going away, in favour of strictly honouring the configured URL - Ghost will serve URLs exactly as configured and won't upgrade http to https anymore - This use case was common when Ghost was first built, but in 2022 the web is mostly https. - The code needed to support the feature creates a lot of additional complexity & maintenance overhead, so removing this gives us space to do more cool and useful stuff in 2022
256 lines
9.1 KiB
JavaScript
256 lines
9.1 KiB
JavaScript
const errors = require('@tryghost/errors');
|
|
const rewire = require('rewire');
|
|
const should = require('should');
|
|
const sinon = require('sinon');
|
|
const Queue = require('../../../../../core/server/services/url/Queue');
|
|
const Resources = require('../../../../../core/server/services/url/Resources');
|
|
const UrlGenerator = require('../../../../../core/server/services/url/UrlGenerator');
|
|
const Urls = require('../../../../../core/server/services/url/Urls');
|
|
const UrlService = rewire('../../../../../core/server/services/url/UrlService');
|
|
|
|
describe('Unit: services/url/UrlService', function () {
|
|
let QueueStub;
|
|
let ResourcesStub;
|
|
let UrlsStub;
|
|
let UrlGeneratorStub;
|
|
let urlService;
|
|
|
|
beforeEach(function () {
|
|
QueueStub = sinon.stub();
|
|
QueueStub.returns(sinon.createStubInstance(Queue));
|
|
|
|
ResourcesStub = sinon.stub();
|
|
ResourcesStub.returns(sinon.createStubInstance(Resources));
|
|
|
|
UrlsStub = sinon.stub();
|
|
UrlsStub.returns(sinon.createStubInstance(Urls));
|
|
|
|
UrlGeneratorStub = sinon.stub();
|
|
UrlGeneratorStub.returns(sinon.createStubInstance(UrlGenerator));
|
|
|
|
UrlService.__set__('Queue', QueueStub);
|
|
UrlService.__set__('Resources', ResourcesStub);
|
|
UrlService.__set__('Urls', UrlsStub);
|
|
UrlService.__set__('UrlGenerator', UrlGeneratorStub);
|
|
|
|
urlService = new UrlService();
|
|
});
|
|
|
|
afterEach(function () {
|
|
sinon.restore();
|
|
});
|
|
|
|
it('instantiate', function () {
|
|
should.exist(urlService.utils);
|
|
should.exist(urlService.urls);
|
|
should.exist(urlService.resources);
|
|
should.exist(urlService.queue);
|
|
|
|
urlService.urlGenerators.should.eql([]);
|
|
urlService.hasFinished().should.be.false();
|
|
|
|
urlService.queue.addListener.calledTwice.should.be.true();
|
|
urlService.queue.addListener.args[0][0].should.eql('started');
|
|
urlService.queue.addListener.args[1][0].should.eql('ended');
|
|
});
|
|
|
|
it('fn: _onQueueStarted', function () {
|
|
urlService._onQueueStarted('init');
|
|
urlService.hasFinished().should.be.false();
|
|
});
|
|
|
|
it('fn: _onQueueEnded', function () {
|
|
urlService._onQueueEnded('init');
|
|
urlService.hasFinished().should.be.true();
|
|
});
|
|
|
|
it('fn: onRouterAddedType', function () {
|
|
urlService.onRouterAddedType({getPermalinks: sinon.stub().returns({})});
|
|
urlService.urlGenerators.length.should.eql(1);
|
|
});
|
|
|
|
it('fn: getResourceById', function (done) {
|
|
urlService.urls.getByResourceId.withArgs('id123').returns({resource: true});
|
|
urlService.getResourceById('id123').should.eql(true);
|
|
|
|
urlService.urls.getByResourceId.withArgs('id12345').returns(null);
|
|
|
|
try {
|
|
urlService.getResourceById('id12345').should.eql(true);
|
|
done(new Error('expected error'));
|
|
} catch (err) {
|
|
should.exist(err);
|
|
err.code.should.eql('URLSERVICE_RESOURCE_NOT_FOUND');
|
|
done();
|
|
}
|
|
});
|
|
|
|
describe('fn: getResource', function () {
|
|
it('no resource for url found', function () {
|
|
urlService.finished = false;
|
|
urlService.urls.getByUrl.withArgs('/blog-post/').returns([]);
|
|
|
|
try {
|
|
urlService.getResource('/blog-post/');
|
|
throw new Error('Expected error.');
|
|
} catch (err) {
|
|
errors.utils.isGhostError(err).should.be.true();
|
|
}
|
|
});
|
|
|
|
it('no resource for url found', function () {
|
|
urlService.finished = true;
|
|
urlService.urls.getByUrl.withArgs('/blog-post/').returns([]);
|
|
should.not.exist(urlService.getResource('/blog-post/'));
|
|
});
|
|
|
|
it('one resource for url found', function () {
|
|
const resource = {x: 'y'};
|
|
|
|
urlService.finished = true;
|
|
urlService.urls.getByUrl.withArgs('/blog-post/').returns([{resource: resource}]);
|
|
urlService.getResource('/blog-post/').should.eql(resource);
|
|
});
|
|
|
|
it('two resources for url found', function () {
|
|
const object1 = {generatorId: 1, resource: {a: 1}};
|
|
const object2 = {generatorId: 0, resource: {a: 2}};
|
|
|
|
urlService.urlGenerators = [
|
|
{
|
|
uid: 0
|
|
},
|
|
{
|
|
uid: 1
|
|
}
|
|
];
|
|
|
|
urlService.finished = true;
|
|
urlService.urls.getByUrl.withArgs('/blog-post/').returns([object1, object2]);
|
|
urlService.getResource('/blog-post/').should.eql(object2.resource);
|
|
});
|
|
|
|
it('two resources for url found', function () {
|
|
const object1 = {generatorId: 0, resource: {a: 1}};
|
|
const object2 = {generatorId: 1, resource: {a: 2}};
|
|
|
|
urlService.urlGenerators = [
|
|
{
|
|
uid: 0
|
|
},
|
|
{
|
|
uid: 1
|
|
}
|
|
];
|
|
|
|
urlService.finished = true;
|
|
urlService.urls.getByUrl.withArgs('/blog-post/').returns([object1, object2]);
|
|
urlService.getResource('/blog-post/').should.eql(object1.resource);
|
|
});
|
|
});
|
|
|
|
describe('fn: getPermalinkByUrl', function () {
|
|
it('found', function () {
|
|
urlService.urlGenerators = [
|
|
{
|
|
uid: 0,
|
|
permalink: '/:slug/'
|
|
},
|
|
{
|
|
uid: 1,
|
|
permalink: '/:primary_tag/'
|
|
}
|
|
];
|
|
|
|
sinon.stub(urlService, 'getResource').withArgs('/blog-post/', {returnEverything: true})
|
|
.returns({generatorId: 1, resource: true});
|
|
|
|
urlService.getPermalinkByUrl('/blog-post/').should.eql('/:primary_tag/');
|
|
});
|
|
|
|
it('found', function () {
|
|
urlService.urlGenerators = [
|
|
{
|
|
uid: 0,
|
|
permalink: '/:slug/'
|
|
},
|
|
{
|
|
uid: 1,
|
|
permalink: '/:primary_tag/'
|
|
}
|
|
];
|
|
|
|
sinon.stub(urlService, 'getResource').withArgs('/blog-post/', {returnEverything: true})
|
|
.returns({generatorId: 0, resource: true});
|
|
|
|
urlService.getPermalinkByUrl('/blog-post/').should.eql('/:slug/');
|
|
});
|
|
});
|
|
|
|
describe('fn: getUrlByResourceId', function () {
|
|
it('not found', function () {
|
|
urlService.urls.getByResourceId.withArgs(1).returns(null);
|
|
urlService.getUrlByResourceId(1).should.eql('/404/');
|
|
});
|
|
|
|
it('not found: absolute', function () {
|
|
urlService.utils = sinon.stub();
|
|
urlService.utils.createUrl = sinon.stub();
|
|
|
|
urlService.urls.getByResourceId.withArgs(1).returns(null);
|
|
urlService.getUrlByResourceId(1, {absolute: true});
|
|
|
|
urlService.utils.createUrl.calledWith('/404/', true).should.be.true();
|
|
});
|
|
|
|
it('found', function () {
|
|
urlService.urls.getByResourceId.withArgs(1).returns({url: '/post/'});
|
|
urlService.getUrlByResourceId(1).should.eql('/post/');
|
|
});
|
|
|
|
it('found: absolute', function () {
|
|
urlService.utils = sinon.stub();
|
|
urlService.utils.createUrl = sinon.stub();
|
|
|
|
urlService.urls.getByResourceId.withArgs(1).returns({url: '/post/'});
|
|
urlService.getUrlByResourceId(1, {absolute: true});
|
|
urlService.utils.createUrl.calledWith('/post/', true).should.be.true();
|
|
});
|
|
|
|
it('not found: withSubdirectory', function () {
|
|
urlService.utils = sinon.stub();
|
|
urlService.utils.createUrl = sinon.stub();
|
|
|
|
urlService.urls.getByResourceId.withArgs(1).returns(null);
|
|
urlService.getUrlByResourceId(1, {withSubdirectory: true});
|
|
urlService.utils.createUrl.calledWith('/404/', false).should.be.true();
|
|
});
|
|
|
|
it('not found: withSubdirectory + absolute', function () {
|
|
urlService.utils = sinon.stub();
|
|
urlService.utils.createUrl = sinon.stub();
|
|
|
|
urlService.urls.getByResourceId.withArgs(1).returns(null);
|
|
urlService.getUrlByResourceId(1, {withSubdirectory: true, absolute: true});
|
|
urlService.utils.createUrl.calledWith('/404/', true).should.be.true();
|
|
});
|
|
|
|
it('found: withSubdirectory', function () {
|
|
urlService.utils = sinon.stub();
|
|
urlService.utils.createUrl = sinon.stub();
|
|
|
|
urlService.urls.getByResourceId.withArgs(1).returns({url: '/post/'});
|
|
urlService.getUrlByResourceId(1, {withSubdirectory: true});
|
|
urlService.utils.createUrl.calledWith('/post/', false).should.be.true();
|
|
});
|
|
|
|
it('found: withSubdirectory + absolute', function () {
|
|
urlService.utils = sinon.stub();
|
|
urlService.utils.createUrl = sinon.stub();
|
|
|
|
urlService.urls.getByResourceId.withArgs(1).returns({url: '/post/'});
|
|
urlService.getUrlByResourceId(1, {withSubdirectory: true, absolute: true});
|
|
urlService.utils.createUrl.calledWith('/post/', true).should.be.true();
|
|
});
|
|
});
|
|
});
|