]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/tests/api/users/users-verification.ts
Correctly export misc files
[github/Chocobozzz/PeerTube.git] / server / tests / api / users / users-verification.ts
1 /* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2
3 import 'mocha'
4 import * as chai from 'chai'
5 import { HttpStatusCode } from '../../../../shared/core-utils/miscs/http-error-codes'
6 import {
7 cleanupTests,
8 flushAndRunServer,
9 getMyUserInformation,
10 getUserInformation,
11 login,
12 registerUser,
13 ServerInfo,
14 updateCustomSubConfig,
15 updateMyUser,
16 userLogin,
17 verifyEmail
18 } from '../../../../shared/extra-utils'
19 import { MockSmtpServer } from '../../../../shared/extra-utils/mock-servers/mock-email'
20 import { waitJobs } from '../../../../shared/extra-utils/server/jobs'
21 import { setAccessTokensToServers } from '../../../../shared/extra-utils/users/login'
22 import { User } from '../../../../shared/models/users'
23
24 const expect = chai.expect
25
26 describe('Test users account verification', function () {
27 let server: ServerInfo
28 let userId: number
29 let userAccessToken: string
30 let verificationString: string
31 let expectedEmailsLength = 0
32 const user1 = {
33 username: 'user_1',
34 password: 'super password'
35 }
36 const user2 = {
37 username: 'user_2',
38 password: 'super password'
39 }
40 const emails: object[] = []
41
42 before(async function () {
43 this.timeout(30000)
44
45 const port = await MockSmtpServer.Instance.collectEmails(emails)
46
47 const overrideConfig = {
48 smtp: {
49 hostname: 'localhost',
50 port
51 }
52 }
53 server = await flushAndRunServer(1, overrideConfig)
54
55 await setAccessTokensToServers([ server ])
56 })
57
58 it('Should register user and send verification email if verification required', async function () {
59 this.timeout(30000)
60
61 await updateCustomSubConfig(server.url, server.accessToken, {
62 signup: {
63 enabled: true,
64 requiresEmailVerification: true,
65 limit: 10
66 }
67 })
68
69 await registerUser(server.url, user1.username, user1.password)
70
71 await waitJobs(server)
72 expectedEmailsLength++
73 expect(emails).to.have.lengthOf(expectedEmailsLength)
74
75 const email = emails[expectedEmailsLength - 1]
76
77 const verificationStringMatches = /verificationString=([a-z0-9]+)/.exec(email['text'])
78 expect(verificationStringMatches).not.to.be.null
79
80 verificationString = verificationStringMatches[1]
81 expect(verificationString).to.have.length.above(2)
82
83 const userIdMatches = /userId=([0-9]+)/.exec(email['text'])
84 expect(userIdMatches).not.to.be.null
85
86 userId = parseInt(userIdMatches[1], 10)
87
88 const resUserInfo = await getUserInformation(server.url, server.accessToken, userId)
89 expect(resUserInfo.body.emailVerified).to.be.false
90 })
91
92 it('Should not allow login for user with unverified email', async function () {
93 const resLogin = await login(server.url, server.client, user1, HttpStatusCode.BAD_REQUEST_400)
94 expect(resLogin.body.detail).to.contain('User email is not verified.')
95 })
96
97 it('Should verify the user via email and allow login', async function () {
98 await verifyEmail(server.url, userId, verificationString)
99
100 const res = await login(server.url, server.client, user1)
101 userAccessToken = res.body.access_token
102
103 const resUserVerified = await getUserInformation(server.url, server.accessToken, userId)
104 expect(resUserVerified.body.emailVerified).to.be.true
105 })
106
107 it('Should be able to change the user email', async function () {
108 this.timeout(10000)
109
110 let updateVerificationString: string
111
112 {
113 await updateMyUser({
114 url: server.url,
115 accessToken: userAccessToken,
116 email: 'updated@example.com',
117 currentPassword: user1.password
118 })
119
120 await waitJobs(server)
121 expectedEmailsLength++
122 expect(emails).to.have.lengthOf(expectedEmailsLength)
123
124 const email = emails[expectedEmailsLength - 1]
125
126 const verificationStringMatches = /verificationString=([a-z0-9]+)/.exec(email['text'])
127 updateVerificationString = verificationStringMatches[1]
128 }
129
130 {
131 const res = await getMyUserInformation(server.url, userAccessToken)
132 const me: User = res.body
133
134 expect(me.email).to.equal('user_1@example.com')
135 expect(me.pendingEmail).to.equal('updated@example.com')
136 }
137
138 {
139 await verifyEmail(server.url, userId, updateVerificationString, true)
140
141 const res = await getMyUserInformation(server.url, userAccessToken)
142 const me: User = res.body
143
144 expect(me.email).to.equal('updated@example.com')
145 expect(me.pendingEmail).to.be.null
146 }
147 })
148
149 it('Should register user not requiring email verification if setting not enabled', async function () {
150 this.timeout(5000)
151 await updateCustomSubConfig(server.url, server.accessToken, {
152 signup: {
153 enabled: true,
154 requiresEmailVerification: false,
155 limit: 10
156 }
157 })
158
159 await registerUser(server.url, user2.username, user2.password)
160
161 await waitJobs(server)
162 expect(emails).to.have.lengthOf(expectedEmailsLength)
163
164 const accessToken = await userLogin(server, user2)
165
166 const resMyUserInfo = await getMyUserInformation(server.url, accessToken)
167 expect(resMyUserInfo.body.emailVerified).to.be.null
168 })
169
170 it('Should allow login for user with unverified email when setting later enabled', async function () {
171 await updateCustomSubConfig(server.url, server.accessToken, {
172 signup: {
173 enabled: true,
174 requiresEmailVerification: true,
175 limit: 10
176 }
177 })
178
179 await userLogin(server, user2)
180 })
181
182 after(async function () {
183 MockSmtpServer.Instance.kill()
184
185 await cleanupTests([ server ])
186 })
187 })