pm2/test/programmatic/common.mocha.js
2023-09-27 13:01:33 +02:00

44 lines
1.3 KiB
JavaScript

var Common = require('../../lib/Common');
var should = require('should');
process.chdir(__dirname);
describe('Common utilities', function () {
describe('Config file detection', function () {
var tests = [
{ arg: "ecosystem.json", expected: "json" },
{ arg: "ecosystem.yml", expected: "yaml" },
{ arg: "ecosystem.yaml", expected: "yaml" },
{ arg: "ecosystem.config.js", expected: "js" },
{ arg: "ecosystem.config.cjs", expected: "js" },
{ arg: "ecosystem.config.mjs", expected: "mjs" },
]
tests.forEach(function (test) {
it('should accept configuration file ' + test.arg , function () {
var result = Common.isConfigFile(test.arg);
should(result).eql(test.expected);
})
});
it('should not accept unknown filename', function () {
should(Common.isConfigFile('lorem-ipsum.js')).be.null();
})
})
describe('Config file candidates', function () {
it('should return an array with well-known file extensions', function () {
var result = Common.getConfigFileCandidates('ecosystem');
should(result).eql([
'ecosystem.json',
'ecosystem.yml',
'ecosystem.yaml',
'ecosystem.config.js',
'ecosystem.config.cjs',
'ecosystem.config.mjs'
]);
});
});
})