2020-04-29 18:44:27 +03:00
|
|
|
const should = require('should');
|
|
|
|
const _ = require('lodash');
|
2020-09-09 15:28:12 +03:00
|
|
|
const yaml = require('js-yaml');
|
2020-04-29 18:44:27 +03:00
|
|
|
const crypto = require('crypto');
|
2020-09-09 15:28:12 +03:00
|
|
|
const fs = require('fs-extra');
|
|
|
|
const path = require('path');
|
2021-10-06 13:12:21 +03:00
|
|
|
const {config} = require('../../../../utils/configUtils');
|
2021-10-20 21:26:03 +03:00
|
|
|
const schema = require('../../../../../core/server/data/schema/schema');
|
|
|
|
const fixtures = require('../../../../../core/server/data/schema/fixtures/fixtures.json');
|
|
|
|
const defaultSettings = require('../../../../../core/server/data/schema/default-settings.json');
|
|
|
|
|
|
|
|
// Routes are yaml so we can require the file directly
|
2021-10-06 13:12:21 +03:00
|
|
|
const routeSettings = require('../../../../../core/server/services/route-settings');
|
|
|
|
const validateRouteSettings = require('../../../../../core/server/services/route-settings/validate');
|
2017-02-14 15:41:28 +03:00
|
|
|
|
2017-12-11 14:35:27 +03:00
|
|
|
/**
|
|
|
|
* @NOTE
|
|
|
|
*
|
2020-09-09 15:28:12 +03:00
|
|
|
* If this test fails for you, you have modified one of:
|
|
|
|
* - the database schema
|
|
|
|
* - fixtures
|
|
|
|
* - default settings
|
|
|
|
* - routes.yaml
|
|
|
|
*
|
2017-12-11 14:35:27 +03:00
|
|
|
* When you make a change, please test that:
|
|
|
|
*
|
|
|
|
* 1. A new blog get's installed and the database looks correct and complete.
|
|
|
|
* 2. A blog get's updated from a lower Ghost version and the database looks correct and complete.
|
|
|
|
*
|
|
|
|
* Typical cases:
|
|
|
|
* You have to add a migration script if you've added/modified permissions.
|
|
|
|
* You have to add a migration script if you've add a new table.
|
2020-07-10 13:22:07 +03:00
|
|
|
* You have to add a migration script if you've added new settings to populate group/flags column.
|
2017-12-11 14:35:27 +03:00
|
|
|
*/
|
2017-01-25 16:47:49 +03:00
|
|
|
describe('DB version integrity', function () {
|
2016-03-21 15:44:23 +03:00
|
|
|
// Only these variables should need updating
|
2021-10-22 15:14:49 +03:00
|
|
|
const currentSchemaHash = 'e649797a5de92d417744f6f2623c79cf';
|
2021-10-20 21:26:03 +03:00
|
|
|
const currentFixturesHash = '07d4b0c4cf159b34344a6b5e88c74e9f';
|
2021-11-04 15:33:51 +03:00
|
|
|
const currentSettingsHash = 'b06316ebbf62381158e1c46c97c0b77a';
|
2020-09-09 15:28:12 +03:00
|
|
|
const currentRoutesHash = '3d180d52c663d173a6be791ef411ed01';
|
2016-03-21 15:44:23 +03:00
|
|
|
|
|
|
|
// If this test is failing, then it is likely a change has been made that requires a DB version bump,
|
|
|
|
// and the values above will need updating as confirmation
|
|
|
|
it('should not change without fixing this test', function () {
|
2020-09-10 03:57:03 +03:00
|
|
|
const routesPath = path.join(config.get('paths').defaultSettings, 'default-routes.yaml');
|
2021-09-27 15:38:48 +03:00
|
|
|
const defaultRoutes = validateRouteSettings(yaml.load(fs.readFileSync(routesPath, 'utf-8')));
|
2020-09-09 15:28:12 +03:00
|
|
|
|
2021-10-20 21:26:03 +03:00
|
|
|
const tablesNoValidation = _.cloneDeep(schema);
|
2020-04-29 18:44:27 +03:00
|
|
|
let schemaHash;
|
|
|
|
let fixturesHash;
|
2020-07-10 13:22:07 +03:00
|
|
|
let settingsHash;
|
2020-09-09 15:28:12 +03:00
|
|
|
let routesHash;
|
2016-03-21 15:44:23 +03:00
|
|
|
|
|
|
|
_.each(tablesNoValidation, function (table) {
|
|
|
|
return _.each(table, function (column, name) {
|
|
|
|
table[name] = _.omit(column, 'validations');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-04-05 22:16:28 +03:00
|
|
|
schemaHash = crypto.createHash('md5').update(JSON.stringify(tablesNoValidation), 'binary').digest('hex');
|
|
|
|
fixturesHash = crypto.createHash('md5').update(JSON.stringify(fixtures), 'binary').digest('hex');
|
2020-07-10 13:22:07 +03:00
|
|
|
settingsHash = crypto.createHash('md5').update(JSON.stringify(defaultSettings), 'binary').digest('hex');
|
2020-09-09 15:28:12 +03:00
|
|
|
routesHash = crypto.createHash('md5').update(JSON.stringify(defaultRoutes), 'binary').digest('hex');
|
2016-03-21 15:44:23 +03:00
|
|
|
|
|
|
|
schemaHash.should.eql(currentSchemaHash);
|
|
|
|
fixturesHash.should.eql(currentFixturesHash);
|
2020-07-10 13:22:07 +03:00
|
|
|
settingsHash.should.eql(currentSettingsHash);
|
2020-09-09 15:28:12 +03:00
|
|
|
routesHash.should.eql(currentRoutesHash);
|
2021-09-27 17:34:15 +03:00
|
|
|
routesHash.should.eql(routeSettings.getDefaultHash());
|
2016-03-21 15:44:23 +03:00
|
|
|
});
|
|
|
|
});
|