2023-12-19 14:32:39 +00:00
|
|
|
// const Docker = require('../db/docker.js');
|
2022-05-11 17:38:10 +00:00
|
|
|
let dataSources = require('../loopback/server/datasources.json');
|
2018-12-21 11:50:28 +00:00
|
|
|
|
2017-09-10 18:04:22 +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
|
|
|
|
2023-12-07 19:05:54 +00:00
|
|
|
process.on('SIGUSR2', async() => {
|
|
|
|
if (container) await container.rm();
|
|
|
|
});
|
|
|
|
|
2022-10-06 09:32:13 +00:00
|
|
|
process.on('exit', async function() {
|
|
|
|
if (container) await container.rm();
|
|
|
|
});
|
|
|
|
|
2022-05-11 17:38:10 +00:00
|
|
|
async function test() {
|
2022-05-12 11:51:31 +00:00
|
|
|
let isCI = false;
|
2017-09-08 12:37:55 +00:00
|
|
|
|
2022-05-12 09:43:41 +00:00
|
|
|
if (process.argv[2] === 'ci')
|
2022-05-12 11:51:31 +00:00
|
|
|
isCI = true;
|
2017-09-08 12:37:55 +00:00
|
|
|
|
2022-05-11 17:38:10 +00:00
|
|
|
dataSources = JSON.parse(JSON.stringify(dataSources));
|
|
|
|
const bootOptions = {dataSources};
|
|
|
|
const app = require('vn-loopback/server/server');
|
2023-02-28 10:19:41 +00:00
|
|
|
await new Promise((resolve, reject) => {
|
|
|
|
app.boot(bootOptions,
|
|
|
|
err => err ? reject(err) : resolve());
|
|
|
|
});
|
2023-05-11 11:54:42 +00:00
|
|
|
// FIXME: Workaround to wait for loopback to be ready
|
|
|
|
await app.models.Application.status();
|
2022-05-13 09:44:04 +00:00
|
|
|
|
2022-05-13 10:51:02 +00:00
|
|
|
const Jasmine = require('jasmine');
|
|
|
|
const jasmine = new Jasmine();
|
|
|
|
|
2022-05-13 09:44:04 +00:00
|
|
|
const SpecReporter = require('jasmine-spec-reporter').SpecReporter;
|
2022-05-13 10:51:02 +00:00
|
|
|
jasmine.addReporter(new SpecReporter({
|
2022-05-13 10:25:35 +00:00
|
|
|
spec: {
|
|
|
|
displaySuccessful: isCI,
|
|
|
|
displayPending: isCI
|
|
|
|
},
|
|
|
|
summary: {
|
|
|
|
displayPending: false,
|
|
|
|
}
|
2022-05-13 10:51:02 +00:00
|
|
|
}));
|
2022-05-13 10:25:35 +00:00
|
|
|
|
2022-10-05 11:32:43 +00:00
|
|
|
if (isCI) {
|
|
|
|
const JunitReporter = require('jasmine-reporters');
|
|
|
|
jasmine.addReporter(new JunitReporter.JUnitXmlReporter());
|
2022-05-13 10:25:35 +00:00
|
|
|
|
2022-10-05 11:38:17 +00:00
|
|
|
jasmine.exitOnCompletion = true;
|
2024-01-10 06:46:11 +00:00
|
|
|
jasmine.jasmine.DEFAULT_TIMEOUT_INTERVAL = 900000;
|
2022-10-05 11:32:43 +00:00
|
|
|
}
|
2022-05-13 09:44:04 +00:00
|
|
|
|
|
|
|
const backSpecs = [
|
|
|
|
'./back/**/*[sS]pec.js',
|
|
|
|
'./loopback/**/*[sS]pec.js',
|
|
|
|
'./modules/*/back/**/*.[sS]pec.js'
|
|
|
|
];
|
|
|
|
|
|
|
|
jasmine.loadConfig({
|
|
|
|
spec_dir: '.',
|
|
|
|
spec_files: backSpecs,
|
2022-05-13 09:51:45 +00:00
|
|
|
helpers: [],
|
2022-05-13 09:37:31 +00:00
|
|
|
});
|
2022-05-13 09:44:04 +00:00
|
|
|
|
|
|
|
await jasmine.execute();
|
|
|
|
if (app) await app.disconnect();
|
2022-10-05 12:14:05 +00:00
|
|
|
console.log('App disconnected & container removed');
|
2022-05-11 17:38:10 +00:00
|
|
|
}
|
2017-09-08 12:37:55 +00:00
|
|
|
|
2022-05-11 17:38:10 +00:00
|
|
|
test();
|