2019-04-24 09:10:37 -04:00
|
|
|
import { ChildProcess, fork } from 'child_process'
|
|
|
|
import { randomInt } from '../../core-utils/miscs/miscs'
|
|
|
|
import { parallelTests } from '../server/servers'
|
2018-12-15 08:51:51 -05:00
|
|
|
|
|
|
|
class MockSmtpServer {
|
|
|
|
|
|
|
|
private static instance: MockSmtpServer
|
|
|
|
private started = false
|
2019-01-08 09:51:52 -05:00
|
|
|
private emailChildProcess: ChildProcess
|
2018-12-15 08:51:51 -05:00
|
|
|
private emails: object[]
|
|
|
|
|
|
|
|
private constructor () {
|
2019-01-08 09:51:52 -05:00
|
|
|
this.emailChildProcess = fork(`${__dirname}/email-child-process`, [])
|
|
|
|
|
2020-04-01 08:16:19 -04:00
|
|
|
this.emailChildProcess.on('message', (msg: any) => {
|
2018-12-15 08:51:51 -05:00
|
|
|
if (msg.email) {
|
|
|
|
return this.emails.push(msg.email)
|
|
|
|
}
|
|
|
|
})
|
2019-01-09 09:14:29 -05:00
|
|
|
|
|
|
|
process.on('exit', () => this.kill())
|
2018-12-15 08:51:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
collectEmails (emailsCollection: object[]) {
|
2019-04-24 09:10:37 -04:00
|
|
|
return new Promise<number>((res, rej) => {
|
|
|
|
const port = parallelTests() ? randomInt(1000, 2000) : 1025
|
|
|
|
|
2018-12-15 08:51:51 -05:00
|
|
|
if (this.started) {
|
|
|
|
this.emails = emailsCollection
|
|
|
|
return res()
|
|
|
|
}
|
|
|
|
|
|
|
|
// ensure maildev isn't started until
|
|
|
|
// unexpected exit can be reported to test runner
|
2019-04-24 09:10:37 -04:00
|
|
|
this.emailChildProcess.send({ start: true, port })
|
2018-12-15 08:51:51 -05:00
|
|
|
this.emailChildProcess.on('exit', () => {
|
|
|
|
return rej(new Error('maildev exited unexpectedly, confirm port not in use'))
|
|
|
|
})
|
2020-04-01 08:16:19 -04:00
|
|
|
this.emailChildProcess.on('message', (msg: any) => {
|
2020-06-17 04:55:40 -04:00
|
|
|
if (msg.err) return rej(new Error(msg.err))
|
|
|
|
|
2018-12-15 08:51:51 -05:00
|
|
|
this.started = true
|
|
|
|
this.emails = emailsCollection
|
2020-06-17 04:55:40 -04:00
|
|
|
|
2019-04-24 09:10:37 -04:00
|
|
|
return res(port)
|
2018-12-15 08:51:51 -05:00
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-01-08 09:51:52 -05:00
|
|
|
kill () {
|
2019-01-09 09:14:29 -05:00
|
|
|
if (!this.emailChildProcess) return
|
|
|
|
|
2019-01-08 09:51:52 -05:00
|
|
|
process.kill(this.emailChildProcess.pid)
|
|
|
|
|
|
|
|
this.emailChildProcess = null
|
|
|
|
MockSmtpServer.instance = null
|
|
|
|
}
|
|
|
|
|
2018-12-15 08:51:51 -05:00
|
|
|
static get Instance () {
|
|
|
|
return this.instance || (this.instance = new this())
|
|
|
|
}
|
2018-01-30 09:16:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2018-12-15 08:51:51 -05:00
|
|
|
MockSmtpServer
|
2018-01-30 09:16:24 -05:00
|
|
|
}
|