mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 18:31:57 +03:00
57de4aca71
refs https://github.com/TryGhost/Toolbox/issues/152 - The tests would fail without these initializations when run in isolation
83 lines
3.1 KiB
JavaScript
83 lines
3.1 KiB
JavaScript
// Utility Packages
|
|
const path = require('path');
|
|
|
|
// Ghost Internals
|
|
const models = require('../../../../core/server/models');
|
|
const routingService = require('../../../../core/frontend/services/routing');
|
|
const settingsService = require('../../../../core/server/services/settings');
|
|
const settingsCache = require('../../../../core/shared/settings-cache');
|
|
const imageLib = require('../../../../core/server/lib/image');
|
|
const appService = require('../../../../core/frontend/services/apps');
|
|
|
|
const siteApp = require('../../../../core/server/web/parent/app');
|
|
|
|
// Other Test Utilities
|
|
const configUtils = require('../../../utils/configUtils');
|
|
const urlServiceUtils = require('../../../utils/url-service-utils');
|
|
|
|
module.exports = {
|
|
overrideGhostConfig: (utils) => {
|
|
utils.set('paths:contentPath', path.join(__dirname, '../../../utils/fixtures'));
|
|
utils.set('times:getImageSizeTimeoutInMS', 1);
|
|
},
|
|
|
|
defaultMocks: (sandbox, options) => {
|
|
options = options || {};
|
|
|
|
configUtils.set('paths:contentPath', path.join(__dirname, '../../../utils/fixtures'));
|
|
|
|
const cacheStub = sandbox.stub(settingsCache, 'get');
|
|
|
|
cacheStub.withArgs('active_theme').returns(options.theme || 'casper');
|
|
cacheStub.withArgs('timezone').returns('Etc/UTC');
|
|
cacheStub.withArgs('permalinks').returns('/:slug/');
|
|
cacheStub.withArgs('ghost_private_key').returns('-----BEGIN RSA PRIVATE KEY-----\nMB8CAQACAgPBAgMBAAECAgMFAgEfAgEfAgEXAgEXAgEA\n-----END RSA PRIVATE KEY-----\n');
|
|
cacheStub.withArgs('ghost_public_key').returns('-----BEGIN RSA PUBLIC KEY-----\nMAkCAgPBAgMBAAE=\n-----END RSA PUBLIC KEY-----\n');
|
|
|
|
if (options.amp) {
|
|
cacheStub.withArgs('amp').returns(true);
|
|
}
|
|
|
|
sandbox.stub(imageLib.imageSize, 'getImageSizeFromUrl').resolves();
|
|
},
|
|
|
|
/**
|
|
* This is a really rough frontend-only version of Ghost boot
|
|
* In order for this test pattern to be really considered the right pattern this needs to be replaced
|
|
* With something based on the real boot
|
|
* @returns {object} express App
|
|
*/
|
|
initGhost: async () => {
|
|
models.init();
|
|
await settingsService.init();
|
|
urlServiceUtils.init();
|
|
|
|
const customRedirects = require('../../../../core/server/services/redirects');
|
|
await customRedirects.init();
|
|
const routeSettings = require('../../../../core/server/services/route-settings');
|
|
await routeSettings.init();
|
|
const customThemeSettingsService = require('../../../../core/server/services/custom-theme-settings');
|
|
customThemeSettingsService.init();
|
|
const themeService = require('../../../../core/server/services/themes');
|
|
await themeService.init();
|
|
const helperService = require('../../../../core/frontend/services/helpers');
|
|
await helperService.init();
|
|
|
|
const app = siteApp({
|
|
start: true
|
|
});
|
|
await appService.init();
|
|
await urlServiceUtils.isFinished();
|
|
|
|
return app;
|
|
},
|
|
|
|
routing: {
|
|
reset: function () {
|
|
routingService.registry.resetAll();
|
|
}
|
|
},
|
|
|
|
urlService: urlServiceUtils
|
|
};
|