mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-09 04:31:17 +03:00
22e13acd65
- All var declarations are now const or let as per ES6 - All comma-separated lists / chained declarations are now one declaration per line - This is for clarity/readability but also made running the var-to-const/let switch smoother - ESLint rules updated to match How this was done: - npm install -g jscodeshift - git clone https://github.com/cpojer/js-codemod.git - git clone git@github.com:TryGhost/Ghost.git shallow-ghost - cd shallow-ghost - jscodeshift -t ../js-codemod/transforms/unchain-variables.js . -v=2 - jscodeshift -t ../js-codemod/transforms/no-vars.js . -v=2 - yarn - yarn test - yarn lint / fix various lint errors (almost all indent) by opening files and saving in vscode - grunt test-regression - sorted!
86 lines
2.5 KiB
JavaScript
86 lines
2.5 KiB
JavaScript
const should = require('should');
|
|
const configUtils = require('../../../core/server/config/utils');
|
|
|
|
describe('UNIT: Config utils', function () {
|
|
describe('makePathsAbsolute', function () {
|
|
it('ensure we change paths only', function () {
|
|
const changedKey = [];
|
|
|
|
const obj = {
|
|
database: {
|
|
client: 'mysql',
|
|
connection: {
|
|
filename: 'content/data/ghost.db'
|
|
}
|
|
}
|
|
};
|
|
|
|
this.set = function (key, value) {
|
|
changedKey.push([key, value]);
|
|
};
|
|
|
|
configUtils.makePathsAbsolute.bind(this)(obj.database, 'database');
|
|
|
|
changedKey.length.should.eql(1);
|
|
changedKey[0][0].should.eql('database:connection:filename');
|
|
changedKey[0][1].should.not.eql('content/data/ghost.db');
|
|
});
|
|
|
|
it('ensure it skips non strings', function () {
|
|
const changedKey = [];
|
|
|
|
const obj = {
|
|
database: {
|
|
test: 10
|
|
}
|
|
};
|
|
|
|
this.set = function (key, value) {
|
|
changedKey.push([key, value]);
|
|
};
|
|
|
|
configUtils.makePathsAbsolute.bind(this)(obj.database, 'database');
|
|
changedKey.length.should.eql(0);
|
|
});
|
|
|
|
it('ensure we don\'t change absolute paths', function () {
|
|
const changedKey = [];
|
|
|
|
const obj = {
|
|
database: {
|
|
client: 'mysql',
|
|
connection: {
|
|
filename: '/content/data/ghost.db'
|
|
}
|
|
}
|
|
};
|
|
|
|
this.set = function (key, value) {
|
|
changedKey.push([key, value]);
|
|
};
|
|
|
|
configUtils.makePathsAbsolute.bind(this)(obj.database, 'database');
|
|
changedKey.length.should.eql(0);
|
|
});
|
|
|
|
it('match paths on windows', function () {
|
|
const changedKey = [];
|
|
|
|
const obj = {
|
|
database: {
|
|
filename: 'content\\data\\ghost.db'
|
|
}
|
|
};
|
|
|
|
this.set = function (key, value) {
|
|
changedKey.push([key, value]);
|
|
};
|
|
|
|
configUtils.makePathsAbsolute.bind(this)(obj.database, 'database');
|
|
changedKey.length.should.eql(1);
|
|
changedKey[0][0].should.eql('database:filename');
|
|
changedKey[0][1].should.not.eql('content\\data\\ghost.db');
|
|
});
|
|
});
|
|
});
|