PeerTube/server/tests/api/server/email.ts

267 lines
8.3 KiB
TypeScript
Raw Normal View History

2018-01-30 15:16:24 +01:00
/* tslint:disable:no-unused-expression */
import * as chai from 'chai'
import 'mocha'
2018-08-08 17:36:10 +02:00
import {
2018-08-13 16:57:13 +02:00
addVideoToBlacklist,
2018-08-08 17:36:10 +02:00
askResetPassword,
askSendVerifyEmail,
2018-08-08 17:36:10 +02:00
blockUser,
cleanupTests,
createUser,
flushAndRunServer,
removeVideoFromBlacklist,
2018-08-08 17:36:10 +02:00
reportVideoAbuse,
resetPassword,
ServerInfo,
setAccessTokensToServers,
2018-08-08 17:36:10 +02:00
unblockUser,
uploadVideo,
userLogin,
verifyEmail
} from '../../../../shared/extra-utils'
import { MockSmtpServer } from '../../../../shared/extra-utils/miscs/email'
import { waitJobs } from '../../../../shared/extra-utils/server/jobs'
2018-01-30 15:16:24 +01:00
const expect = chai.expect
describe('Test emails', function () {
let server: ServerInfo
let userId: number
2018-08-13 16:57:13 +02:00
let userAccessToken: string
2018-02-01 11:08:10 +01:00
let videoUUID: string
2018-08-13 16:57:13 +02:00
let videoUserUUID: string
2018-01-30 15:16:24 +01:00
let verificationString: string
const emails: object[] = []
const user = {
username: 'user_1',
password: 'super_password'
}
2019-04-26 08:50:52 +02:00
let emailPort: number
2018-01-30 15:16:24 +01:00
before(async function () {
2019-07-29 11:59:29 +02:00
this.timeout(50000)
2018-01-30 15:16:24 +01:00
2019-04-26 08:50:52 +02:00
emailPort = await MockSmtpServer.Instance.collectEmails(emails)
2018-01-30 15:16:24 +01:00
const overrideConfig = {
smtp: {
2019-04-26 08:50:52 +02:00
hostname: 'localhost',
port: emailPort
2018-01-30 15:16:24 +01:00
}
}
2019-04-24 10:53:40 +02:00
server = await flushAndRunServer(1, overrideConfig)
2018-01-30 15:16:24 +01:00
await setAccessTokensToServers([ server ])
2018-02-01 11:08:10 +01:00
{
2019-04-15 10:49:46 +02:00
const res = await createUser({ url: server.url, accessToken: server.accessToken, username: user.username, password: user.password })
2018-02-01 11:08:10 +01:00
userId = res.body.user.id
2018-08-13 16:57:13 +02:00
userAccessToken = await userLogin(server, user)
}
{
const attributes = {
name: 'my super user video'
}
const res = await uploadVideo(server.url, userAccessToken, attributes)
videoUserUUID = res.body.video.uuid
2018-02-01 11:08:10 +01:00
}
{
const attributes = {
name: 'my super name'
}
const res = await uploadVideo(server.url, server.accessToken, attributes)
videoUUID = res.body.video.uuid
}
2018-01-30 15:16:24 +01:00
})
describe('When resetting user password', function () {
it('Should ask to reset the password', async function () {
this.timeout(10000)
await askResetPassword(server.url, 'user_1@example.com')
await waitJobs(server)
2018-01-30 15:16:24 +01:00
expect(emails).to.have.lengthOf(1)
const email = emails[0]
expect(email['from'][0]['name']).equal('localhost:' + server.port)
2018-01-30 15:16:24 +01:00
expect(email['from'][0]['address']).equal('test-admin@localhost')
expect(email['to'][0]['address']).equal('user_1@example.com')
expect(email['subject']).contains('password')
const verificationStringMatches = /verificationString=([a-z0-9]+)/.exec(email['text'])
expect(verificationStringMatches).not.to.be.null
verificationString = verificationStringMatches[1]
expect(verificationString).to.have.length.above(2)
const userIdMatches = /userId=([0-9]+)/.exec(email['text'])
expect(userIdMatches).not.to.be.null
userId = parseInt(userIdMatches[1], 10)
expect(verificationString).to.not.be.undefined
})
it('Should not reset the password with an invalid verification string', async function () {
await resetPassword(server.url, userId, verificationString + 'b', 'super_password2', 403)
})
it('Should reset the password', async function () {
await resetPassword(server.url, userId, verificationString, 'super_password2')
})
it('Should login with this new password', async function () {
user.password = 'super_password2'
await userLogin(server, user)
})
})
2018-02-01 11:08:10 +01:00
describe('When creating a video abuse', function () {
it('Should send the notification email', async function () {
this.timeout(10000)
const reason = 'my super bad reason'
await reportVideoAbuse(server.url, server.accessToken, videoUUID, reason)
await waitJobs(server)
2018-02-01 11:08:10 +01:00
expect(emails).to.have.lengthOf(2)
const email = emails[1]
expect(email['from'][0]['name']).equal('localhost:' + server.port)
2018-02-01 11:08:10 +01:00
expect(email['from'][0]['address']).equal('test-admin@localhost')
2019-04-26 08:50:52 +02:00
expect(email['to'][0]['address']).equal('admin' + server.internalServerNumber + '@example.com')
2018-02-01 11:08:10 +01:00
expect(email['subject']).contains('abuse')
expect(email['text']).contains(videoUUID)
})
})
2019-02-21 14:28:06 +01:00
describe('When blocking/unblocking user', function () {
2018-08-08 17:36:10 +02:00
it('Should send the notification email when blocking a user', async function () {
this.timeout(10000)
const reason = 'my super bad reason'
await blockUser(server.url, userId, server.accessToken, 204, reason)
await waitJobs(server)
expect(emails).to.have.lengthOf(3)
const email = emails[2]
expect(email['from'][0]['name']).equal('localhost:' + server.port)
2018-08-08 17:36:10 +02:00
expect(email['from'][0]['address']).equal('test-admin@localhost')
expect(email['to'][0]['address']).equal('user_1@example.com')
expect(email['subject']).contains(' blocked')
expect(email['text']).contains(' blocked')
expect(email['text']).contains(reason)
})
it('Should send the notification email when unblocking a user', async function () {
this.timeout(10000)
await unblockUser(server.url, userId, server.accessToken, 204)
await waitJobs(server)
expect(emails).to.have.lengthOf(4)
const email = emails[3]
expect(email['from'][0]['name']).equal('localhost:' + server.port)
2018-08-08 17:36:10 +02:00
expect(email['from'][0]['address']).equal('test-admin@localhost')
expect(email['to'][0]['address']).equal('user_1@example.com')
expect(email['subject']).contains(' unblocked')
expect(email['text']).contains(' unblocked')
})
})
2018-08-13 16:57:13 +02:00
describe('When blacklisting a video', function () {
it('Should send the notification email', async function () {
this.timeout(10000)
const reason = 'my super reason'
await addVideoToBlacklist(server.url, server.accessToken, videoUserUUID, reason)
await waitJobs(server)
expect(emails).to.have.lengthOf(5)
const email = emails[4]
expect(email['from'][0]['name']).equal('localhost:' + server.port)
2018-08-13 16:57:13 +02:00
expect(email['from'][0]['address']).equal('test-admin@localhost')
expect(email['to'][0]['address']).equal('user_1@example.com')
expect(email['subject']).contains(' blacklisted')
expect(email['text']).contains('my super user video')
expect(email['text']).contains('my super reason')
})
it('Should send the notification email', async function () {
this.timeout(10000)
await removeVideoFromBlacklist(server.url, server.accessToken, videoUserUUID)
await waitJobs(server)
expect(emails).to.have.lengthOf(6)
const email = emails[5]
expect(email['from'][0]['name']).equal('localhost:' + server.port)
2018-08-13 16:57:13 +02:00
expect(email['from'][0]['address']).equal('test-admin@localhost')
expect(email['to'][0]['address']).equal('user_1@example.com')
expect(email['subject']).contains(' unblacklisted')
expect(email['text']).contains('my super user video')
})
})
describe('When verifying a user email', function () {
it('Should ask to send the verification email', async function () {
this.timeout(10000)
await askSendVerifyEmail(server.url, 'user_1@example.com')
await waitJobs(server)
expect(emails).to.have.lengthOf(7)
const email = emails[6]
expect(email['from'][0]['name']).equal('localhost:' + server.port)
expect(email['from'][0]['address']).equal('test-admin@localhost')
expect(email['to'][0]['address']).equal('user_1@example.com')
expect(email['subject']).contains('Verify')
const verificationStringMatches = /verificationString=([a-z0-9]+)/.exec(email['text'])
expect(verificationStringMatches).not.to.be.null
verificationString = verificationStringMatches[1]
expect(verificationString).to.not.be.undefined
expect(verificationString).to.have.length.above(2)
const userIdMatches = /userId=([0-9]+)/.exec(email['text'])
expect(userIdMatches).not.to.be.null
userId = parseInt(userIdMatches[1], 10)
})
it('Should not verify the email with an invalid verification string', async function () {
2019-06-11 11:54:33 +02:00
await verifyEmail(server.url, userId, verificationString + 'b', false, 403)
})
it('Should verify the email', async function () {
await verifyEmail(server.url, userId, verificationString)
})
})
2019-04-24 15:10:37 +02:00
after(async function () {
2019-01-08 15:51:52 +01:00
MockSmtpServer.Instance.kill()
2019-04-24 15:10:37 +02:00
await cleanupTests([ server ])
2018-01-30 15:16:24 +01:00
})
})