]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/api/server/email.ts
Adapt CLI to new commands
[github/Chocobozzz/PeerTube.git] / server / tests / api / server / email.ts
CommitLineData
a1587156 1/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
f076daa7 2
f076daa7 3import 'mocha'
4f32032f 4import * as chai from 'chai'
8ef9457f 5import { HttpStatusCode } from '../../../../shared/core-utils/miscs/http-error-codes'
eacb25c4
C
6import {
7 askResetPassword,
d9eaee39 8 askSendVerifyEmail,
eacb25c4 9 blockUser,
7243f84d
C
10 cleanupTests,
11 createUser,
12 flushAndRunServer,
eacb25c4 13 resetPassword,
7243f84d
C
14 ServerInfo,
15 setAccessTokensToServers,
eacb25c4
C
16 unblockUser,
17 uploadVideo,
7243f84d 18 verifyEmail
94565d52 19} from '../../../../shared/extra-utils'
8ef9457f 20import { MockSmtpServer } from '../../../../shared/extra-utils/mock-servers/mock-email'
94565d52 21import { waitJobs } from '../../../../shared/extra-utils/server/jobs'
f076daa7
C
22
23const expect = chai.expect
24
25describe('Test emails', function () {
26 let server: ServerInfo
27 let userId: number
45f1bd72 28 let userId2: number
26b7305a 29 let userAccessToken: string
4f32032f 30
ba75d268 31 let videoUUID: string
4f32032f
C
32 let videoId: number
33
26b7305a 34 let videoUserUUID: string
4f32032f 35
f076daa7 36 let verificationString: string
45f1bd72 37 let verificationString2: string
4f32032f 38
f076daa7
C
39 const emails: object[] = []
40 const user = {
41 username: 'user_1',
42 password: 'super_password'
43 }
48f07b4a 44 let emailPort: number
f076daa7
C
45
46 before(async function () {
2284f202 47 this.timeout(50000)
f076daa7 48
48f07b4a 49 emailPort = await MockSmtpServer.Instance.collectEmails(emails)
f076daa7 50
f076daa7
C
51 const overrideConfig = {
52 smtp: {
48f07b4a
C
53 hostname: 'localhost',
54 port: emailPort
f076daa7
C
55 }
56 }
210feb6c 57 server = await flushAndRunServer(1, overrideConfig)
f076daa7
C
58 await setAccessTokensToServers([ server ])
59
ba75d268 60 {
1eddc9a7 61 const res = await createUser({ url: server.url, accessToken: server.accessToken, username: user.username, password: user.password })
ba75d268 62 userId = res.body.user.id
26b7305a 63
41d1d075 64 userAccessToken = await server.loginCommand.getAccessToken(user)
26b7305a
C
65 }
66
67 {
68 const attributes = {
69 name: 'my super user video'
70 }
71 const res = await uploadVideo(server.url, userAccessToken, attributes)
72 videoUserUUID = res.body.video.uuid
ba75d268
C
73 }
74
75 {
76 const attributes = {
77 name: 'my super name'
78 }
79 const res = await uploadVideo(server.url, server.accessToken, attributes)
80 videoUUID = res.body.video.uuid
4f32032f 81 videoId = res.body.video.id
ba75d268 82 }
f076daa7
C
83 })
84
85 describe('When resetting user password', function () {
86
87 it('Should ask to reset the password', async function () {
88 this.timeout(10000)
89
90 await askResetPassword(server.url, 'user_1@example.com')
91
3cd0734f 92 await waitJobs(server)
f076daa7
C
93 expect(emails).to.have.lengthOf(1)
94
95 const email = emails[0]
96
113d4a3f 97 expect(email['from'][0]['name']).equal('PeerTube')
f076daa7
C
98 expect(email['from'][0]['address']).equal('test-admin@localhost')
99 expect(email['to'][0]['address']).equal('user_1@example.com')
100 expect(email['subject']).contains('password')
101
102 const verificationStringMatches = /verificationString=([a-z0-9]+)/.exec(email['text'])
103 expect(verificationStringMatches).not.to.be.null
104
105 verificationString = verificationStringMatches[1]
106 expect(verificationString).to.have.length.above(2)
107
108 const userIdMatches = /userId=([0-9]+)/.exec(email['text'])
109 expect(userIdMatches).not.to.be.null
110
111 userId = parseInt(userIdMatches[1], 10)
112 expect(verificationString).to.not.be.undefined
113 })
114
115 it('Should not reset the password with an invalid verification string', async function () {
f2eb23cd 116 await resetPassword(server.url, userId, verificationString + 'b', 'super_password2', HttpStatusCode.FORBIDDEN_403)
f076daa7
C
117 })
118
119 it('Should reset the password', async function () {
120 await resetPassword(server.url, userId, verificationString, 'super_password2')
121 })
122
e9c5f123 123 it('Should not reset the password with the same verification string', async function () {
f2eb23cd 124 await resetPassword(server.url, userId, verificationString, 'super_password3', HttpStatusCode.FORBIDDEN_403)
e9c5f123
C
125 })
126
f076daa7
C
127 it('Should login with this new password', async function () {
128 user.password = 'super_password2'
129
41d1d075 130 await server.loginCommand.getAccessToken(user)
f076daa7
C
131 })
132 })
133
45f1bd72
JL
134 describe('When creating a user without password', function () {
135 it('Should send a create password email', async function () {
136 this.timeout(10000)
137
138 await createUser({
139 url: server.url,
140 accessToken: server.accessToken,
141 username: 'create_password',
142 password: ''
143 })
144
145 await waitJobs(server)
146 expect(emails).to.have.lengthOf(2)
147
148 const email = emails[1]
149
113d4a3f 150 expect(email['from'][0]['name']).equal('PeerTube')
45f1bd72
JL
151 expect(email['from'][0]['address']).equal('test-admin@localhost')
152 expect(email['to'][0]['address']).equal('create_password@example.com')
153 expect(email['subject']).contains('account')
154 expect(email['subject']).contains('password')
155
156 const verificationStringMatches = /verificationString=([a-z0-9]+)/.exec(email['text'])
157 expect(verificationStringMatches).not.to.be.null
158
159 verificationString2 = verificationStringMatches[1]
160 expect(verificationString2).to.have.length.above(2)
161
162 const userIdMatches = /userId=([0-9]+)/.exec(email['text'])
163 expect(userIdMatches).not.to.be.null
164
165 userId2 = parseInt(userIdMatches[1], 10)
166 })
167
168 it('Should not reset the password with an invalid verification string', async function () {
f2eb23cd 169 await resetPassword(server.url, userId2, verificationString2 + 'c', 'newly_created_password', HttpStatusCode.FORBIDDEN_403)
45f1bd72
JL
170 })
171
172 it('Should reset the password', async function () {
173 await resetPassword(server.url, userId2, verificationString2, 'newly_created_password')
174 })
175
176 it('Should login with this new password', async function () {
41d1d075 177 await server.loginCommand.getAccessToken({
45f1bd72
JL
178 username: 'create_password',
179 password: 'newly_created_password'
180 })
181 })
182 })
183
310b5219 184 describe('When creating an abuse', function () {
ba75d268
C
185 it('Should send the notification email', async function () {
186 this.timeout(10000)
187
188 const reason = 'my super bad reason'
0c1a77e9 189 await server.abusesCommand.report({ videoId, reason })
ba75d268 190
3cd0734f 191 await waitJobs(server)
45f1bd72 192 expect(emails).to.have.lengthOf(3)
ba75d268 193
45f1bd72 194 const email = emails[2]
ba75d268 195
113d4a3f 196 expect(email['from'][0]['name']).equal('PeerTube')
ba75d268 197 expect(email['from'][0]['address']).equal('test-admin@localhost')
48f07b4a 198 expect(email['to'][0]['address']).equal('admin' + server.internalServerNumber + '@example.com')
ba75d268
C
199 expect(email['subject']).contains('abuse')
200 expect(email['text']).contains(videoUUID)
201 })
202 })
203
9b39106d
C
204 describe('When blocking/unblocking user', function () {
205
eacb25c4
C
206 it('Should send the notification email when blocking a user', async function () {
207 this.timeout(10000)
208
209 const reason = 'my super bad reason'
f2eb23cd 210 await blockUser(server.url, userId, server.accessToken, HttpStatusCode.NO_CONTENT_204, reason)
eacb25c4
C
211
212 await waitJobs(server)
45f1bd72 213 expect(emails).to.have.lengthOf(4)
eacb25c4 214
45f1bd72 215 const email = emails[3]
eacb25c4 216
113d4a3f 217 expect(email['from'][0]['name']).equal('PeerTube')
eacb25c4
C
218 expect(email['from'][0]['address']).equal('test-admin@localhost')
219 expect(email['to'][0]['address']).equal('user_1@example.com')
220 expect(email['subject']).contains(' blocked')
221 expect(email['text']).contains(' blocked')
113d4a3f 222 expect(email['text']).contains('bad reason')
eacb25c4
C
223 })
224
225 it('Should send the notification email when unblocking a user', async function () {
226 this.timeout(10000)
227
f2eb23cd 228 await unblockUser(server.url, userId, server.accessToken, HttpStatusCode.NO_CONTENT_204)
eacb25c4
C
229
230 await waitJobs(server)
45f1bd72 231 expect(emails).to.have.lengthOf(5)
eacb25c4 232
45f1bd72 233 const email = emails[4]
eacb25c4 234
113d4a3f 235 expect(email['from'][0]['name']).equal('PeerTube')
eacb25c4
C
236 expect(email['from'][0]['address']).equal('test-admin@localhost')
237 expect(email['to'][0]['address']).equal('user_1@example.com')
238 expect(email['subject']).contains(' unblocked')
239 expect(email['text']).contains(' unblocked')
240 })
241 })
242
26b7305a
C
243 describe('When blacklisting a video', function () {
244 it('Should send the notification email', async function () {
245 this.timeout(10000)
246
247 const reason = 'my super reason'
e3d15a6a 248 await server.blacklistCommand.add({ videoId: videoUserUUID, reason })
26b7305a
C
249
250 await waitJobs(server)
45f1bd72 251 expect(emails).to.have.lengthOf(6)
26b7305a 252
45f1bd72 253 const email = emails[5]
26b7305a 254
113d4a3f 255 expect(email['from'][0]['name']).equal('PeerTube')
26b7305a
C
256 expect(email['from'][0]['address']).equal('test-admin@localhost')
257 expect(email['to'][0]['address']).equal('user_1@example.com')
258 expect(email['subject']).contains(' blacklisted')
259 expect(email['text']).contains('my super user video')
260 expect(email['text']).contains('my super reason')
261 })
262
263 it('Should send the notification email', async function () {
264 this.timeout(10000)
265
e3d15a6a 266 await server.blacklistCommand.remove({ videoId: videoUserUUID })
26b7305a
C
267
268 await waitJobs(server)
45f1bd72 269 expect(emails).to.have.lengthOf(7)
26b7305a 270
45f1bd72 271 const email = emails[6]
26b7305a 272
113d4a3f 273 expect(email['from'][0]['name']).equal('PeerTube')
26b7305a
C
274 expect(email['from'][0]['address']).equal('test-admin@localhost')
275 expect(email['to'][0]['address']).equal('user_1@example.com')
276 expect(email['subject']).contains(' unblacklisted')
277 expect(email['text']).contains('my super user video')
278 })
b9cf3fb6
C
279
280 it('Should have the manage preferences link in the email', async function () {
281 const email = emails[6]
282 expect(email['text']).to.contain('Manage your notification preferences')
283 })
26b7305a
C
284 })
285
d9eaee39
JM
286 describe('When verifying a user email', function () {
287
288 it('Should ask to send the verification email', async function () {
289 this.timeout(10000)
290
291 await askSendVerifyEmail(server.url, 'user_1@example.com')
292
293 await waitJobs(server)
45f1bd72 294 expect(emails).to.have.lengthOf(8)
d9eaee39 295
45f1bd72 296 const email = emails[7]
d9eaee39 297
113d4a3f 298 expect(email['from'][0]['name']).equal('PeerTube')
d9eaee39
JM
299 expect(email['from'][0]['address']).equal('test-admin@localhost')
300 expect(email['to'][0]['address']).equal('user_1@example.com')
301 expect(email['subject']).contains('Verify')
302
303 const verificationStringMatches = /verificationString=([a-z0-9]+)/.exec(email['text'])
304 expect(verificationStringMatches).not.to.be.null
305
306 verificationString = verificationStringMatches[1]
307 expect(verificationString).to.not.be.undefined
308 expect(verificationString).to.have.length.above(2)
309
310 const userIdMatches = /userId=([0-9]+)/.exec(email['text'])
311 expect(userIdMatches).not.to.be.null
312
313 userId = parseInt(userIdMatches[1], 10)
314 })
315
316 it('Should not verify the email with an invalid verification string', async function () {
f2eb23cd 317 await verifyEmail(server.url, userId, verificationString + 'b', false, HttpStatusCode.FORBIDDEN_403)
d9eaee39
JM
318 })
319
320 it('Should verify the email', async function () {
321 await verifyEmail(server.url, userId, verificationString)
322 })
323 })
324
7c3b7976 325 after(async function () {
89ada4e2 326 MockSmtpServer.Instance.kill()
7c3b7976
C
327
328 await cleanupTests([ server ])
f076daa7
C
329 })
330})