blob: f9f1bd95b05736543b21e096cdca528b8dbd631a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
import { fork, ChildProcess } from 'child_process'
class MockSmtpServer {
private static instance: MockSmtpServer
private started = false
private emailChildProcess: ChildProcess
private emails: object[]
private constructor () {
this.emailChildProcess = fork(`${__dirname}/email-child-process`, [])
this.emailChildProcess.on('message', (msg) => {
if (msg.email) {
return this.emails.push(msg.email)
}
})
process.on('exit', () => this.kill())
}
collectEmails (emailsCollection: object[]) {
return new Promise((res, rej) => {
if (this.started) {
this.emails = emailsCollection
return res()
}
// ensure maildev isn't started until
// unexpected exit can be reported to test runner
this.emailChildProcess.send({ start: true })
this.emailChildProcess.on('exit', () => {
return rej(new Error('maildev exited unexpectedly, confirm port not in use'))
})
this.emailChildProcess.on('message', (msg) => {
if (msg.err) {
return rej(new Error(msg.err))
}
this.started = true
this.emails = emailsCollection
return res()
})
})
}
kill () {
if (!this.emailChildProcess) return
process.kill(this.emailChildProcess.pid)
this.emailChildProcess = null
MockSmtpServer.instance = null
}
static get Instance () {
return this.instance || (this.instance = new this())
}
}
// ---------------------------------------------------------------------------
export {
MockSmtpServer
}
|