2020-04-29 18:44:27 +03:00
|
|
|
const should = require('should');
|
2020-06-02 00:06:50 +03:00
|
|
|
const configUtils = require('../../../../core/shared/config/utils');
|
2016-10-18 11:04:44 +03:00
|
|
|
|
|
|
|
describe('UNIT: Config utils', function () {
|
|
|
|
describe('makePathsAbsolute', function () {
|
|
|
|
it('ensure we change paths only', function () {
|
2020-04-29 18:44:27 +03:00
|
|
|
const changedKey = [];
|
|
|
|
|
|
|
|
const obj = {
|
|
|
|
database: {
|
|
|
|
client: 'mysql',
|
|
|
|
connection: {
|
|
|
|
filename: 'content/data/ghost.db'
|
2016-10-18 11:04:44 +03:00
|
|
|
}
|
2020-04-29 18:44:27 +03:00
|
|
|
}
|
|
|
|
};
|
2016-10-18 11:04:44 +03:00
|
|
|
|
|
|
|
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 () {
|
2020-04-29 18:44:27 +03:00
|
|
|
const changedKey = [];
|
|
|
|
|
|
|
|
const obj = {
|
|
|
|
database: {
|
|
|
|
test: 10
|
|
|
|
}
|
|
|
|
};
|
2016-10-18 11:04:44 +03:00
|
|
|
|
|
|
|
this.set = function (key, value) {
|
|
|
|
changedKey.push([key, value]);
|
|
|
|
};
|
|
|
|
|
|
|
|
configUtils.makePathsAbsolute.bind(this)(obj.database, 'database');
|
|
|
|
changedKey.length.should.eql(0);
|
|
|
|
});
|
|
|
|
|
2017-07-06 01:04:18 +03:00
|
|
|
it('ensure we don\'t change absolute paths', function () {
|
2020-04-29 18:44:27 +03:00
|
|
|
const changedKey = [];
|
|
|
|
|
|
|
|
const obj = {
|
|
|
|
database: {
|
|
|
|
client: 'mysql',
|
|
|
|
connection: {
|
|
|
|
filename: '/content/data/ghost.db'
|
2016-10-18 11:04:44 +03:00
|
|
|
}
|
2020-04-29 18:44:27 +03:00
|
|
|
}
|
|
|
|
};
|
2016-10-18 11:04:44 +03:00
|
|
|
|
|
|
|
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 () {
|
2020-04-29 18:44:27 +03:00
|
|
|
const changedKey = [];
|
|
|
|
|
|
|
|
const obj = {
|
|
|
|
database: {
|
|
|
|
filename: 'content\\data\\ghost.db'
|
|
|
|
}
|
|
|
|
};
|
2016-10-18 11:04:44 +03:00
|
|
|
|
|
|
|
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');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|