diff options
Diffstat (limited to 'server/tests/api/check-params/users.ts')
-rw-r--r-- | server/tests/api/check-params/users.ts | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/server/tests/api/check-params/users.ts b/server/tests/api/check-params/users.ts index 2fea2cbd5..3e53c445d 100644 --- a/server/tests/api/check-params/users.ts +++ b/server/tests/api/check-params/users.ts | |||
@@ -1,10 +1,10 @@ | |||
1 | /* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */ | 1 | /* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */ |
2 | 2 | ||
3 | import { omit } from 'lodash' | ||
4 | import 'mocha' | 3 | import 'mocha' |
4 | import { expect } from 'chai' | ||
5 | import { omit } from 'lodash' | ||
5 | import { join } from 'path' | 6 | import { join } from 'path' |
6 | import { User, UserRole, VideoImport, VideoImportState } from '../../../../shared' | 7 | import { User, UserRole, VideoImport, VideoImportState } from '../../../../shared' |
7 | |||
8 | import { | 8 | import { |
9 | addVideoChannel, | 9 | addVideoChannel, |
10 | blockUser, | 10 | blockUser, |
@@ -31,17 +31,16 @@ import { | |||
31 | uploadVideo, | 31 | uploadVideo, |
32 | userLogin | 32 | userLogin |
33 | } from '../../../../shared/extra-utils' | 33 | } from '../../../../shared/extra-utils' |
34 | import { MockSmtpServer } from '../../../../shared/extra-utils/miscs/email' | ||
34 | import { | 35 | import { |
35 | checkBadCountPagination, | 36 | checkBadCountPagination, |
36 | checkBadSortPagination, | 37 | checkBadSortPagination, |
37 | checkBadStartPagination | 38 | checkBadStartPagination |
38 | } from '../../../../shared/extra-utils/requests/check-api-params' | 39 | } from '../../../../shared/extra-utils/requests/check-api-params' |
39 | import { getMagnetURI, getMyVideoImports, getYoutubeVideoUrl, importVideo } from '../../../../shared/extra-utils/videos/video-imports' | ||
40 | import { VideoPrivacy } from '../../../../shared/models/videos' | ||
41 | import { waitJobs } from '../../../../shared/extra-utils/server/jobs' | 40 | import { waitJobs } from '../../../../shared/extra-utils/server/jobs' |
42 | import { expect } from 'chai' | 41 | import { getMagnetURI, getMyVideoImports, getGoodVideoUrl, importVideo } from '../../../../shared/extra-utils/videos/video-imports' |
43 | import { UserAdminFlag } from '../../../../shared/models/users/user-flag.model' | 42 | import { UserAdminFlag } from '../../../../shared/models/users/user-flag.model' |
44 | import { MockSmtpServer } from '../../../../shared/extra-utils/miscs/email' | 43 | import { VideoPrivacy } from '../../../../shared/models/videos' |
45 | 44 | ||
46 | describe('Test users API validators', function () { | 45 | describe('Test users API validators', function () { |
47 | const path = '/api/v1/users/' | 46 | const path = '/api/v1/users/' |
@@ -1047,7 +1046,7 @@ describe('Test users API validators', function () { | |||
1047 | channelId: 1, | 1046 | channelId: 1, |
1048 | privacy: VideoPrivacy.PUBLIC | 1047 | privacy: VideoPrivacy.PUBLIC |
1049 | } | 1048 | } |
1050 | await importVideo(server.url, server.accessToken, immutableAssign(baseAttributes, { targetUrl: getYoutubeVideoUrl() })) | 1049 | await importVideo(server.url, server.accessToken, immutableAssign(baseAttributes, { targetUrl: getGoodVideoUrl() })) |
1051 | await importVideo(server.url, server.accessToken, immutableAssign(baseAttributes, { magnetUri: getMagnetURI() })) | 1050 | await importVideo(server.url, server.accessToken, immutableAssign(baseAttributes, { magnetUri: getMagnetURI() })) |
1052 | await importVideo(server.url, server.accessToken, immutableAssign(baseAttributes, { torrentfile: 'video-720p.torrent' as any })) | 1051 | await importVideo(server.url, server.accessToken, immutableAssign(baseAttributes, { torrentfile: 'video-720p.torrent' as any })) |
1053 | 1052 | ||