]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/utils/users/users.ts
add user account email verificiation (#977)
[github/Chocobozzz/PeerTube.git] / server / tests / utils / users / users.ts
CommitLineData
0e1dc3e7 1import * as request from 'supertest'
4bbfc6c6 2import { makePostBodyRequest, makePutBodyRequest, updateAvatarRequest } from '../'
0e1dc3e7 3
c5d31dba 4import { UserRole } from '../../../../shared/index'
0883b324 5import { NSFWPolicyType } from '../../../../shared/models/videos/nsfw-policy.type'
757f0da3
C
6
7function createUser (
8 url: string,
9 accessToken: string,
10 username: string,
11 password: string,
12 videoQuota = 1000000,
bee0abff 13 videoQuotaDaily = -1,
757f0da3 14 role: UserRole = UserRole.USER,
f05a1c30 15 specialStatus = 200
757f0da3 16) {
0e1dc3e7
C
17 const path = '/api/v1/users'
18 const body = {
19 username,
20 password,
757f0da3 21 role,
5c98d3bf 22 email: username + '@example.com',
bee0abff
FA
23 videoQuota,
24 videoQuotaDaily
0e1dc3e7
C
25 }
26
27 return request(url)
28 .post(path)
29 .set('Accept', 'application/json')
30 .set('Authorization', 'Bearer ' + accessToken)
31 .send(body)
32 .expect(specialStatus)
33}
34
35function registerUser (url: string, username: string, password: string, specialStatus = 204) {
36 const path = '/api/v1/users/register'
37 const body = {
38 username,
39 password,
40 email: username + '@example.com'
41 }
42
43 return request(url)
44 .post(path)
45 .set('Accept', 'application/json')
46 .send(body)
47 .expect(specialStatus)
48}
49
26d21b78 50function getMyUserInformation (url: string, accessToken: string, specialStatus = 200) {
0e1dc3e7
C
51 const path = '/api/v1/users/me'
52
53 return request(url)
54 .get(path)
55 .set('Accept', 'application/json')
56 .set('Authorization', 'Bearer ' + accessToken)
26d21b78 57 .expect(specialStatus)
0e1dc3e7
C
58 .expect('Content-Type', /json/)
59}
60
92b9d60c
C
61function deleteMe (url: string, accessToken: string, specialStatus = 204) {
62 const path = '/api/v1/users/me'
63
64 return request(url)
65 .delete(path)
66 .set('Accept', 'application/json')
67 .set('Authorization', 'Bearer ' + accessToken)
68 .expect(specialStatus)
69}
70
ce5496d6
C
71function getMyUserVideoQuotaUsed (url: string, accessToken: string, specialStatus = 200) {
72 const path = '/api/v1/users/me/video-quota-used'
73
74 return request(url)
75 .get(path)
76 .set('Accept', 'application/json')
77 .set('Authorization', 'Bearer ' + accessToken)
78 .expect(specialStatus)
79 .expect('Content-Type', /json/)
80}
81
5c98d3bf
C
82function getUserInformation (url: string, accessToken: string, userId: number) {
83 const path = '/api/v1/users/' + userId
84
85 return request(url)
86 .get(path)
87 .set('Accept', 'application/json')
88 .set('Authorization', 'Bearer ' + accessToken)
89 .expect(200)
90 .expect('Content-Type', /json/)
91}
92
26d21b78 93function getMyUserVideoRating (url: string, accessToken: string, videoId: number | string, specialStatus = 200) {
0e1dc3e7
C
94 const path = '/api/v1/users/me/videos/' + videoId + '/rating'
95
96 return request(url)
97 .get(path)
98 .set('Accept', 'application/json')
99 .set('Authorization', 'Bearer ' + accessToken)
26d21b78 100 .expect(specialStatus)
0e1dc3e7
C
101 .expect('Content-Type', /json/)
102}
103
86d13ec2 104function getUsersList (url: string, accessToken: string) {
0e1dc3e7
C
105 const path = '/api/v1/users'
106
107 return request(url)
108 .get(path)
109 .set('Accept', 'application/json')
86d13ec2 110 .set('Authorization', 'Bearer ' + accessToken)
0e1dc3e7
C
111 .expect(200)
112 .expect('Content-Type', /json/)
113}
114
86d13ec2 115function getUsersListPaginationAndSort (url: string, accessToken: string, start: number, count: number, sort: string) {
0e1dc3e7
C
116 const path = '/api/v1/users'
117
118 return request(url)
119 .get(path)
120 .query({ start })
121 .query({ count })
122 .query({ sort })
123 .set('Accept', 'application/json')
86d13ec2 124 .set('Authorization', 'Bearer ' + accessToken)
0e1dc3e7
C
125 .expect(200)
126 .expect('Content-Type', /json/)
127}
128
26d21b78 129function removeUser (url: string, userId: number | string, accessToken: string, expectedStatus = 204) {
0e1dc3e7
C
130 const path = '/api/v1/users'
131
132 return request(url)
133 .delete(path + '/' + userId)
134 .set('Accept', 'application/json')
135 .set('Authorization', 'Bearer ' + accessToken)
136 .expect(expectedStatus)
137}
138
eacb25c4 139function blockUser (url: string, userId: number | string, accessToken: string, expectedStatus = 204, reason?: string) {
e6921918 140 const path = '/api/v1/users'
eacb25c4
C
141 let body: any
142 if (reason) body = { reason }
e6921918
C
143
144 return request(url)
145 .post(path + '/' + userId + '/block')
eacb25c4 146 .send(body)
e6921918
C
147 .set('Accept', 'application/json')
148 .set('Authorization', 'Bearer ' + accessToken)
149 .expect(expectedStatus)
150}
151
152function unblockUser (url: string, userId: number | string, accessToken: string, expectedStatus = 204) {
153 const path = '/api/v1/users'
154
155 return request(url)
156 .post(path + '/' + userId + '/unblock')
157 .set('Accept', 'application/json')
158 .set('Authorization', 'Bearer ' + accessToken)
159 .expect(expectedStatus)
160}
161
26d21b78
C
162function updateMyUser (options: {
163 url: string
164 accessToken: string,
165 newPassword?: string,
0883b324 166 nsfwPolicy?: NSFWPolicyType,
26d21b78
C
167 email?: string,
168 autoPlayVideo?: boolean
ed56ad11 169 displayName?: string,
2422c46b 170 description?: string
26d21b78 171}) {
5c98d3bf 172 const path = '/api/v1/users/me'
0e1dc3e7
C
173
174 const toSend = {}
26d21b78 175 if (options.newPassword !== undefined && options.newPassword !== null) toSend['password'] = options.newPassword
0883b324 176 if (options.nsfwPolicy !== undefined && options.nsfwPolicy !== null) toSend['nsfwPolicy'] = options.nsfwPolicy
26d21b78
C
177 if (options.autoPlayVideo !== undefined && options.autoPlayVideo !== null) toSend['autoPlayVideo'] = options.autoPlayVideo
178 if (options.email !== undefined && options.email !== null) toSend['email'] = options.email
2422c46b 179 if (options.description !== undefined && options.description !== null) toSend['description'] = options.description
ed56ad11 180 if (options.displayName !== undefined && options.displayName !== null) toSend['displayName'] = options.displayName
26d21b78
C
181
182 return makePutBodyRequest({
183 url: options.url,
184 path,
185 token: options.accessToken,
186 fields: toSend,
187 statusCodeExpected: 204
188 })
5c98d3bf
C
189}
190
c5911fd3
C
191function updateMyAvatar (options: {
192 url: string,
193 accessToken: string,
194 fixture: string
195}) {
196 const path = '/api/v1/users/me/avatar/pick'
c5911fd3 197
4bbfc6c6 198 return updateAvatarRequest(Object.assign(options, { path }))
c5911fd3
C
199}
200
26d21b78
C
201function updateUser (options: {
202 url: string
203 userId: number,
204 accessToken: string,
205 email?: string,
206 videoQuota?: number,
bee0abff 207 videoQuotaDaily?: number,
26d21b78
C
208 role?: UserRole
209}) {
210 const path = '/api/v1/users/' + options.userId
5c98d3bf
C
211
212 const toSend = {}
26d21b78
C
213 if (options.email !== undefined && options.email !== null) toSend['email'] = options.email
214 if (options.videoQuota !== undefined && options.videoQuota !== null) toSend['videoQuota'] = options.videoQuota
bee0abff 215 if (options.videoQuotaDaily !== undefined && options.videoQuotaDaily !== null) toSend['videoQuotaDaily'] = options.videoQuotaDaily
26d21b78
C
216 if (options.role !== undefined && options.role !== null) toSend['role'] = options.role
217
218 return makePutBodyRequest({
219 url: options.url,
220 path,
221 token: options.accessToken,
222 fields: toSend,
223 statusCodeExpected: 204
224 })
0e1dc3e7
C
225}
226
f076daa7
C
227function askResetPassword (url: string, email: string) {
228 const path = '/api/v1/users/ask-reset-password'
229
230 return makePostBodyRequest({
231 url,
232 path,
233 fields: { email },
234 statusCodeExpected: 204
235 })
236}
237
238function resetPassword (url: string, userId: number, verificationString: string, password: string, statusCodeExpected = 204) {
239 const path = '/api/v1/users/' + userId + '/reset-password'
240
241 return makePostBodyRequest({
242 url,
243 path,
244 fields: { password, verificationString },
245 statusCodeExpected
246 })
247}
248
d9eaee39
JM
249function askSendVerifyEmail (url: string, email: string) {
250 const path = '/api/v1/users/ask-send-verify-email'
251
252 return makePostBodyRequest({
253 url,
254 path,
255 fields: { email },
256 statusCodeExpected: 204
257 })
258}
259
260function verifyEmail (url: string, userId: number, verificationString: string, statusCodeExpected = 204) {
261 const path = '/api/v1/users/' + userId + '/verify-email'
262
263 return makePostBodyRequest({
264 url,
265 path,
266 fields: { verificationString },
267 statusCodeExpected
268 })
269}
270
0e1dc3e7
C
271// ---------------------------------------------------------------------------
272
273export {
274 createUser,
275 registerUser,
5c98d3bf 276 getMyUserInformation,
26d21b78 277 getMyUserVideoRating,
92b9d60c 278 deleteMe,
ce5496d6 279 getMyUserVideoQuotaUsed,
0e1dc3e7
C
280 getUsersList,
281 getUsersListPaginationAndSort,
282 removeUser,
5c98d3bf
C
283 updateUser,
284 updateMyUser,
c5911fd3 285 getUserInformation,
e6921918
C
286 blockUser,
287 unblockUser,
f076daa7
C
288 askResetPassword,
289 resetPassword,
d9eaee39
JM
290 updateMyAvatar,
291 askSendVerifyEmail,
292 verifyEmail
0e1dc3e7 293}