mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
34 lines
1.0 KiB
TypeScript
34 lines
1.0 KiB
TypeScript
|
|
import ChildProcess from 'child_process';
|
|
|
|
export default function WithAutheliaRunning(configPath: string, waitTimeout: number = 5000) {
|
|
before(function() {
|
|
this.timeout(10000);
|
|
|
|
console.log('Spawning Authelia server with configuration %s.', configPath);
|
|
const authelia = ChildProcess.spawn(
|
|
'./scripts/authelia-scripts',
|
|
['serve', '--no-watch', '--config', configPath],
|
|
{detached: true});
|
|
|
|
authelia.on('exit', function(status) {
|
|
console.log('Server terminated with status ' + status);
|
|
});
|
|
this.authelia = authelia;
|
|
|
|
const waitPromise = new Promise((resolve, reject) => setTimeout(() => resolve(), waitTimeout));
|
|
return waitPromise;
|
|
});
|
|
|
|
after(function() {
|
|
this.timeout(10000);
|
|
|
|
console.log('Killing Authelia server.');
|
|
// Kill the group of processes.
|
|
process.kill(-this.authelia.pid);
|
|
|
|
// Leave 5 seconds for the process to terminate.
|
|
const waitPromise = new Promise((resolve, reject) => setTimeout(() => resolve(), 5000));
|
|
return waitPromise;
|
|
});
|
|
} |