PeerTube/server/tests/shared/mock-servers/mock-email.ts

63 lines
1.3 KiB
TypeScript
Raw Normal View History

2021-06-14 09:52:22 -05:00
import { ChildProcess } from 'child_process'
2021-10-26 09:03:53 -05:00
import MailDev from '@peertube/maildev'
import { parallelTests, randomInt } from '@shared/core-utils'
class MockSmtpServer {
private static instance: MockSmtpServer
private started = false
2019-01-08 08:51:52 -06:00
private emailChildProcess: ChildProcess
private emails: object[]
2021-06-14 09:52:22 -05:00
private constructor () { }
collectEmails (emailsCollection: object[]) {
2019-04-24 08:10:37 -05:00
return new Promise<number>((res, rej) => {
const port = parallelTests() ? randomInt(1000, 2000) : 1025
2021-06-14 09:52:22 -05:00
this.emails = emailsCollection
2019-04-24 08:10:37 -05:00
if (this.started) {
2021-02-03 02:33:05 -06:00
return res(undefined)
}
2021-06-14 09:52:22 -05:00
const maildev = new MailDev({
ip: '127.0.0.1',
smtp: port,
disableWeb: true,
silent: true
})
maildev.on('new', email => {
this.emails.push(email)
})
2021-06-14 09:52:22 -05:00
maildev.listen(err => {
if (err) return rej(err)
2020-06-17 03:55:40 -05:00
this.started = true
2020-06-17 03:55:40 -05:00
2019-04-24 08:10:37 -05:00
return res(port)
})
})
}
2019-01-08 08:51:52 -06:00
kill () {
2019-01-09 08:14:29 -06:00
if (!this.emailChildProcess) return
2019-01-08 08:51:52 -06:00
process.kill(this.emailChildProcess.pid)
this.emailChildProcess = null
MockSmtpServer.instance = null
}
static get Instance () {
return this.instance || (this.instance = new this())
}
2018-01-30 08:16:24 -06:00
}
// ---------------------------------------------------------------------------
export {
MockSmtpServer
2018-01-30 08:16:24 -06:00
}