]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/api/users/users.ts
Add migrations
[github/Chocobozzz/PeerTube.git] / server / tests / api / users / users.ts
CommitLineData
0e1dc3e7 1/* tslint:disable:no-unused-expression */
86d13ec2 2
0e1dc3e7 3import * as chai from 'chai'
afffe988 4import 'mocha'
a76138ff 5import { User, UserRole } from '../../../../shared/index'
0e1dc3e7 6import {
a890d1e0
C
7 blockUser,
8 createUser,
9 deleteMe,
10 flushTests,
c100a614 11 getAccountRatings,
a890d1e0
C
12 getBlacklistedVideosList,
13 getMyUserInformation,
14 getMyUserVideoQuotaUsed,
15 getMyUserVideoRating,
16 getUserInformation,
17 getUsersList,
18 getUsersListPaginationAndSort,
19 getVideosList,
20 killallServers,
21 login,
22 makePutBodyRequest,
23 rateVideo,
24 registerUser,
25 removeUser,
26 removeVideo,
27 runServer,
28 ServerInfo,
29 testImage,
30 unblockUser,
31 updateMyAvatar,
32 updateMyUser,
33 updateUser,
34 uploadVideo,
35 userLogin
94565d52
C
36} from '../../../../shared/extra-utils'
37import { follow } from '../../../../shared/extra-utils/server/follows'
38import { setAccessTokensToServers } from '../../../../shared/extra-utils/users/login'
39import { getMyVideos } from '../../../../shared/extra-utils/videos/videos'
1eddc9a7 40import { UserAdminFlag } from '../../../../shared/models/users/user-flag.model'
0e1dc3e7 41
afffe988
C
42const expect = chai.expect
43
0e1dc3e7
C
44describe('Test users', function () {
45 let server: ServerInfo
46 let accessToken: string
47 let accessTokenUser: string
48 let videoId: number
49 let userId: number
f8b8c36b
C
50 const user = {
51 username: 'user_1',
52 password: 'super password'
53 }
0e1dc3e7
C
54
55 before(async function () {
e212f887 56 this.timeout(30000)
0e1dc3e7
C
57
58 await flushTests()
59 server = await runServer(1)
86d13ec2
C
60
61 await setAccessTokensToServers([ server ])
0e1dc3e7
C
62 })
63
1eddc9a7
C
64 describe('OAuth client', function () {
65 it('Should create a new client')
0e1dc3e7 66
1eddc9a7 67 it('Should return the first client')
0e1dc3e7 68
1eddc9a7 69 it('Should remove the last client')
0e1dc3e7 70
1eddc9a7
C
71 it('Should not login with an invalid client id', async function () {
72 const client = { id: 'client', secret: server.client.secret }
73 const res = await login(server.url, client, server.user, 400)
0e1dc3e7 74
1eddc9a7
C
75 expect(res.body.error).to.contain('client is invalid')
76 })
0e1dc3e7 77
1eddc9a7
C
78 it('Should not login with an invalid client secret', async function () {
79 const client = { id: server.client.id, secret: 'coucou' }
80 const res = await login(server.url, client, server.user, 400)
0e1dc3e7 81
1eddc9a7
C
82 expect(res.body.error).to.contain('client is invalid')
83 })
0e1dc3e7
C
84 })
85
1eddc9a7 86 describe('Login', function () {
0e1dc3e7 87
1eddc9a7
C
88 it('Should not login with an invalid username', async function () {
89 const user = { username: 'captain crochet', password: server.user.password }
90 const res = await login(server.url, server.client, user, 400)
0e1dc3e7 91
1eddc9a7
C
92 expect(res.body.error).to.contain('credentials are invalid')
93 })
0e1dc3e7 94
1eddc9a7
C
95 it('Should not login with an invalid password', async function () {
96 const user = { username: server.user.username, password: 'mew_three' }
97 const res = await login(server.url, server.client, user, 400)
0e1dc3e7 98
1eddc9a7
C
99 expect(res.body.error).to.contain('credentials are invalid')
100 })
0e1dc3e7 101
1eddc9a7
C
102 it('Should not be able to upload a video', async function () {
103 accessToken = 'my_super_token'
0e1dc3e7 104
1eddc9a7
C
105 const videoAttributes = {}
106 await uploadVideo(server.url, accessToken, videoAttributes, 401)
107 })
0e1dc3e7 108
1eddc9a7
C
109 it('Should not be able to follow', async function () {
110 accessToken = 'my_super_token'
111 await follow(server.url, [ 'http://example.com' ], accessToken, 401)
112 })
0e1dc3e7 113
1eddc9a7 114 it('Should not be able to unfollow')
0e1dc3e7 115
1eddc9a7
C
116 it('Should be able to login', async function () {
117 const res = await login(server.url, server.client, server.user, 200)
0e1dc3e7 118
1eddc9a7
C
119 accessToken = res.body.access_token
120 })
0e1dc3e7
C
121 })
122
1eddc9a7 123 describe('Upload', function () {
0e1dc3e7 124
1eddc9a7
C
125 it('Should upload the video with the correct token', async function () {
126 const videoAttributes = {}
127 await uploadVideo(server.url, accessToken, videoAttributes)
128 const res = await getVideosList(server.url)
129 const video = res.body.data[ 0 ]
0e1dc3e7 130
1eddc9a7
C
131 expect(video.account.name).to.equal('root')
132 videoId = video.id
133 })
134
135 it('Should upload the video again with the correct token', async function () {
136 const videoAttributes = {}
137 await uploadVideo(server.url, accessToken, videoAttributes)
138 })
0e1dc3e7
C
139 })
140
1eddc9a7 141 describe('Ratings', function () {
22834691 142
1eddc9a7
C
143 it('Should retrieve a video rating', async function () {
144 await rateVideo(server.url, accessToken, videoId, 'like')
145 const res = await getMyUserVideoRating(server.url, accessToken, videoId)
146 const rating = res.body
c100a614 147
1eddc9a7
C
148 expect(rating.videoId).to.equal(videoId)
149 expect(rating.rating).to.equal('like')
150 })
c100a614 151
1eddc9a7
C
152 it('Should retrieve ratings list', async function () {
153 await rateVideo(server.url, accessToken, videoId, 'like')
22834691 154
1eddc9a7 155 const res = await getAccountRatings(server.url, server.user.username, server.accessToken, null, 200)
22834691 156 const ratings = res.body
0e1dc3e7 157
1eddc9a7
C
158 expect(ratings.total).to.equal(1)
159 expect(ratings.data[ 0 ].video.id).to.equal(videoId)
160 expect(ratings.data[ 0 ].rating).to.equal('like')
161 })
0e1dc3e7 162
1eddc9a7
C
163 it('Should retrieve ratings list by rating type', async function () {
164 {
165 const res = await getAccountRatings(server.url, server.user.username, server.accessToken, 'like')
166 const ratings = res.body
167 expect(ratings.data.length).to.equal(1)
168 }
169
170 {
171 const res = await getAccountRatings(server.url, server.user.username, server.accessToken, 'dislike')
172 const ratings = res.body
173 expect(ratings.data.length).to.equal(0)
174 }
175 })
0e1dc3e7
C
176 })
177
1eddc9a7
C
178 describe('Remove video', function () {
179 it('Should not be able to remove the video with an incorrect token', async function () {
180 await removeVideo(server.url, 'bad_token', videoId, 401)
181 })
0e1dc3e7 182
1eddc9a7 183 it('Should not be able to remove the video with the token of another account')
0e1dc3e7 184
1eddc9a7
C
185 it('Should be able to remove the video with the correct token', async function () {
186 await removeVideo(server.url, accessToken, videoId)
187 })
0e1dc3e7
C
188 })
189
1eddc9a7
C
190 describe('Logout', function () {
191 it('Should logout (revoke token)')
0e1dc3e7 192
1eddc9a7 193 it('Should not be able to get the user information')
0e1dc3e7 194
1eddc9a7 195 it('Should not be able to upload a video')
0e1dc3e7 196
1eddc9a7 197 it('Should not be able to remove a video')
0e1dc3e7 198
1eddc9a7
C
199 it('Should not be able to rate a video', async function () {
200 const path = '/api/v1/videos/'
201 const data = {
202 rating: 'likes'
203 }
0e1dc3e7 204
1eddc9a7
C
205 const options = {
206 url: server.url,
207 path: path + videoId,
208 token: 'wrong token',
209 fields: data,
210 statusCodeExpected: 401
211 }
212 await makePutBodyRequest(options)
213 })
0e1dc3e7 214
1eddc9a7 215 it('Should be able to login again')
0e1dc3e7 216
1eddc9a7 217 it('Should have an expired access token')
0e1dc3e7 218
1eddc9a7
C
219 it('Should refresh the token')
220
221 it('Should be able to upload a video again')
0e1dc3e7
C
222 })
223
1eddc9a7 224 describe('Creating a user', function () {
ce5496d6 225
1eddc9a7
C
226 it('Should be able to create a new user', async function () {
227 await createUser({
228 url: server.url,
229 accessToken: accessToken,
230 username: user.username,
231 password: user.password,
232 videoQuota: 2 * 1024 * 1024,
233 adminFlags: UserAdminFlag.BY_PASS_VIDEO_AUTO_BLACKLIST
234 })
235 })
a76138ff 236
1eddc9a7
C
237 it('Should be able to login with this user', async function () {
238 accessTokenUser = await userLogin(server, user)
239 })
a76138ff 240
1eddc9a7
C
241 it('Should be able to get user information', async function () {
242 const res1 = await getMyUserInformation(server.url, accessTokenUser)
243 const userMe: User = res1.body
244
245 const res2 = await getUserInformation(server.url, server.accessToken, userMe.id)
246 const userGet: User = res2.body
247
248 for (const user of [ userMe, userGet ]) {
249 expect(user.username).to.equal('user_1')
250 expect(user.email).to.equal('user_1@example.com')
251 expect(user.nsfwPolicy).to.equal('display')
252 expect(user.videoQuota).to.equal(2 * 1024 * 1024)
253 expect(user.roleLabel).to.equal('User')
254 expect(user.id).to.be.a('number')
255 expect(user.account.displayName).to.equal('user_1')
256 expect(user.account.description).to.be.null
257 }
258
259 expect(userMe.adminFlags).to.be.undefined
260 expect(userGet.adminFlags).to.equal(UserAdminFlag.BY_PASS_VIDEO_AUTO_BLACKLIST)
261 })
ce5496d6
C
262 })
263
1eddc9a7 264 describe('My videos & quotas', function () {
11474c3c 265
1eddc9a7
C
266 it('Should be able to upload a video with this user', async function () {
267 this.timeout(5000)
0e1dc3e7 268
1eddc9a7
C
269 const videoAttributes = {
270 name: 'super user video',
271 fixture: 'video_short.webm'
272 }
273 await uploadVideo(server.url, accessTokenUser, videoAttributes)
274 })
afffe988 275
1eddc9a7
C
276 it('Should have video quota updated', async function () {
277 const res = await getMyUserVideoQuotaUsed(server.url, accessTokenUser)
278 const data = res.body
0e1dc3e7 279
1eddc9a7 280 expect(data.videoQuotaUsed).to.equal(218910)
0e1dc3e7 281
1eddc9a7 282 const resUsers = await getUsersList(server.url, server.accessToken)
0e1dc3e7 283
1eddc9a7
C
284 const users: User[] = resUsers.body.data
285 const tmpUser = users.find(u => u.username === user.username)
286 expect(tmpUser.videoQuotaUsed).to.equal(218910)
287 })
0e1dc3e7 288
1eddc9a7
C
289 it('Should be able to list my videos', async function () {
290 const res = await getMyVideos(server.url, accessTokenUser, 0, 5)
291 expect(res.body.total).to.equal(1)
0e1dc3e7 292
1eddc9a7
C
293 const videos = res.body.data
294 expect(videos).to.have.lengthOf(1)
afffe988 295
1eddc9a7
C
296 expect(videos[ 0 ].name).to.equal('super user video')
297 })
0e1dc3e7
C
298 })
299
1eddc9a7 300 describe('Users listing', function () {
0e1dc3e7 301
1eddc9a7
C
302 it('Should list all the users', async function () {
303 const res = await getUsersList(server.url, server.accessToken)
304 const result = res.body
305 const total = result.total
306 const users = result.data
afffe988 307
1eddc9a7
C
308 expect(total).to.equal(2)
309 expect(users).to.be.an('array')
310 expect(users.length).to.equal(2)
0e1dc3e7 311
1eddc9a7
C
312 const user = users[ 0 ]
313 expect(user.username).to.equal('user_1')
314 expect(user.email).to.equal('user_1@example.com')
315 expect(user.nsfwPolicy).to.equal('display')
0e1dc3e7 316
1eddc9a7
C
317 const rootUser = users[ 1 ]
318 expect(rootUser.username).to.equal('root')
319 expect(rootUser.email).to.equal('admin1@example.com')
320 expect(user.nsfwPolicy).to.equal('display')
afffe988 321
1eddc9a7
C
322 userId = user.id
323 })
0e1dc3e7 324
1eddc9a7
C
325 it('Should list only the first user by username asc', async function () {
326 const res = await getUsersListPaginationAndSort(server.url, server.accessToken, 0, 1, 'username')
0e1dc3e7 327
1eddc9a7
C
328 const result = res.body
329 const total = result.total
330 const users = result.data
a7ba16b6 331
1eddc9a7
C
332 expect(total).to.equal(2)
333 expect(users.length).to.equal(1)
afffe988 334
1eddc9a7
C
335 const user = users[ 0 ]
336 expect(user.username).to.equal('root')
337 expect(user.email).to.equal('admin1@example.com')
338 expect(user.roleLabel).to.equal('Administrator')
339 expect(user.nsfwPolicy).to.equal('display')
340 })
0e1dc3e7 341
1eddc9a7
C
342 it('Should list only the first user by username desc', async function () {
343 const res = await getUsersListPaginationAndSort(server.url, server.accessToken, 0, 1, '-username')
344 const result = res.body
345 const total = result.total
346 const users = result.data
24b9417c 347
1eddc9a7
C
348 expect(total).to.equal(2)
349 expect(users.length).to.equal(1)
24b9417c 350
1eddc9a7
C
351 const user = users[ 0 ]
352 expect(user.username).to.equal('user_1')
353 expect(user.email).to.equal('user_1@example.com')
354 expect(user.nsfwPolicy).to.equal('display')
355 })
24b9417c 356
1eddc9a7
C
357 it('Should list only the second user by createdAt desc', async function () {
358 const res = await getUsersListPaginationAndSort(server.url, server.accessToken, 0, 1, '-createdAt')
359 const result = res.body
360 const total = result.total
361 const users = result.data
24b9417c 362
1eddc9a7 363 expect(total).to.equal(2)
24b9417c
C
364 expect(users.length).to.equal(1)
365
1eddc9a7
C
366 const user = users[ 0 ]
367 expect(user.username).to.equal('user_1')
368 expect(user.email).to.equal('user_1@example.com')
369 expect(user.nsfwPolicy).to.equal('display')
370 })
24b9417c 371
1eddc9a7
C
372 it('Should list all the users by createdAt asc', async function () {
373 const res = await getUsersListPaginationAndSort(server.url, server.accessToken, 0, 2, 'createdAt')
374 const result = res.body
375 const total = result.total
376 const users = result.data
24b9417c 377
1eddc9a7 378 expect(total).to.equal(2)
24b9417c
C
379 expect(users.length).to.equal(2)
380
381 expect(users[ 0 ].username).to.equal('root')
1eddc9a7
C
382 expect(users[ 0 ].email).to.equal('admin1@example.com')
383 expect(users[ 0 ].nsfwPolicy).to.equal('display')
24b9417c 384
1eddc9a7
C
385 expect(users[ 1 ].username).to.equal('user_1')
386 expect(users[ 1 ].email).to.equal('user_1@example.com')
387 expect(users[ 1 ].nsfwPolicy).to.equal('display')
11ba2ab3 388 })
0e1dc3e7 389
1eddc9a7
C
390 it('Should search user by username', async function () {
391 const res = await getUsersListPaginationAndSort(server.url, server.accessToken, 0, 2, 'createdAt', 'oot')
392 const users = res.body.data as User[]
393
394 expect(res.body.total).to.equal(1)
395 expect(users.length).to.equal(1)
0e1dc3e7 396
1eddc9a7 397 expect(users[ 0 ].username).to.equal('root')
11ba2ab3 398 })
0e1dc3e7 399
1eddc9a7
C
400 it('Should search user by email', async function () {
401 {
402 const res = await getUsersListPaginationAndSort(server.url, server.accessToken, 0, 2, 'createdAt', 'r_1@exam')
403 const users = res.body.data as User[]
0e1dc3e7 404
1eddc9a7
C
405 expect(res.body.total).to.equal(1)
406 expect(users.length).to.equal(1)
5c98d3bf 407
1eddc9a7
C
408 expect(users[ 0 ].username).to.equal('user_1')
409 expect(users[ 0 ].email).to.equal('user_1@example.com')
410 }
7efe153b 411
1eddc9a7
C
412 {
413 const res = await getUsersListPaginationAndSort(server.url, server.accessToken, 0, 2, 'createdAt', 'example')
414 const users = res.body.data as User[]
7efe153b 415
1eddc9a7
C
416 expect(res.body.total).to.equal(2)
417 expect(users.length).to.equal(2)
7efe153b 418
1eddc9a7
C
419 expect(users[ 0 ].username).to.equal('root')
420 expect(users[ 1 ].username).to.equal('user_1')
421 }
11ba2ab3 422 })
5c98d3bf
C
423 })
424
1eddc9a7
C
425 describe('Update my account', function () {
426 it('Should update my password', async function () {
427 await updateMyUser({
428 url: server.url,
429 accessToken: accessTokenUser,
430 currentPassword: 'super password',
431 newPassword: 'new password'
432 })
433 user.password = 'new password'
c5911fd3 434
1eddc9a7 435 await userLogin(server, user, 200)
c5911fd3
C
436 })
437
1eddc9a7
C
438 it('Should be able to change the NSFW display attribute', async function () {
439 await updateMyUser({
440 url: server.url,
441 accessToken: accessTokenUser,
442 nsfwPolicy: 'do_not_list'
443 })
444
445 const res = await getMyUserInformation(server.url, accessTokenUser)
446 const user = res.body
447
448 expect(user.username).to.equal('user_1')
449 expect(user.email).to.equal('user_1@example.com')
450 expect(user.nsfwPolicy).to.equal('do_not_list')
451 expect(user.videoQuota).to.equal(2 * 1024 * 1024)
452 expect(user.id).to.be.a('number')
453 expect(user.account.displayName).to.equal('user_1')
454 expect(user.account.description).to.be.null
455 })
c5911fd3 456
1eddc9a7
C
457 it('Should be able to change the autoPlayVideo attribute', async function () {
458 await updateMyUser({
459 url: server.url,
460 accessToken: accessTokenUser,
461 autoPlayVideo: false
462 })
c5911fd3 463
1eddc9a7
C
464 const res = await getMyUserInformation(server.url, accessTokenUser)
465 const user = res.body
466
467 expect(user.autoPlayVideo).to.be.false
ed56ad11
C
468 })
469
1eddc9a7
C
470 it('Should be able to change the email display attribute', async function () {
471 await updateMyUser({
472 url: server.url,
473 accessToken: accessTokenUser,
474 email: 'updated@example.com'
475 })
476
477 const res = await getMyUserInformation(server.url, accessTokenUser)
478 const user = res.body
479
480 expect(user.username).to.equal('user_1')
481 expect(user.email).to.equal('updated@example.com')
482 expect(user.nsfwPolicy).to.equal('do_not_list')
483 expect(user.videoQuota).to.equal(2 * 1024 * 1024)
484 expect(user.id).to.be.a('number')
485 expect(user.account.displayName).to.equal('user_1')
486 expect(user.account.description).to.be.null
487 })
ed56ad11 488
1eddc9a7
C
489 it('Should be able to update my avatar', async function () {
490 const fixture = 'avatar.png'
ed56ad11 491
1eddc9a7
C
492 await updateMyAvatar({
493 url: server.url,
494 accessToken: accessTokenUser,
495 fixture
496 })
2422c46b 497
1eddc9a7
C
498 const res = await getMyUserInformation(server.url, accessTokenUser)
499 const user = res.body
2422c46b 500
1eddc9a7
C
501 await testImage(server.url, 'avatar-resized', user.account.avatar.path, '.png')
502 })
503
504 it('Should be able to update my display name', async function () {
505 await updateMyUser({
506 url: server.url,
507 accessToken: accessTokenUser,
508 displayName: 'new display name'
509 })
510
511 const res = await getMyUserInformation(server.url, accessTokenUser)
512 const user = res.body
513
514 expect(user.username).to.equal('user_1')
515 expect(user.email).to.equal('updated@example.com')
516 expect(user.nsfwPolicy).to.equal('do_not_list')
517 expect(user.videoQuota).to.equal(2 * 1024 * 1024)
518 expect(user.id).to.be.a('number')
519 expect(user.account.displayName).to.equal('new display name')
520 expect(user.account.description).to.be.null
521 })
2422c46b 522
1eddc9a7
C
523 it('Should be able to update my description', async function () {
524 await updateMyUser({
525 url: server.url,
526 accessToken: accessTokenUser,
527 description: 'my super description updated'
528 })
529
530 const res = await getMyUserInformation(server.url, accessTokenUser)
531 const user = res.body
532
533 expect(user.username).to.equal('user_1')
534 expect(user.email).to.equal('updated@example.com')
535 expect(user.nsfwPolicy).to.equal('do_not_list')
536 expect(user.videoQuota).to.equal(2 * 1024 * 1024)
537 expect(user.id).to.be.a('number')
538 expect(user.account.displayName).to.equal('new display name')
539 expect(user.account.description).to.equal('my super description updated')
540 })
0e1dc3e7
C
541 })
542
1eddc9a7
C
543 describe('Updating another user', function () {
544
545 it('Should be able to update another user', async function () {
546 await updateUser({
547 url: server.url,
548 userId,
549 accessToken,
550 email: 'updated2@example.com',
551 emailVerified: true,
552 videoQuota: 42,
553 role: UserRole.MODERATOR,
554 adminFlags: UserAdminFlag.NONE
555 })
556
557 const res = await getUserInformation(server.url, accessToken, userId)
558 const user = res.body
559
560 expect(user.username).to.equal('user_1')
561 expect(user.email).to.equal('updated2@example.com')
562 expect(user.emailVerified).to.be.true
563 expect(user.nsfwPolicy).to.equal('do_not_list')
564 expect(user.videoQuota).to.equal(42)
565 expect(user.roleLabel).to.equal('Moderator')
566 expect(user.id).to.be.a('number')
567 expect(user.adminFlags).to.equal(UserAdminFlag.NONE)
568 })
f8b8c36b 569
1eddc9a7
C
570 it('Should have removed the user token', async function () {
571 await getMyUserVideoQuotaUsed(server.url, accessTokenUser, 401)
f8b8c36b 572
1eddc9a7 573 accessTokenUser = await userLogin(server, user)
b426edd4
C
574 })
575
1eddc9a7
C
576 it('Should be able to update another user password', async function () {
577 await updateUser({
578 url: server.url,
579 userId,
580 accessToken,
581 password: 'password updated'
582 })
b426edd4 583
1eddc9a7 584 await getMyUserVideoQuotaUsed(server.url, accessTokenUser, 401)
b426edd4 585
1eddc9a7 586 await userLogin(server, user, 400)
b426edd4 587
1eddc9a7
C
588 user.password = 'password updated'
589 accessTokenUser = await userLogin(server, user)
590 })
757f0da3
C
591 })
592
1eddc9a7
C
593 describe('Video blacklists', function () {
594 it('Should be able to list video blacklist by a moderator', async function () {
595 await getBlacklistedVideosList({ url: server.url, token: accessTokenUser })
596 })
0e1dc3e7
C
597 })
598
1eddc9a7
C
599 describe('Remove a user', function () {
600 it('Should be able to remove this user', async function () {
601 await removeUser(server.url, userId, accessToken)
602 })
0e1dc3e7 603
1eddc9a7
C
604 it('Should not be able to login with this user', async function () {
605 await userLogin(server, user, 400)
606 })
0e1dc3e7 607
1eddc9a7
C
608 it('Should not have videos of this user', async function () {
609 const res = await getVideosList(server.url)
0e1dc3e7 610
1eddc9a7 611 expect(res.body.total).to.equal(1)
0e1dc3e7 612
1eddc9a7
C
613 const video = res.body.data[ 0 ]
614 expect(video.account.name).to.equal('root')
615 })
0e1dc3e7
C
616 })
617
1eddc9a7
C
618 describe('Registering a new user', function () {
619 it('Should register a new user', async function () {
620 await registerUser(server.url, 'user_15', 'my super password')
621 })
0e1dc3e7 622
1eddc9a7
C
623 it('Should be able to login with this registered user', async function () {
624 const user15 = {
625 username: 'user_15',
626 password: 'my super password'
627 }
5c98d3bf 628
1eddc9a7
C
629 accessToken = await userLogin(server, user15)
630 })
5c98d3bf 631
1eddc9a7
C
632 it('Should have the correct video quota', async function () {
633 const res = await getMyUserInformation(server.url, accessToken)
634 const user = res.body
0e1dc3e7 635
1eddc9a7
C
636 expect(user.videoQuota).to.equal(5 * 1024 * 1024)
637 })
92b9d60c 638
1eddc9a7
C
639 it('Should remove me', async function () {
640 {
641 const res = await getUsersList(server.url, server.accessToken)
642 expect(res.body.data.find(u => u.username === 'user_15')).to.not.be.undefined
643 }
92b9d60c 644
1eddc9a7
C
645 await deleteMe(server.url, accessToken)
646
647 {
648 const res = await getUsersList(server.url, server.accessToken)
649 expect(res.body.data.find(u => u.username === 'user_15')).to.be.undefined
650 }
651 })
92b9d60c
C
652 })
653
1eddc9a7
C
654 describe('User blocking', function () {
655 it('Should block and unblock a user', async function () {
656 const user16 = {
657 username: 'user_16',
658 password: 'my super password'
659 }
660 const resUser = await createUser({
661 url: server.url,
662 accessToken: server.accessToken,
663 username: user16.username,
664 password: user16.password
665 })
666 const user16Id = resUser.body.user.id
e6921918 667
1eddc9a7 668 accessToken = await userLogin(server, user16)
e6921918 669
1eddc9a7
C
670 await getMyUserInformation(server.url, accessToken, 200)
671 await blockUser(server.url, user16Id, server.accessToken)
e6921918 672
1eddc9a7
C
673 await getMyUserInformation(server.url, accessToken, 401)
674 await userLogin(server, user16, 400)
e6921918 675
1eddc9a7
C
676 await unblockUser(server.url, user16Id, server.accessToken)
677 accessToken = await userLogin(server, user16)
678 await getMyUserInformation(server.url, accessToken, 200)
679 })
e6921918
C
680 })
681
0e1dc3e7
C
682 after(async function () {
683 killallServers([ server ])
684
685 // Keep the logs if the test failed
afffe988 686 if (this[ 'ok' ]) {
0e1dc3e7
C
687 await flushTests()
688 }
689 })
690})