salix/back/tests.js

64 lines
1.5 KiB
JavaScript
Raw Normal View History

2022-05-11 17:38:10 +00:00
const Docker = require('../db/docker.js');
let dataSources = require('../loopback/server/datasources.json');
2018-12-21 11:50:28 +00:00
process.on('warning', warning => {
console.log(warning.name);
console.log(warning.message);
console.log(warning.stack);
});
2017-09-08 12:37:55 +00:00
2022-05-11 17:38:10 +00:00
async function test() {
let isCI = false;
2017-09-08 12:37:55 +00:00
2022-05-12 09:43:41 +00:00
if (process.argv[2] === 'ci')
isCI = true;
2017-09-08 12:37:55 +00:00
2022-05-11 17:38:10 +00:00
const container = new Docker();
2017-09-08 12:37:55 +00:00
await container.run(isCI);
2022-05-11 17:38:10 +00:00
dataSources = JSON.parse(JSON.stringify(dataSources));
2018-12-21 11:50:28 +00:00
2022-05-11 17:38:10 +00:00
Object.assign(dataSources.vn, {
host: container.dbConf.host,
port: container.dbConf.port
});
const bootOptions = {dataSources};
const app = require('vn-loopback/server/server');
app.boot(bootOptions);
const Jasmine = require('jasmine');
const jasmine = new Jasmine();
const SpecReporter = require('jasmine-spec-reporter').SpecReporter;
const backSpecs = [
'./back/**/*[sS]pec.js',
'./loopback/**/*[sS]pec.js',
'./modules/*/back/**/*.[sS]pec.js'
];
jasmine.loadConfig({
spec_dir: '.',
spec_files: backSpecs,
2022-05-12 09:43:41 +00:00
helpers: []
2022-05-11 17:38:10 +00:00
});
jasmine.addReporter(new SpecReporter({
spec: {
displaySuccessful: isCI,
displayPending: isCI
2022-05-12 09:43:41 +00:00
},
summary: {
displayPending: false,
2022-05-11 17:38:10 +00:00
}
}));
2017-09-08 12:37:55 +00:00
2022-05-12 09:43:41 +00:00
jasmine.exitOnCompletion = false;
2022-05-11 17:38:10 +00:00
await jasmine.execute();
if (app) await app.disconnect();
if (container) await container.rm();
console.log('app disconnected & container removed');
}
2017-09-08 12:37:55 +00:00
2022-05-11 17:38:10 +00:00
test();