diff options
Diffstat (limited to 'server/tests/api')
-rw-r--r-- | server/tests/api/check-params/users.ts | 2 | ||||
-rw-r--r-- | server/tests/api/server/follows.ts | 24 | ||||
-rw-r--r-- | server/tests/api/users/users-multiple-servers.ts | 66 | ||||
-rw-r--r-- | server/tests/api/users/users.ts | 4 | ||||
-rw-r--r-- | server/tests/api/videos/multiple-servers.ts | 14 | ||||
-rw-r--r-- | server/tests/api/videos/single-server.ts | 17 | ||||
-rw-r--r-- | server/tests/api/videos/video-comments.ts | 4 |
7 files changed, 101 insertions, 30 deletions
diff --git a/server/tests/api/check-params/users.ts b/server/tests/api/check-params/users.ts index 14fcf8703..0c9d933a7 100644 --- a/server/tests/api/check-params/users.ts +++ b/server/tests/api/check-params/users.ts | |||
@@ -185,7 +185,7 @@ describe('Test users API validators', function () { | |||
185 | path, | 185 | path, |
186 | token: server.accessToken, | 186 | token: server.accessToken, |
187 | fields: baseCorrectParams, | 187 | fields: baseCorrectParams, |
188 | statusCodeExpected: 204 | 188 | statusCodeExpected: 200 |
189 | }) | 189 | }) |
190 | }) | 190 | }) |
191 | 191 | ||
diff --git a/server/tests/api/server/follows.ts b/server/tests/api/server/follows.ts index fad58e840..ac614d605 100644 --- a/server/tests/api/server/follows.ts +++ b/server/tests/api/server/follows.ts | |||
@@ -4,7 +4,7 @@ import * as chai from 'chai' | |||
4 | import 'mocha' | 4 | import 'mocha' |
5 | import { Video, VideoPrivacy } from '../../../../shared/models/videos' | 5 | import { Video, VideoPrivacy } from '../../../../shared/models/videos' |
6 | import { VideoComment, VideoCommentThreadTree } from '../../../../shared/models/videos/video-comment.model' | 6 | import { VideoComment, VideoCommentThreadTree } from '../../../../shared/models/videos/video-comment.model' |
7 | import { completeVideoCheck } from '../../utils' | 7 | import { checkVideoFilesWereRemoved, completeVideoCheck, getVideoChannelsList } from '../../utils' |
8 | 8 | ||
9 | import { | 9 | import { |
10 | flushAndRunMultipleServers, flushTests, getVideosList, killallServers, ServerInfo, setAccessTokensToServers, uploadVideo, | 10 | flushAndRunMultipleServers, flushTests, getVideosList, killallServers, ServerInfo, setAccessTokensToServers, uploadVideo, |
@@ -12,7 +12,7 @@ import { | |||
12 | } from '../../utils/index' | 12 | } from '../../utils/index' |
13 | import { dateIsValid } from '../../utils/miscs/miscs' | 13 | import { dateIsValid } from '../../utils/miscs/miscs' |
14 | import { follow, getFollowersListPaginationAndSort, getFollowingListPaginationAndSort, unfollow } from '../../utils/server/follows' | 14 | import { follow, getFollowersListPaginationAndSort, getFollowingListPaginationAndSort, unfollow } from '../../utils/server/follows' |
15 | import { expectAccountFollows } from '../../utils/users/accounts' | 15 | import { expectAccountFollows, getAccountsList } from '../../utils/users/accounts' |
16 | import { userLogin } from '../../utils/users/login' | 16 | import { userLogin } from '../../utils/users/login' |
17 | import { createUser } from '../../utils/users/users' | 17 | import { createUser } from '../../utils/users/users' |
18 | import { | 18 | import { |
@@ -343,6 +343,26 @@ describe('Test follows', function () { | |||
343 | expect(secondChild.comment.text).to.equal('my second answer to thread 1') | 343 | expect(secondChild.comment.text).to.equal('my second answer to thread 1') |
344 | expect(secondChild.children).to.have.lengthOf(0) | 344 | expect(secondChild.children).to.have.lengthOf(0) |
345 | }) | 345 | }) |
346 | |||
347 | it('Should unfollow server 3 on server 1 and does not list server 3 videos', async function () { | ||
348 | this.timeout(5000) | ||
349 | |||
350 | await unfollow(servers[0].url, servers[0].accessToken, servers[2]) | ||
351 | |||
352 | await wait(3000) | ||
353 | |||
354 | let res = await getVideosList(servers[ 0 ].url) | ||
355 | expect(res.body.total).to.equal(1) | ||
356 | |||
357 | res = await getVideoChannelsList(servers[0].url, 0, 1) | ||
358 | expect(res.body.total).to.equal(2) | ||
359 | |||
360 | res = await getAccountsList(servers[0].url) | ||
361 | expect(res.body.total).to.equal(2) | ||
362 | |||
363 | await checkVideoFilesWereRemoved(video4.uuid, servers[0].serverNumber) | ||
364 | }) | ||
365 | |||
346 | }) | 366 | }) |
347 | 367 | ||
348 | after(async function () { | 368 | after(async function () { |
diff --git a/server/tests/api/users/users-multiple-servers.ts b/server/tests/api/users/users-multiple-servers.ts index 1c7f011a8..0483b9c3d 100644 --- a/server/tests/api/users/users-multiple-servers.ts +++ b/server/tests/api/users/users-multiple-servers.ts | |||
@@ -3,18 +3,20 @@ | |||
3 | import * as chai from 'chai' | 3 | import * as chai from 'chai' |
4 | import 'mocha' | 4 | import 'mocha' |
5 | import { Account } from '../../../../shared/models/actors' | 5 | import { Account } from '../../../../shared/models/actors' |
6 | import { doubleFollow, flushAndRunMultipleServers, wait } from '../../utils' | 6 | import { checkVideoFilesWereRemoved, createUser, doubleFollow, flushAndRunMultipleServers, removeUser, userLogin, wait } from '../../utils' |
7 | import { | 7 | import { flushTests, getMyUserInformation, killallServers, ServerInfo, testImage, updateMyAvatar, uploadVideo } from '../../utils/index' |
8 | flushTests, getMyUserInformation, killallServers, ServerInfo, testVideoImage, updateMyAvatar, | 8 | import { checkActorFilesWereRemoved, getAccount, getAccountsList } from '../../utils/users/accounts' |
9 | uploadVideo | ||
10 | } from '../../utils/index' | ||
11 | import { getAccount, getAccountsList } from '../../utils/users/accounts' | ||
12 | import { setAccessTokensToServers } from '../../utils/users/login' | 9 | import { setAccessTokensToServers } from '../../utils/users/login' |
13 | 10 | ||
14 | const expect = chai.expect | 11 | const expect = chai.expect |
15 | 12 | ||
16 | describe('Test users with multiple servers', function () { | 13 | describe('Test users with multiple servers', function () { |
17 | let servers: ServerInfo[] = [] | 14 | let servers: ServerInfo[] = [] |
15 | let user | ||
16 | let userUUID | ||
17 | let userId | ||
18 | let videoUUID | ||
19 | let userAccessToken | ||
18 | 20 | ||
19 | before(async function () { | 21 | before(async function () { |
20 | this.timeout(120000) | 22 | this.timeout(120000) |
@@ -34,6 +36,18 @@ describe('Test users with multiple servers', function () { | |||
34 | // The root user of server 1 is propagated to servers 2 and 3 | 36 | // The root user of server 1 is propagated to servers 2 and 3 |
35 | await uploadVideo(servers[0].url, servers[0].accessToken, {}) | 37 | await uploadVideo(servers[0].url, servers[0].accessToken, {}) |
36 | 38 | ||
39 | const user = { | ||
40 | username: 'user1', | ||
41 | password: 'password' | ||
42 | } | ||
43 | const resUser = await createUser(servers[0].url, servers[0].accessToken, user.username, user.password) | ||
44 | userUUID = resUser.body.user.uuid | ||
45 | userId = resUser.body.user.id | ||
46 | userAccessToken = await userLogin(servers[0], user) | ||
47 | |||
48 | const resVideo = await uploadVideo(servers[0].url, userAccessToken, {}) | ||
49 | videoUUID = resVideo.body.uuid | ||
50 | |||
37 | await wait(5000) | 51 | await wait(5000) |
38 | }) | 52 | }) |
39 | 53 | ||
@@ -49,9 +63,9 @@ describe('Test users with multiple servers', function () { | |||
49 | }) | 63 | }) |
50 | 64 | ||
51 | const res = await getMyUserInformation(servers[0].url, servers[0].accessToken) | 65 | const res = await getMyUserInformation(servers[0].url, servers[0].accessToken) |
52 | const user = res.body | 66 | user = res.body |
53 | 67 | ||
54 | const test = await testVideoImage(servers[0].url, 'avatar2-resized', user.account.avatar.path, '.png') | 68 | const test = await testImage(servers[0].url, 'avatar2-resized', user.account.avatar.path, '.png') |
55 | expect(test).to.equal(true) | 69 | expect(test).to.equal(true) |
56 | 70 | ||
57 | await wait(5000) | 71 | await wait(5000) |
@@ -69,11 +83,45 @@ describe('Test users with multiple servers', function () { | |||
69 | expect(rootServer1Get.name).to.equal('root') | 83 | expect(rootServer1Get.name).to.equal('root') |
70 | expect(rootServer1Get.host).to.equal('localhost:9001') | 84 | expect(rootServer1Get.host).to.equal('localhost:9001') |
71 | 85 | ||
72 | const test = await testVideoImage(server.url, 'avatar2-resized', rootServer1Get.avatar.path, '.png') | 86 | const test = await testImage(server.url, 'avatar2-resized', rootServer1Get.avatar.path, '.png') |
73 | expect(test).to.equal(true) | 87 | expect(test).to.equal(true) |
74 | } | 88 | } |
75 | }) | 89 | }) |
76 | 90 | ||
91 | it('Should remove the user', async function () { | ||
92 | this.timeout(10000) | ||
93 | |||
94 | for (const server of servers) { | ||
95 | const resAccounts = await getAccountsList(server.url, '-createdAt') | ||
96 | |||
97 | const userServer1List = resAccounts.body.data.find(a => a.name === 'user1' && a.host === 'localhost:9001') as Account | ||
98 | expect(userServer1List).not.to.be.undefined | ||
99 | } | ||
100 | |||
101 | await removeUser(servers[0].url, userId, servers[0].accessToken) | ||
102 | |||
103 | await wait(5000) | ||
104 | |||
105 | for (const server of servers) { | ||
106 | const resAccounts = await getAccountsList(server.url, '-createdAt') | ||
107 | |||
108 | const userServer1List = resAccounts.body.data.find(a => a.name === 'user1' && a.host === 'localhost:9001') as Account | ||
109 | expect(userServer1List).to.be.undefined | ||
110 | } | ||
111 | }) | ||
112 | |||
113 | it('Should not have actor files', async () => { | ||
114 | for (const server of servers) { | ||
115 | await checkActorFilesWereRemoved(userUUID, server.serverNumber) | ||
116 | } | ||
117 | }) | ||
118 | |||
119 | it('Should not have video files', async () => { | ||
120 | for (const server of servers) { | ||
121 | await checkVideoFilesWereRemoved(videoUUID, server.serverNumber) | ||
122 | } | ||
123 | }) | ||
124 | |||
77 | after(async function () { | 125 | after(async function () { |
78 | killallServers(servers) | 126 | killallServers(servers) |
79 | 127 | ||
diff --git a/server/tests/api/users/users.ts b/server/tests/api/users/users.ts index b788637e7..d8004ff24 100644 --- a/server/tests/api/users/users.ts +++ b/server/tests/api/users/users.ts | |||
@@ -7,7 +7,7 @@ import { | |||
7 | createUser, flushTests, getBlacklistedVideosList, getMyUserInformation, getMyUserVideoQuotaUsed, getMyUserVideoRating, getUserInformation, | 7 | createUser, flushTests, getBlacklistedVideosList, getMyUserInformation, getMyUserVideoQuotaUsed, getMyUserVideoRating, getUserInformation, |
8 | getUsersList, | 8 | getUsersList, |
9 | getUsersListPaginationAndSort, getVideosList, killallServers, login, makePutBodyRequest, rateVideo, registerUser, removeUser, removeVideo, | 9 | getUsersListPaginationAndSort, getVideosList, killallServers, login, makePutBodyRequest, rateVideo, registerUser, removeUser, removeVideo, |
10 | runServer, ServerInfo, serverLogin, testVideoImage, updateMyAvatar, updateMyUser, updateUser, uploadVideo | 10 | runServer, ServerInfo, serverLogin, testImage, updateMyAvatar, updateMyUser, updateUser, uploadVideo |
11 | } from '../../utils/index' | 11 | } from '../../utils/index' |
12 | import { follow } from '../../utils/server/follows' | 12 | import { follow } from '../../utils/server/follows' |
13 | import { setAccessTokensToServers } from '../../utils/users/login' | 13 | import { setAccessTokensToServers } from '../../utils/users/login' |
@@ -361,7 +361,7 @@ describe('Test users', function () { | |||
361 | const res = await getMyUserInformation(server.url, accessTokenUser) | 361 | const res = await getMyUserInformation(server.url, accessTokenUser) |
362 | const user = res.body | 362 | const user = res.body |
363 | 363 | ||
364 | const test = await testVideoImage(server.url, 'avatar-resized', user.account.avatar.path, '.png') | 364 | const test = await testImage(server.url, 'avatar-resized', user.account.avatar.path, '.png') |
365 | expect(test).to.equal(true) | 365 | expect(test).to.equal(true) |
366 | }) | 366 | }) |
367 | 367 | ||
diff --git a/server/tests/api/videos/multiple-servers.ts b/server/tests/api/videos/multiple-servers.ts index 6712829d4..4c4b5123d 100644 --- a/server/tests/api/videos/multiple-servers.ts +++ b/server/tests/api/videos/multiple-servers.ts | |||
@@ -8,8 +8,9 @@ import { VideoPrivacy } from '../../../../shared/models/videos' | |||
8 | import { VideoComment, VideoCommentThreadTree } from '../../../../shared/models/videos/video-comment.model' | 8 | import { VideoComment, VideoCommentThreadTree } from '../../../../shared/models/videos/video-comment.model' |
9 | 9 | ||
10 | import { | 10 | import { |
11 | addVideoChannel, completeVideoCheck, createUser, dateIsValid, doubleFollow, flushAndRunMultipleServers, flushTests, getVideo, | 11 | addVideoChannel, checkVideoFilesWereRemoved, completeVideoCheck, createUser, dateIsValid, doubleFollow, flushAndRunMultipleServers, |
12 | getVideoChannelsList, getVideosList, killallServers, rateVideo, removeVideo, ServerInfo, setAccessTokensToServers, testVideoImage, | 12 | flushTests, getVideo, |
13 | getVideoChannelsList, getVideosList, killallServers, rateVideo, removeVideo, ServerInfo, setAccessTokensToServers, testImage, | ||
13 | updateVideo, uploadVideo, userLogin, viewVideo, wait, webtorrentAdd | 14 | updateVideo, uploadVideo, userLogin, viewVideo, wait, webtorrentAdd |
14 | } from '../../utils' | 15 | } from '../../utils' |
15 | import { | 16 | import { |
@@ -578,6 +579,13 @@ describe('Test multiple servers', function () { | |||
578 | await wait(5000) | 579 | await wait(5000) |
579 | }) | 580 | }) |
580 | 581 | ||
582 | it('Should not have files of videos 3 and 3-2 on each server', async function () { | ||
583 | for (const server of servers) { | ||
584 | await checkVideoFilesWereRemoved(toRemove[0].uuid, server.serverNumber) | ||
585 | await checkVideoFilesWereRemoved(toRemove[1].uuid, server.serverNumber) | ||
586 | } | ||
587 | }) | ||
588 | |||
581 | it('Should have videos 1 and 3 on each server', async function () { | 589 | it('Should have videos 1 and 3 on each server', async function () { |
582 | for (const server of servers) { | 590 | for (const server of servers) { |
583 | const res = await getVideosList(server.url) | 591 | const res = await getVideosList(server.url) |
@@ -624,7 +632,7 @@ describe('Test multiple servers', function () { | |||
624 | const res = await getVideo(server.url, videoUUID) | 632 | const res = await getVideo(server.url, videoUUID) |
625 | const video = res.body | 633 | const video = res.body |
626 | 634 | ||
627 | const test = await testVideoImage(server.url, 'video_short1-preview.webm', video.previewPath) | 635 | const test = await testImage(server.url, 'video_short1-preview.webm', video.previewPath) |
628 | expect(test).to.equal(true) | 636 | expect(test).to.equal(true) |
629 | } | 637 | } |
630 | }) | 638 | }) |
diff --git a/server/tests/api/videos/single-server.ts b/server/tests/api/videos/single-server.ts index ca20f39a0..76d265ec5 100644 --- a/server/tests/api/videos/single-server.ts +++ b/server/tests/api/videos/single-server.ts | |||
@@ -3,13 +3,12 @@ | |||
3 | import * as chai from 'chai' | 3 | import * as chai from 'chai' |
4 | import { keyBy } from 'lodash' | 4 | import { keyBy } from 'lodash' |
5 | import 'mocha' | 5 | import 'mocha' |
6 | import { join } from 'path' | ||
7 | import { VideoPrivacy } from '../../../../shared/models/videos' | 6 | import { VideoPrivacy } from '../../../../shared/models/videos' |
8 | import { readdirPromise } from '../../../helpers/core-utils' | ||
9 | import { | 7 | import { |
10 | completeVideoCheck, flushTests, getVideo, getVideoCategories, getVideoLanguages, getVideoLicences, getVideoPrivacies, | 8 | checkVideoFilesWereRemoved, completeVideoCheck, flushTests, getVideo, getVideoCategories, getVideoLanguages, getVideoLicences, |
11 | getVideosList, getVideosListPagination, getVideosListSort, killallServers, rateVideo, removeVideo, runServer, searchVideo, | 9 | getVideoPrivacies, getVideosList, getVideosListPagination, getVideosListSort, killallServers, rateVideo, removeVideo, runServer, |
12 | searchVideoWithPagination, searchVideoWithSort, ServerInfo, setAccessTokensToServers, testVideoImage, updateVideo, uploadVideo, viewVideo | 10 | searchVideo, searchVideoWithPagination, searchVideoWithSort, ServerInfo, setAccessTokensToServers, testImage, updateVideo, uploadVideo, |
11 | viewVideo | ||
13 | } from '../../utils' | 12 | } from '../../utils' |
14 | 13 | ||
15 | const expect = chai.expect | 14 | const expect = chai.expect |
@@ -277,11 +276,7 @@ describe('Test a single server', function () { | |||
277 | it('Should remove the video', async function () { | 276 | it('Should remove the video', async function () { |
278 | await removeVideo(server.url, server.accessToken, videoId) | 277 | await removeVideo(server.url, server.accessToken, videoId) |
279 | 278 | ||
280 | const files1 = await readdirPromise(join(__dirname, '..', '..', '..', '..', 'test1', 'videos')) | 279 | await checkVideoFilesWereRemoved(videoUUID, 1) |
281 | expect(files1).to.have.lengthOf(0) | ||
282 | |||
283 | const files2 = await readdirPromise(join(__dirname, '..', '..', '..', '..', 'test1', 'thumbnails')) | ||
284 | expect(files2).to.have.lengthOf(0) | ||
285 | }) | 280 | }) |
286 | 281 | ||
287 | it('Should not have videos', async function () { | 282 | it('Should not have videos', async function () { |
@@ -346,7 +341,7 @@ describe('Test a single server', function () { | |||
346 | 341 | ||
347 | for (const video of videos) { | 342 | for (const video of videos) { |
348 | const videoName = video.name.replace(' name', '') | 343 | const videoName = video.name.replace(' name', '') |
349 | const test = await testVideoImage(server.url, videoName, video.thumbnailPath) | 344 | const test = await testImage(server.url, videoName, video.thumbnailPath) |
350 | 345 | ||
351 | expect(test).to.equal(true) | 346 | expect(test).to.equal(true) |
352 | } | 347 | } |
diff --git a/server/tests/api/videos/video-comments.ts b/server/tests/api/videos/video-comments.ts index 18d484ccf..0eddac35b 100644 --- a/server/tests/api/videos/video-comments.ts +++ b/server/tests/api/videos/video-comments.ts | |||
@@ -3,7 +3,7 @@ | |||
3 | import * as chai from 'chai' | 3 | import * as chai from 'chai' |
4 | import 'mocha' | 4 | import 'mocha' |
5 | import { VideoComment, VideoCommentThreadTree } from '../../../../shared/models/videos/video-comment.model' | 5 | import { VideoComment, VideoCommentThreadTree } from '../../../../shared/models/videos/video-comment.model' |
6 | import { testVideoImage } from '../../utils' | 6 | import { testImage } from '../../utils' |
7 | import { | 7 | import { |
8 | dateIsValid, flushTests, killallServers, runServer, ServerInfo, setAccessTokensToServers, updateMyAvatar, | 8 | dateIsValid, flushTests, killallServers, runServer, ServerInfo, setAccessTokensToServers, updateMyAvatar, |
9 | uploadVideo | 9 | uploadVideo |
@@ -83,7 +83,7 @@ describe('Test video comments', function () { | |||
83 | expect(comment.account.name).to.equal('root') | 83 | expect(comment.account.name).to.equal('root') |
84 | expect(comment.account.host).to.equal('localhost:9001') | 84 | expect(comment.account.host).to.equal('localhost:9001') |
85 | 85 | ||
86 | const test = await testVideoImage(server.url, 'avatar-resized', comment.account.avatar.path, '.png') | 86 | const test = await testImage(server.url, 'avatar-resized', comment.account.avatar.path, '.png') |
87 | expect(test).to.equal(true) | 87 | expect(test).to.equal(true) |
88 | 88 | ||
89 | expect(comment.totalReplies).to.equal(0) | 89 | expect(comment.totalReplies).to.equal(0) |