Move utils to /shared
Move utils used by /server/tools/* & /server/tests/**/* into /shared folder. Issue: #1336
This commit is contained in:
parent
71607e4a65
commit
9639bd1757
|
@ -2,7 +2,14 @@
|
|||
|
||||
import * as chai from 'chai'
|
||||
import 'mocha'
|
||||
import { flushTests, killallServers, makeActivityPubGetRequest, runServer, ServerInfo, setAccessTokensToServers } from './utils'
|
||||
import {
|
||||
flushTests,
|
||||
killallServers,
|
||||
makeActivityPubGetRequest,
|
||||
runServer,
|
||||
ServerInfo,
|
||||
setAccessTokensToServers
|
||||
} from '../../shared/utils'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -2,9 +2,13 @@
|
|||
|
||||
import 'mocha'
|
||||
|
||||
import { flushTests, killallServers, runServer, ServerInfo } from '../../utils'
|
||||
import { checkBadCountPagination, checkBadSortPagination, checkBadStartPagination } from '../../utils/requests/check-api-params'
|
||||
import { getAccount } from '../../utils/users/accounts'
|
||||
import { flushTests, killallServers, runServer, ServerInfo } from '../../../../shared/utils'
|
||||
import {
|
||||
checkBadCountPagination,
|
||||
checkBadSortPagination,
|
||||
checkBadStartPagination
|
||||
} from '../../../../shared/utils/requests/check-api-params'
|
||||
import { getAccount } from '../../../../shared/utils/users/accounts'
|
||||
|
||||
describe('Test users API validators', function () {
|
||||
const path = '/api/v1/accounts/'
|
||||
|
|
|
@ -13,8 +13,12 @@ import {
|
|||
makePostBodyRequest,
|
||||
ServerInfo,
|
||||
setAccessTokensToServers, userLogin
|
||||
} from '../../utils'
|
||||
import { checkBadCountPagination, checkBadSortPagination, checkBadStartPagination } from '../../utils/requests/check-api-params'
|
||||
} from '../../../../shared/utils'
|
||||
import {
|
||||
checkBadCountPagination,
|
||||
checkBadSortPagination,
|
||||
checkBadStartPagination
|
||||
} from '../../../../shared/utils/requests/check-api-params'
|
||||
|
||||
describe('Test blocklist API validators', function () {
|
||||
let servers: ServerInfo[]
|
||||
|
|
|
@ -7,7 +7,7 @@ import { CustomConfig } from '../../../../shared/models/server/custom-config.mod
|
|||
import {
|
||||
createUser, flushTests, killallServers, makeDeleteRequest, makeGetRequest, makePutBodyRequest, runServer, ServerInfo,
|
||||
setAccessTokensToServers, userLogin, immutableAssign
|
||||
} from '../../utils'
|
||||
} from '../../../../shared/utils'
|
||||
|
||||
describe('Test config API validators', function () {
|
||||
const path = '/api/v1/config/custom'
|
||||
|
|
|
@ -5,8 +5,12 @@ import 'mocha'
|
|||
import {
|
||||
createUser, flushTests, killallServers, makeDeleteRequest, makePostBodyRequest, runServer, ServerInfo, setAccessTokensToServers,
|
||||
userLogin
|
||||
} from '../../utils'
|
||||
import { checkBadCountPagination, checkBadSortPagination, checkBadStartPagination } from '../../utils/requests/check-api-params'
|
||||
} from '../../../../shared/utils'
|
||||
import {
|
||||
checkBadCountPagination,
|
||||
checkBadSortPagination,
|
||||
checkBadStartPagination
|
||||
} from '../../../../shared/utils/requests/check-api-params'
|
||||
|
||||
describe('Test server follows API validators', function () {
|
||||
let server: ServerInfo
|
||||
|
|
|
@ -2,9 +2,21 @@
|
|||
|
||||
import 'mocha'
|
||||
|
||||
import { createUser, flushTests, killallServers, runServer, ServerInfo, setAccessTokensToServers, userLogin } from '../../utils'
|
||||
import { checkBadCountPagination, checkBadSortPagination, checkBadStartPagination } from '../../utils/requests/check-api-params'
|
||||
import { makeGetRequest } from '../../utils/requests/requests'
|
||||
import {
|
||||
createUser,
|
||||
flushTests,
|
||||
killallServers,
|
||||
runServer,
|
||||
ServerInfo,
|
||||
setAccessTokensToServers,
|
||||
userLogin
|
||||
} from '../../../../shared/utils'
|
||||
import {
|
||||
checkBadCountPagination,
|
||||
checkBadSortPagination,
|
||||
checkBadStartPagination
|
||||
} from '../../../../shared/utils/requests/check-api-params'
|
||||
import { makeGetRequest } from '../../../../shared/utils/requests/requests'
|
||||
|
||||
describe('Test jobs API validators', function () {
|
||||
const path = '/api/v1/jobs/failed'
|
||||
|
|
|
@ -12,7 +12,7 @@ import {
|
|||
ServerInfo,
|
||||
setAccessTokensToServers,
|
||||
userLogin
|
||||
} from '../../utils'
|
||||
} from '../../../../shared/utils'
|
||||
|
||||
describe('Test server redundancy API validators', function () {
|
||||
let servers: ServerInfo[]
|
||||
|
|
|
@ -2,8 +2,12 @@
|
|||
|
||||
import 'mocha'
|
||||
|
||||
import { flushTests, immutableAssign, killallServers, makeGetRequest, runServer, ServerInfo } from '../../utils'
|
||||
import { checkBadCountPagination, checkBadSortPagination, checkBadStartPagination } from '../../utils/requests/check-api-params'
|
||||
import { flushTests, immutableAssign, killallServers, makeGetRequest, runServer, ServerInfo } from '../../../../shared/utils'
|
||||
import {
|
||||
checkBadCountPagination,
|
||||
checkBadSortPagination,
|
||||
checkBadStartPagination
|
||||
} from '../../../../shared/utils/requests/check-api-params'
|
||||
|
||||
describe('Test videos API validator', function () {
|
||||
let server: ServerInfo
|
||||
|
|
|
@ -2,7 +2,15 @@
|
|||
|
||||
import 'mocha'
|
||||
|
||||
import { flushTests, killallServers, makeGetRequest, runServer, ServerInfo, setAccessTokensToServers, uploadVideo } from '../../utils'
|
||||
import {
|
||||
flushTests,
|
||||
killallServers,
|
||||
makeGetRequest,
|
||||
runServer,
|
||||
ServerInfo,
|
||||
setAccessTokensToServers,
|
||||
uploadVideo
|
||||
} from '../../../../shared/utils'
|
||||
|
||||
describe('Test services API validators', function () {
|
||||
let server: ServerInfo
|
||||
|
|
|
@ -13,8 +13,12 @@ import {
|
|||
ServerInfo,
|
||||
setAccessTokensToServers,
|
||||
userLogin
|
||||
} from '../../utils'
|
||||
import { checkBadCountPagination, checkBadSortPagination, checkBadStartPagination } from '../../utils/requests/check-api-params'
|
||||
} from '../../../../shared/utils'
|
||||
import {
|
||||
checkBadCountPagination,
|
||||
checkBadSortPagination,
|
||||
checkBadStartPagination
|
||||
} from '../../../../shared/utils/requests/check-api-params'
|
||||
|
||||
describe('Test user subscriptions API validators', function () {
|
||||
const path = '/api/v1/users/me/subscriptions'
|
||||
|
|
|
@ -9,11 +9,15 @@ import {
|
|||
createUser, flushTests, getMyUserInformation, getMyUserVideoRating, getUsersList, immutableAssign, killallServers, makeGetRequest,
|
||||
makePostBodyRequest, makeUploadRequest, makePutBodyRequest, registerUser, removeUser, runServer, ServerInfo, setAccessTokensToServers,
|
||||
updateUser, uploadVideo, userLogin, deleteMe, unblockUser, blockUser
|
||||
} from '../../utils'
|
||||
import { checkBadCountPagination, checkBadSortPagination, checkBadStartPagination } from '../../utils/requests/check-api-params'
|
||||
import { getMagnetURI, getMyVideoImports, getYoutubeVideoUrl, importVideo } from '../../utils/videos/video-imports'
|
||||
} from '../../../../shared/utils'
|
||||
import {
|
||||
checkBadCountPagination,
|
||||
checkBadSortPagination,
|
||||
checkBadStartPagination
|
||||
} from '../../../../shared/utils/requests/check-api-params'
|
||||
import { getMagnetURI, getMyVideoImports, getYoutubeVideoUrl, importVideo } from '../../../../shared/utils/videos/video-imports'
|
||||
import { VideoPrivacy } from '../../../../shared/models/videos'
|
||||
import { waitJobs } from '../../utils/server/jobs'
|
||||
import { waitJobs } from '../../../../shared/utils/server/jobs'
|
||||
import { expect } from 'chai'
|
||||
|
||||
describe('Test users API validators', function () {
|
||||
|
|
|
@ -15,8 +15,12 @@ import {
|
|||
updateVideoAbuse,
|
||||
uploadVideo,
|
||||
userLogin
|
||||
} from '../../utils'
|
||||
import { checkBadCountPagination, checkBadSortPagination, checkBadStartPagination } from '../../utils/requests/check-api-params'
|
||||
} from '../../../../shared/utils'
|
||||
import {
|
||||
checkBadCountPagination,
|
||||
checkBadSortPagination,
|
||||
checkBadStartPagination
|
||||
} from '../../../../shared/utils/requests/check-api-params'
|
||||
import { VideoAbuseState } from '../../../../shared/models/videos'
|
||||
|
||||
describe('Test video abuses API validators', function () {
|
||||
|
|
|
@ -15,8 +15,12 @@ import {
|
|||
setAccessTokensToServers,
|
||||
uploadVideo,
|
||||
userLogin
|
||||
} from '../../utils'
|
||||
import { checkBadCountPagination, checkBadSortPagination, checkBadStartPagination } from '../../utils/requests/check-api-params'
|
||||
} from '../../../../shared/utils'
|
||||
import {
|
||||
checkBadCountPagination,
|
||||
checkBadSortPagination,
|
||||
checkBadStartPagination
|
||||
} from '../../../../shared/utils/requests/check-api-params'
|
||||
import { VideoDetails } from '../../../../shared/models/videos'
|
||||
import { expect } from 'chai'
|
||||
|
||||
|
|
|
@ -13,9 +13,9 @@ import {
|
|||
setAccessTokensToServers,
|
||||
uploadVideo,
|
||||
userLogin
|
||||
} from '../../utils'
|
||||
} from '../../../../shared/utils'
|
||||
import { join } from 'path'
|
||||
import { createVideoCaption } from '../../utils/videos/video-captions'
|
||||
import { createVideoCaption } from '../../../../shared/utils/videos/video-captions'
|
||||
|
||||
describe('Test video captions API validator', function () {
|
||||
const path = '/api/v1/videos/'
|
||||
|
|
|
@ -20,8 +20,12 @@ import {
|
|||
ServerInfo,
|
||||
setAccessTokensToServers,
|
||||
userLogin
|
||||
} from '../../utils'
|
||||
import { checkBadCountPagination, checkBadSortPagination, checkBadStartPagination } from '../../utils/requests/check-api-params'
|
||||
} from '../../../../shared/utils'
|
||||
import {
|
||||
checkBadCountPagination,
|
||||
checkBadSortPagination,
|
||||
checkBadStartPagination
|
||||
} from '../../../../shared/utils/requests/check-api-params'
|
||||
import { User } from '../../../../shared/models/users'
|
||||
import { join } from 'path'
|
||||
|
||||
|
|
|
@ -6,9 +6,13 @@ import {
|
|||
createUser,
|
||||
flushTests, killallServers, makeDeleteRequest, makeGetRequest, makePostBodyRequest, runServer, ServerInfo, setAccessTokensToServers,
|
||||
uploadVideo, userLogin
|
||||
} from '../../utils'
|
||||
import { checkBadCountPagination, checkBadSortPagination, checkBadStartPagination } from '../../utils/requests/check-api-params'
|
||||
import { addVideoCommentThread } from '../../utils/videos/video-comments'
|
||||
} from '../../../../shared/utils'
|
||||
import {
|
||||
checkBadCountPagination,
|
||||
checkBadSortPagination,
|
||||
checkBadStartPagination
|
||||
} from '../../../../shared/utils/requests/check-api-params'
|
||||
import { addVideoCommentThread } from '../../../../shared/utils/videos/video-comments'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -18,9 +18,13 @@ import {
|
|||
setAccessTokensToServers,
|
||||
updateCustomSubConfig,
|
||||
userLogin
|
||||
} from '../../utils'
|
||||
import { checkBadCountPagination, checkBadSortPagination, checkBadStartPagination } from '../../utils/requests/check-api-params'
|
||||
import { getMagnetURI, getYoutubeVideoUrl } from '../../utils/videos/video-imports'
|
||||
} from '../../../../shared/utils'
|
||||
import {
|
||||
checkBadCountPagination,
|
||||
checkBadSortPagination,
|
||||
checkBadStartPagination
|
||||
} from '../../../../shared/utils/requests/check-api-params'
|
||||
import { getMagnetURI, getYoutubeVideoUrl } from '../../../../shared/utils/videos/video-imports'
|
||||
|
||||
describe('Test video imports API validator', function () {
|
||||
const path = '/api/v1/videos/imports'
|
||||
|
|
|
@ -11,7 +11,7 @@ import {
|
|||
ServerInfo,
|
||||
setAccessTokensToServers,
|
||||
userLogin
|
||||
} from '../../utils'
|
||||
} from '../../../../shared/utils'
|
||||
import { UserRole } from '../../../../shared/models/users'
|
||||
|
||||
const expect = chai.expect
|
||||
|
|
|
@ -11,7 +11,7 @@ import {
|
|||
ServerInfo,
|
||||
setAccessTokensToServers,
|
||||
uploadVideo
|
||||
} from '../../utils'
|
||||
} from '../../../../shared/utils'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -8,9 +8,13 @@ import { VideoPrivacy } from '../../../../shared/models/videos/video-privacy.enu
|
|||
import {
|
||||
createUser, flushTests, getMyUserInformation, getVideo, getVideosList, immutableAssign, killallServers, makeDeleteRequest,
|
||||
makeGetRequest, makeUploadRequest, makePutBodyRequest, removeVideo, runServer, ServerInfo, setAccessTokensToServers, userLogin
|
||||
} from '../../utils'
|
||||
import { checkBadCountPagination, checkBadSortPagination, checkBadStartPagination } from '../../utils/requests/check-api-params'
|
||||
import { getAccountsList } from '../../utils/users/accounts'
|
||||
} from '../../../../shared/utils'
|
||||
import {
|
||||
checkBadCountPagination,
|
||||
checkBadSortPagination,
|
||||
checkBadStartPagination
|
||||
} from '../../../../shared/utils/requests/check-api-params'
|
||||
import { getAccountsList } from '../../../../shared/utils/users/accounts'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -18,15 +18,15 @@ import {
|
|||
wait,
|
||||
waitUntilLog,
|
||||
checkVideoFilesWereRemoved, removeVideo
|
||||
} from '../../utils'
|
||||
import { waitJobs } from '../../utils/server/jobs'
|
||||
} from '../../../../shared/utils'
|
||||
import { waitJobs } from '../../../../shared/utils/server/jobs'
|
||||
import * as magnetUtil from 'magnet-uri'
|
||||
import { updateRedundancy } from '../../utils/server/redundancy'
|
||||
import { updateRedundancy } from '../../../../shared/utils/server/redundancy'
|
||||
import { ActorFollow } from '../../../../shared/models/actors'
|
||||
import { readdir } from 'fs-extra'
|
||||
import { join } from 'path'
|
||||
import { VideoRedundancyStrategy } from '../../../../shared/models/redundancy'
|
||||
import { getStats } from '../../utils/server/stats'
|
||||
import { getStats } from '../../../../shared/utils/server/stats'
|
||||
import { ServerStats } from '../../../../shared/models/server/server-stats.model'
|
||||
|
||||
const expect = chai.expect
|
||||
|
|
|
@ -17,10 +17,10 @@ import {
|
|||
uploadVideo,
|
||||
userLogin,
|
||||
wait
|
||||
} from '../../utils'
|
||||
import { waitJobs } from '../../utils/server/jobs'
|
||||
} from '../../../../shared/utils'
|
||||
import { waitJobs } from '../../../../shared/utils/server/jobs'
|
||||
import { VideoChannel } from '../../../../shared/models/videos'
|
||||
import { searchVideoChannel } from '../../utils/search/video-channels'
|
||||
import { searchVideoChannel } from '../../../../shared/utils/search/video-channels'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ import {
|
|||
uploadVideo,
|
||||
wait,
|
||||
searchVideo
|
||||
} from '../../utils'
|
||||
import { waitJobs } from '../../utils/server/jobs'
|
||||
} from '../../../../shared/utils'
|
||||
import { waitJobs } from '../../../../shared/utils/server/jobs'
|
||||
import { Video, VideoPrivacy } from '../../../../shared/models/videos'
|
||||
|
||||
const expect = chai.expect
|
||||
|
|
|
@ -13,7 +13,7 @@ import {
|
|||
uploadVideo,
|
||||
wait,
|
||||
immutableAssign
|
||||
} from '../../utils'
|
||||
} from '../../../../shared/utils'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -4,8 +4,11 @@ import 'mocha'
|
|||
import * as chai from 'chai'
|
||||
import { About } from '../../../../shared/models/server/about.model'
|
||||
import { CustomConfig } from '../../../../shared/models/server/custom-config.model'
|
||||
import { deleteCustomConfig, getAbout, killallServers, reRunServer } from '../../utils'
|
||||
import {
|
||||
deleteCustomConfig,
|
||||
getAbout,
|
||||
killallServers,
|
||||
reRunServer,
|
||||
flushTests,
|
||||
getConfig,
|
||||
getCustomConfig,
|
||||
|
@ -13,7 +16,7 @@ import {
|
|||
runServer,
|
||||
setAccessTokensToServers,
|
||||
updateCustomConfig
|
||||
} from '../../utils/index'
|
||||
} from '../../../../shared/utils'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -14,11 +14,14 @@ import {
|
|||
unblockUser,
|
||||
uploadVideo,
|
||||
userLogin,
|
||||
verifyEmail
|
||||
} from '../../utils'
|
||||
import { flushTests, killallServers, ServerInfo, setAccessTokensToServers } from '../../utils/index'
|
||||
import { mockSmtpServer } from '../../utils/miscs/email'
|
||||
import { waitJobs } from '../../utils/server/jobs'
|
||||
verifyEmail,
|
||||
flushTests,
|
||||
killallServers,
|
||||
ServerInfo,
|
||||
setAccessTokensToServers
|
||||
} from '../../../../shared/utils'
|
||||
import { mockSmtpServer } from '../../../../shared/utils/miscs/email'
|
||||
import { waitJobs } from '../../../../shared/utils/server/jobs'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ import * as chai from 'chai'
|
|||
import 'mocha'
|
||||
import { Video, VideoPrivacy } from '../../../../shared/models/videos'
|
||||
import { VideoComment, VideoCommentThreadTree } from '../../../../shared/models/videos/video-comment.model'
|
||||
import { completeVideoCheck } from '../../utils'
|
||||
import { completeVideoCheck } from '../../../../shared/utils'
|
||||
import {
|
||||
flushAndRunMultipleServers,
|
||||
getVideosList,
|
||||
|
@ -12,21 +12,26 @@ import {
|
|||
ServerInfo,
|
||||
setAccessTokensToServers,
|
||||
uploadVideo
|
||||
} from '../../utils/index'
|
||||
import { dateIsValid } from '../../utils/miscs/miscs'
|
||||
import { follow, getFollowersListPaginationAndSort, getFollowingListPaginationAndSort, unfollow } from '../../utils/server/follows'
|
||||
import { expectAccountFollows } from '../../utils/users/accounts'
|
||||
import { userLogin } from '../../utils/users/login'
|
||||
import { createUser } from '../../utils/users/users'
|
||||
} from '../../../../shared/utils/index'
|
||||
import { dateIsValid } from '../../../../shared/utils/miscs/miscs'
|
||||
import {
|
||||
follow,
|
||||
getFollowersListPaginationAndSort,
|
||||
getFollowingListPaginationAndSort,
|
||||
unfollow
|
||||
} from '../../../../shared/utils/server/follows'
|
||||
import { expectAccountFollows } from '../../../../shared/utils/users/accounts'
|
||||
import { userLogin } from '../../../../shared/utils/users/login'
|
||||
import { createUser } from '../../../../shared/utils/users/users'
|
||||
import {
|
||||
addVideoCommentReply,
|
||||
addVideoCommentThread,
|
||||
getVideoCommentThreads,
|
||||
getVideoThreadComments
|
||||
} from '../../utils/videos/video-comments'
|
||||
import { rateVideo } from '../../utils/videos/videos'
|
||||
import { waitJobs } from '../../utils/server/jobs'
|
||||
import { createVideoCaption, listVideoCaptions, testCaptionFile } from '../../utils/videos/video-captions'
|
||||
} from '../../../../shared/utils/videos/video-comments'
|
||||
import { rateVideo } from '../../../../shared/utils/videos/videos'
|
||||
import { waitJobs } from '../../../../shared/utils/server/jobs'
|
||||
import { createVideoCaption, listVideoCaptions, testCaptionFile } from '../../../../shared/utils/videos/video-captions'
|
||||
import { VideoCaption } from '../../../../shared/models/videos/caption/video-caption.model'
|
||||
|
||||
const expect = chai.expect
|
||||
|
|
|
@ -5,8 +5,13 @@ import 'mocha'
|
|||
import { JobState, Video } from '../../../../shared/models'
|
||||
import { VideoPrivacy } from '../../../../shared/models/videos'
|
||||
import { VideoCommentThreadTree } from '../../../../shared/models/videos/video-comment.model'
|
||||
import { completeVideoCheck, getVideo, immutableAssign, reRunServer, unfollow, viewVideo } from '../../utils'
|
||||
import {
|
||||
completeVideoCheck,
|
||||
getVideo,
|
||||
immutableAssign,
|
||||
reRunServer,
|
||||
unfollow,
|
||||
viewVideo,
|
||||
flushAndRunMultipleServers,
|
||||
getVideosList,
|
||||
killallServers,
|
||||
|
@ -14,15 +19,15 @@ import {
|
|||
setAccessTokensToServers,
|
||||
uploadVideo,
|
||||
wait
|
||||
} from '../../utils/index'
|
||||
import { follow, getFollowersListPaginationAndSort } from '../../utils/server/follows'
|
||||
import { getJobsListPaginationAndSort, waitJobs } from '../../utils/server/jobs'
|
||||
} from '../../../../shared/utils'
|
||||
import { follow, getFollowersListPaginationAndSort } from '../../../../shared/utils/server/follows'
|
||||
import { getJobsListPaginationAndSort, waitJobs } from '../../../../shared/utils/server/jobs'
|
||||
import {
|
||||
addVideoCommentReply,
|
||||
addVideoCommentThread,
|
||||
getVideoCommentThreads,
|
||||
getVideoThreadComments
|
||||
} from '../../utils/videos/video-comments'
|
||||
} from '../../../../shared/utils/videos/video-comments'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
|
||||
import * as chai from 'chai'
|
||||
import 'mocha'
|
||||
import { killallServers, ServerInfo, setAccessTokensToServers } from '../../utils/index'
|
||||
import { doubleFollow } from '../../utils/server/follows'
|
||||
import { getJobsList, getJobsListPaginationAndSort, waitJobs } from '../../utils/server/jobs'
|
||||
import { flushAndRunMultipleServers } from '../../utils/server/servers'
|
||||
import { uploadVideo } from '../../utils/videos/videos'
|
||||
import { dateIsValid } from '../../utils/miscs/miscs'
|
||||
import { killallServers, ServerInfo, setAccessTokensToServers } from '../../../../shared/utils/index'
|
||||
import { doubleFollow } from '../../../../shared/utils/server/follows'
|
||||
import { getJobsList, getJobsListPaginationAndSort, waitJobs } from '../../../../shared/utils/server/jobs'
|
||||
import { flushAndRunMultipleServers } from '../../../../shared/utils/server/servers'
|
||||
import { uploadVideo } from '../../../../shared/utils/videos/videos'
|
||||
import { dateIsValid } from '../../../../shared/utils/miscs/miscs'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -18,15 +18,15 @@ import {
|
|||
wait,
|
||||
waitUntilLog,
|
||||
checkVideoFilesWereRemoved, removeVideo
|
||||
} from '../../utils'
|
||||
import { waitJobs } from '../../utils/server/jobs'
|
||||
} from '../../../../shared/utils'
|
||||
import { waitJobs } from '../../../../shared/utils/server/jobs'
|
||||
import * as magnetUtil from 'magnet-uri'
|
||||
import { updateRedundancy } from '../../utils/server/redundancy'
|
||||
import { updateRedundancy } from '../../../../shared/utils/server/redundancy'
|
||||
import { ActorFollow } from '../../../../shared/models/actors'
|
||||
import { readdir } from 'fs-extra'
|
||||
import { join } from 'path'
|
||||
import { VideoRedundancyStrategy } from '../../../../shared/models/redundancy'
|
||||
import { getStats } from '../../utils/server/stats'
|
||||
import { getStats } from '../../../../shared/utils/server/stats'
|
||||
import { ServerStats } from '../../../../shared/models/server/server-stats.model'
|
||||
|
||||
const expect = chai.expect
|
||||
|
|
|
@ -15,7 +15,7 @@ import {
|
|||
userLogin,
|
||||
viewVideo,
|
||||
wait
|
||||
} from '../../utils'
|
||||
} from '../../../../shared/utils'
|
||||
const expect = chai.expect
|
||||
|
||||
import {
|
||||
|
@ -23,7 +23,7 @@ import {
|
|||
flushTests,
|
||||
runServer,
|
||||
registerUser, getCustomConfig, setAccessTokensToServers, updateCustomConfig
|
||||
} from '../../utils/index'
|
||||
} from '../../../../shared/utils/index'
|
||||
|
||||
describe('Test application behind a reverse proxy', function () {
|
||||
let server = null
|
||||
|
|
|
@ -13,11 +13,11 @@ import {
|
|||
uploadVideo,
|
||||
viewVideo,
|
||||
wait
|
||||
} from '../../utils'
|
||||
import { flushTests, setAccessTokensToServers } from '../../utils/index'
|
||||
import { getStats } from '../../utils/server/stats'
|
||||
import { addVideoCommentThread } from '../../utils/videos/video-comments'
|
||||
import { waitJobs } from '../../utils/server/jobs'
|
||||
} from '../../../../shared/utils'
|
||||
import { flushTests, setAccessTokensToServers } from '../../../../shared/utils/index'
|
||||
import { getStats } from '../../../../shared/utils/server/stats'
|
||||
import { addVideoCommentThread } from '../../../../shared/utils/videos/video-comments'
|
||||
import { waitJobs } from '../../../../shared/utils/server/jobs'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
import * as magnetUtil from 'magnet-uri'
|
||||
import 'mocha'
|
||||
import { getVideo, killallServers, runServer, ServerInfo, uploadVideo } from '../../utils'
|
||||
import { flushTests, setAccessTokensToServers } from '../../utils/index'
|
||||
import { getVideo, killallServers, runServer, ServerInfo, uploadVideo } from '../../../../shared/utils'
|
||||
import { flushTests, setAccessTokensToServers } from '../../../../shared/utils/index'
|
||||
import { VideoDetails } from '../../../../shared/models/videos'
|
||||
import * as WebTorrent from 'webtorrent'
|
||||
|
||||
|
|
|
@ -12,16 +12,16 @@ import {
|
|||
ServerInfo,
|
||||
uploadVideo,
|
||||
userLogin
|
||||
} from '../../utils/index'
|
||||
import { setAccessTokensToServers } from '../../utils/users/login'
|
||||
import { getVideosListWithToken, getVideosList } from '../../utils/videos/videos'
|
||||
} from '../../../../shared/utils/index'
|
||||
import { setAccessTokensToServers } from '../../../../shared/utils/users/login'
|
||||
import { getVideosListWithToken, getVideosList } from '../../../../shared/utils/videos/videos'
|
||||
import {
|
||||
addVideoCommentReply,
|
||||
addVideoCommentThread,
|
||||
getVideoCommentThreads,
|
||||
getVideoThreadComments
|
||||
} from '../../utils/videos/video-comments'
|
||||
import { waitJobs } from '../../utils/server/jobs'
|
||||
} from '../../../../shared/utils/videos/video-comments'
|
||||
import { waitJobs } from '../../../../shared/utils/server/jobs'
|
||||
import { VideoComment, VideoCommentThreadTree } from '../../../../shared/models/videos/video-comment.model'
|
||||
import {
|
||||
addAccountToAccountBlocklist,
|
||||
|
@ -36,7 +36,7 @@ import {
|
|||
removeAccountFromServerBlocklist,
|
||||
removeServerFromAccountBlocklist,
|
||||
removeServerFromServerBlocklist
|
||||
} from '../../utils/users/blocklist'
|
||||
} from '../../../../shared/utils/users/blocklist'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -2,18 +2,27 @@
|
|||
|
||||
import * as chai from 'chai'
|
||||
import 'mocha'
|
||||
import { createUser, doubleFollow, flushAndRunMultipleServers, follow, getVideosList, unfollow, updateVideo, userLogin } from '../../utils'
|
||||
import { killallServers, ServerInfo, uploadVideo } from '../../utils/index'
|
||||
import { setAccessTokensToServers } from '../../utils/users/login'
|
||||
import {
|
||||
createUser,
|
||||
doubleFollow,
|
||||
flushAndRunMultipleServers,
|
||||
follow,
|
||||
getVideosList,
|
||||
unfollow,
|
||||
updateVideo,
|
||||
userLogin
|
||||
} from '../../../../shared/utils'
|
||||
import { killallServers, ServerInfo, uploadVideo } from '../../../../shared/utils/index'
|
||||
import { setAccessTokensToServers } from '../../../../shared/utils/users/login'
|
||||
import { Video, VideoChannel } from '../../../../shared/models/videos'
|
||||
import { waitJobs } from '../../utils/server/jobs'
|
||||
import { waitJobs } from '../../../../shared/utils/server/jobs'
|
||||
import {
|
||||
addUserSubscription,
|
||||
listUserSubscriptions,
|
||||
listUserSubscriptionVideos,
|
||||
removeUserSubscription,
|
||||
getUserSubscription, areSubscriptionsExist
|
||||
} from '../../utils/users/user-subscriptions'
|
||||
} from '../../../../shared/utils/users/user-subscriptions'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -13,13 +13,13 @@ import {
|
|||
removeUser,
|
||||
updateMyUser,
|
||||
userLogin
|
||||
} from '../../utils'
|
||||
import { getMyUserInformation, killallServers, ServerInfo, testImage, updateMyAvatar, uploadVideo } from '../../utils/index'
|
||||
import { checkActorFilesWereRemoved, getAccount, getAccountsList } from '../../utils/users/accounts'
|
||||
import { setAccessTokensToServers } from '../../utils/users/login'
|
||||
} from '../../../../shared/utils'
|
||||
import { getMyUserInformation, killallServers, ServerInfo, testImage, updateMyAvatar, uploadVideo } from '../../../../shared/utils/index'
|
||||
import { checkActorFilesWereRemoved, getAccount, getAccountsList } from '../../../../shared/utils/users/accounts'
|
||||
import { setAccessTokensToServers } from '../../../../shared/utils/users/login'
|
||||
import { User } from '../../../../shared/models/users'
|
||||
import { VideoChannel } from '../../../../shared/models/videos'
|
||||
import { waitJobs } from '../../utils/server/jobs'
|
||||
import { waitJobs } from '../../../../shared/utils/server/jobs'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -5,10 +5,10 @@ import 'mocha'
|
|||
import {
|
||||
registerUser, flushTests, getUserInformation, getMyUserInformation, killallServers,
|
||||
userLogin, login, runServer, ServerInfo, verifyEmail, updateCustomSubConfig
|
||||
} from '../../utils'
|
||||
import { setAccessTokensToServers } from '../../utils/users/login'
|
||||
import { mockSmtpServer } from '../../utils/miscs/email'
|
||||
import { waitJobs } from '../../utils/server/jobs'
|
||||
} from '../../../../shared/utils'
|
||||
import { setAccessTokensToServers } from '../../../../shared/utils/users/login'
|
||||
import { mockSmtpServer } from '../../../../shared/utils/miscs/email'
|
||||
import { waitJobs } from '../../../../shared/utils/server/jobs'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -32,10 +32,10 @@ import {
|
|||
updateUser,
|
||||
uploadVideo,
|
||||
userLogin
|
||||
} from '../../utils/index'
|
||||
import { follow } from '../../utils/server/follows'
|
||||
import { setAccessTokensToServers } from '../../utils/users/login'
|
||||
import { getMyVideos } from '../../utils/videos/videos'
|
||||
} from '../../../../shared/utils/index'
|
||||
import { follow } from '../../../../shared/utils/server/follows'
|
||||
import { setAccessTokensToServers } from '../../../../shared/utils/users/login'
|
||||
import { getMyVideos } from '../../../../shared/utils/videos/videos'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -31,15 +31,15 @@ import {
|
|||
viewVideo,
|
||||
wait,
|
||||
webtorrentAdd
|
||||
} from '../../utils'
|
||||
} from '../../../../shared/utils'
|
||||
import {
|
||||
addVideoCommentReply,
|
||||
addVideoCommentThread,
|
||||
deleteVideoComment,
|
||||
getVideoCommentThreads,
|
||||
getVideoThreadComments
|
||||
} from '../../utils/videos/video-comments'
|
||||
import { waitJobs } from '../../utils/server/jobs'
|
||||
} from '../../../../shared/utils/videos/video-comments'
|
||||
import { waitJobs } from '../../../../shared/utils/server/jobs'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -2,8 +2,16 @@
|
|||
|
||||
import * as chai from 'chai'
|
||||
import 'mocha'
|
||||
import { flushTests, getOEmbed, getVideosList, killallServers, ServerInfo, setAccessTokensToServers, uploadVideo } from '../../utils/index'
|
||||
import { runServer } from '../../utils/server/servers'
|
||||
import {
|
||||
flushTests,
|
||||
getOEmbed,
|
||||
getVideosList,
|
||||
killallServers,
|
||||
ServerInfo,
|
||||
setAccessTokensToServers,
|
||||
uploadVideo
|
||||
} from '../../../../shared/utils/index'
|
||||
import { runServer } from '../../../../shared/utils/server/servers'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ import {
|
|||
uploadVideo,
|
||||
viewVideo,
|
||||
wait
|
||||
} from '../../utils'
|
||||
} from '../../../../shared/utils'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -14,9 +14,9 @@ import {
|
|||
setAccessTokensToServers,
|
||||
updateVideoAbuse,
|
||||
uploadVideo
|
||||
} from '../../utils/index'
|
||||
import { doubleFollow } from '../../utils/server/follows'
|
||||
import { waitJobs } from '../../utils/server/jobs'
|
||||
} from '../../../../shared/utils/index'
|
||||
import { doubleFollow } from '../../../../shared/utils/server/follows'
|
||||
import { waitJobs } from '../../../../shared/utils/server/jobs'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -16,9 +16,9 @@ import {
|
|||
setAccessTokensToServers,
|
||||
updateVideoBlacklist,
|
||||
uploadVideo
|
||||
} from '../../utils/index'
|
||||
import { doubleFollow } from '../../utils/server/follows'
|
||||
import { waitJobs } from '../../utils/server/jobs'
|
||||
} from '../../../../shared/utils/index'
|
||||
import { doubleFollow } from '../../../../shared/utils/server/follows'
|
||||
import { waitJobs } from '../../../../shared/utils/server/jobs'
|
||||
import { VideoAbuse } from '../../../../shared/models/videos'
|
||||
|
||||
const expect = chai.expect
|
||||
|
|
|
@ -11,9 +11,9 @@ import {
|
|||
ServerInfo,
|
||||
setAccessTokensToServers,
|
||||
uploadVideo
|
||||
} from '../../utils/index'
|
||||
import { doubleFollow } from '../../utils/server/follows'
|
||||
import { waitJobs } from '../../utils/server/jobs'
|
||||
} from '../../../../shared/utils/index'
|
||||
import { doubleFollow } from '../../../../shared/utils/server/follows'
|
||||
import { waitJobs } from '../../../../shared/utils/server/jobs'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -2,10 +2,17 @@
|
|||
|
||||
import * as chai from 'chai'
|
||||
import 'mocha'
|
||||
import { checkVideoFilesWereRemoved, doubleFollow, flushAndRunMultipleServers, removeVideo, uploadVideo, wait } from '../../utils'
|
||||
import { flushTests, killallServers, ServerInfo, setAccessTokensToServers } from '../../utils/index'
|
||||
import { waitJobs } from '../../utils/server/jobs'
|
||||
import { createVideoCaption, deleteVideoCaption, listVideoCaptions, testCaptionFile } from '../../utils/videos/video-captions'
|
||||
import {
|
||||
checkVideoFilesWereRemoved,
|
||||
doubleFollow,
|
||||
flushAndRunMultipleServers,
|
||||
removeVideo,
|
||||
uploadVideo,
|
||||
wait
|
||||
} from '../../../../shared/utils'
|
||||
import { flushTests, killallServers, ServerInfo, setAccessTokensToServers } from '../../../../shared/utils/index'
|
||||
import { waitJobs } from '../../../../shared/utils/server/jobs'
|
||||
import { createVideoCaption, deleteVideoCaption, listVideoCaptions, testCaptionFile } from '../../../../shared/utils/videos/video-captions'
|
||||
import { VideoCaption } from '../../../../shared/models/videos/caption/video-caption.model'
|
||||
|
||||
const expect = chai.expect
|
||||
|
|
|
@ -18,8 +18,8 @@ import {
|
|||
uploadVideo,
|
||||
userLogin,
|
||||
getVideo
|
||||
} from '../../utils'
|
||||
import { waitJobs } from '../../utils/server/jobs'
|
||||
} from '../../../../shared/utils'
|
||||
import { waitJobs } from '../../../../shared/utils/server/jobs'
|
||||
import { User } from '../../../../shared/models/users'
|
||||
import { VideoDetails } from '../../../../shared/models/videos'
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ import {
|
|||
updateVideo,
|
||||
updateVideoChannelAvatar,
|
||||
uploadVideo, wait, userLogin
|
||||
} from '../../utils'
|
||||
} from '../../../../shared/utils'
|
||||
import {
|
||||
addVideoChannel,
|
||||
deleteVideoChannel,
|
||||
|
@ -24,8 +24,8 @@ import {
|
|||
ServerInfo,
|
||||
setAccessTokensToServers,
|
||||
updateVideoChannel
|
||||
} from '../../utils/index'
|
||||
import { waitJobs } from '../../utils/server/jobs'
|
||||
} from '../../../../shared/utils/index'
|
||||
import { waitJobs } from '../../../../shared/utils/server/jobs'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
import * as chai from 'chai'
|
||||
import 'mocha'
|
||||
import { VideoComment, VideoCommentThreadTree } from '../../../../shared/models/videos/video-comment.model'
|
||||
import { testImage } from '../../utils'
|
||||
import { testImage } from '../../../../shared/utils'
|
||||
import {
|
||||
dateIsValid,
|
||||
flushTests,
|
||||
|
@ -13,14 +13,14 @@ import {
|
|||
setAccessTokensToServers,
|
||||
updateMyAvatar,
|
||||
uploadVideo
|
||||
} from '../../utils/index'
|
||||
} from '../../../../shared/utils/index'
|
||||
import {
|
||||
addVideoCommentReply,
|
||||
addVideoCommentThread,
|
||||
deleteVideoComment,
|
||||
getVideoCommentThreads,
|
||||
getVideoThreadComments
|
||||
} from '../../utils/videos/video-comments'
|
||||
} from '../../../../shared/utils/videos/video-comments'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -12,9 +12,9 @@ import {
|
|||
setAccessTokensToServers,
|
||||
updateVideo,
|
||||
uploadVideo
|
||||
} from '../../utils/index'
|
||||
import { doubleFollow } from '../../utils/server/follows'
|
||||
import { waitJobs } from '../../utils/server/jobs'
|
||||
} from '../../../../shared/utils/index'
|
||||
import { doubleFollow } from '../../../../shared/utils/server/follows'
|
||||
import { waitJobs } from '../../../../shared/utils/server/jobs'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -14,9 +14,9 @@ import {
|
|||
killallServers,
|
||||
ServerInfo,
|
||||
setAccessTokensToServers
|
||||
} from '../../utils'
|
||||
import { waitJobs } from '../../utils/server/jobs'
|
||||
import { getMagnetURI, getYoutubeVideoUrl, importVideo, getMyVideoImports } from '../../utils/videos/video-imports'
|
||||
} from '../../../../shared/utils'
|
||||
import { waitJobs } from '../../../../shared/utils/server/jobs'
|
||||
import { getMagnetURI, getYoutubeVideoUrl, importVideo, getMyVideoImports } from '../../../../shared/utils/videos/video-imports'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -2,10 +2,17 @@
|
|||
|
||||
import * as chai from 'chai'
|
||||
import 'mocha'
|
||||
import { flushTests, getVideosList, killallServers, ServerInfo, setAccessTokensToServers, uploadVideo } from '../../utils/index'
|
||||
import { userLogin } from '../../utils/users/login'
|
||||
import { createUser } from '../../utils/users/users'
|
||||
import { getMyVideos } from '../../utils/videos/videos'
|
||||
import {
|
||||
flushTests,
|
||||
getVideosList,
|
||||
killallServers,
|
||||
ServerInfo,
|
||||
setAccessTokensToServers,
|
||||
uploadVideo
|
||||
} from '../../../../shared/utils/index'
|
||||
import { userLogin } from '../../../../shared/utils/users/login'
|
||||
import { createUser } from '../../../../shared/utils/users/users'
|
||||
import { getMyVideos } from '../../../../shared/utils/videos/videos'
|
||||
import {
|
||||
getAccountVideos,
|
||||
getConfig,
|
||||
|
@ -18,7 +25,7 @@ import {
|
|||
searchVideoWithToken,
|
||||
updateCustomConfig,
|
||||
updateMyUser
|
||||
} from '../../utils'
|
||||
} from '../../../../shared/utils'
|
||||
import { ServerConfig } from '../../../../shared/models'
|
||||
import { CustomConfig } from '../../../../shared/models/server/custom-config.model'
|
||||
import { User } from '../../../../shared/models/users'
|
||||
|
|
|
@ -10,12 +10,12 @@ import {
|
|||
ServerInfo,
|
||||
setAccessTokensToServers,
|
||||
uploadVideo
|
||||
} from '../../utils/index'
|
||||
import { doubleFollow } from '../../utils/server/follows'
|
||||
import { userLogin } from '../../utils/users/login'
|
||||
import { createUser } from '../../utils/users/users'
|
||||
import { getMyVideos, getVideo, getVideoWithToken, updateVideo } from '../../utils/videos/videos'
|
||||
import { waitJobs } from '../../utils/server/jobs'
|
||||
} from '../../../../shared/utils/index'
|
||||
import { doubleFollow } from '../../../../shared/utils/server/follows'
|
||||
import { userLogin } from '../../../../shared/utils/users/login'
|
||||
import { createUser } from '../../../../shared/utils/users/users'
|
||||
import { getMyVideos, getVideo, getVideoWithToken, updateVideo } from '../../../../shared/utils/videos/videos'
|
||||
import { waitJobs } from '../../../../shared/utils/server/jobs'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -15,9 +15,9 @@ import {
|
|||
updateVideo,
|
||||
uploadVideo,
|
||||
wait
|
||||
} from '../../utils'
|
||||
} from '../../../../shared/utils'
|
||||
import { join } from 'path'
|
||||
import { waitJobs } from '../../utils/server/jobs'
|
||||
import { waitJobs } from '../../../../shared/utils/server/jobs'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -20,9 +20,9 @@ import {
|
|||
uploadVideo,
|
||||
webtorrentAdd,
|
||||
generateHighBitrateVideo
|
||||
} from '../../utils'
|
||||
} from '../../../../shared/utils'
|
||||
import { join } from 'path'
|
||||
import { waitJobs } from '../../utils/server/jobs'
|
||||
import { waitJobs } from '../../../../shared/utils/server/jobs'
|
||||
import { pathExists } from 'fs-extra'
|
||||
import { VIDEO_TRANSCODING_FPS } from '../../../../server/initializers/constants'
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ import {
|
|||
setAccessTokensToServers,
|
||||
uploadVideo,
|
||||
userLogin
|
||||
} from '../../utils'
|
||||
} from '../../../../shared/utils'
|
||||
import { Video, VideoPrivacy } from '../../../../shared/models/videos'
|
||||
import { UserRole } from '../../../../shared/models/users'
|
||||
|
||||
|
|
|
@ -11,9 +11,9 @@ import {
|
|||
ServerInfo,
|
||||
setAccessTokensToServers,
|
||||
uploadVideo
|
||||
} from '../../utils'
|
||||
} from '../../../../shared/utils'
|
||||
import { Video, VideoDetails } from '../../../../shared/models/videos'
|
||||
import { userWatchVideo } from '../../utils/videos/video-history'
|
||||
import { userWatchVideo } from '../../../../shared/utils/videos/video-history'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
import * as chai from 'chai'
|
||||
import 'mocha'
|
||||
import { flushTests, killallServers, runServer, ServerInfo, setAccessTokensToServers, uploadVideo } from '../../utils'
|
||||
import { getVideosOverview } from '../../utils/overviews/overviews'
|
||||
import { flushTests, killallServers, runServer, ServerInfo, setAccessTokensToServers, uploadVideo } from '../../../../shared/utils'
|
||||
import { getVideosOverview } from '../../../../shared/utils/overviews/overviews'
|
||||
import { VideosOverview } from '../../../../shared/models/overviews'
|
||||
|
||||
const expect = chai.expect
|
||||
|
|
|
@ -15,8 +15,8 @@ import {
|
|||
ServerInfo,
|
||||
setAccessTokensToServers,
|
||||
uploadVideo
|
||||
} from '../utils'
|
||||
import { waitJobs } from '../utils/server/jobs'
|
||||
} from '../../../shared/utils'
|
||||
import { waitJobs } from '../../../shared/utils/server/jobs'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -15,8 +15,8 @@ import {
|
|||
ServerInfo,
|
||||
setAccessTokensToServers,
|
||||
uploadVideo, wait
|
||||
} from '../utils'
|
||||
import { waitJobs } from '../utils/server/jobs'
|
||||
} from '../../../shared/utils'
|
||||
import { waitJobs } from '../../../shared/utils/server/jobs'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -15,8 +15,8 @@ import {
|
|||
ServerInfo,
|
||||
setAccessTokensToServers,
|
||||
uploadVideo, viewVideo, wait
|
||||
} from '../utils'
|
||||
import { waitJobs } from '../utils/server/jobs'
|
||||
} from '../../../shared/utils'
|
||||
import { waitJobs } from '../../../shared/utils/server/jobs'
|
||||
import { getVideoFileBitrate, getVideoFileFPS, getVideoFileResolution } from '../../helpers/ffmpeg-utils'
|
||||
import { VIDEO_TRANSCODING_FPS } from '../../initializers'
|
||||
import { join } from 'path'
|
||||
|
|
|
@ -11,7 +11,7 @@ import {
|
|||
runServer,
|
||||
ServerInfo,
|
||||
setAccessTokensToServers
|
||||
} from '../utils'
|
||||
} from '../../../shared/utils'
|
||||
|
||||
describe('Test CLI wrapper', function () {
|
||||
let server: ServerInfo
|
||||
|
|
|
@ -10,7 +10,7 @@ import {
|
|||
runServer,
|
||||
ServerInfo,
|
||||
setAccessTokensToServers
|
||||
} from '../utils'
|
||||
} from '../../../shared/utils'
|
||||
|
||||
describe('Test reset password scripts', function () {
|
||||
let server: ServerInfo
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
import 'mocha'
|
||||
import * as chai from 'chai'
|
||||
import { VideoDetails } from '../../../shared/models/videos'
|
||||
import { waitJobs } from '../utils/server/jobs'
|
||||
import { addVideoCommentThread } from '../utils/videos/video-comments'
|
||||
import { waitJobs } from '../../../shared/utils/server/jobs'
|
||||
import { addVideoCommentThread } from '../../../shared/utils/videos/video-comments'
|
||||
import {
|
||||
addVideoChannel,
|
||||
createUser,
|
||||
|
@ -21,8 +21,8 @@ import {
|
|||
ServerInfo,
|
||||
setAccessTokensToServers,
|
||||
uploadVideo
|
||||
} from '../utils'
|
||||
import { getAccountsList } from '../utils/users/accounts'
|
||||
} from '../../../shared/utils'
|
||||
import { getAccountsList } from '../../../shared/utils/users/accounts'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ import {
|
|||
updateCustomConfig,
|
||||
updateCustomSubConfig,
|
||||
uploadVideo
|
||||
} from './utils'
|
||||
} from '../../shared/utils'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -13,10 +13,10 @@ import {
|
|||
ServerInfo,
|
||||
setAccessTokensToServers,
|
||||
uploadVideo, userLogin
|
||||
} from '../utils'
|
||||
} from '../../../shared/utils'
|
||||
import * as libxmljs from 'libxmljs'
|
||||
import { addVideoCommentThread } from '../utils/videos/video-comments'
|
||||
import { waitJobs } from '../utils/server/jobs'
|
||||
import { addVideoCommentThread } from '../../../shared/utils/videos/video-comments'
|
||||
import { waitJobs } from '../../../shared/utils/server/jobs'
|
||||
import { User } from '../../../shared/models/users'
|
||||
|
||||
chai.use(require('chai-xml'))
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
import 'mocha'
|
||||
import * as chai from 'chai'
|
||||
import { flushTests, killallServers, makeGetRequest, runServer, ServerInfo } from './utils'
|
||||
import { flushTests, killallServers, makeGetRequest, runServer, ServerInfo } from '../../shared/utils'
|
||||
|
||||
const expect = chai.expect
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ import {
|
|||
ServerInfo,
|
||||
setAccessTokensToServers,
|
||||
uploadVideo
|
||||
} from '../utils'
|
||||
} from '../../../shared/utils'
|
||||
import * as Bluebird from 'bluebird'
|
||||
|
||||
start()
|
||||
|
|
|
@ -16,8 +16,8 @@ import {
|
|||
updateVideo,
|
||||
uploadVideo, viewVideo,
|
||||
wait
|
||||
} from '../utils'
|
||||
import { getJobsListPaginationAndSort } from '../utils/server/jobs'
|
||||
} from '../../../shared/utils'
|
||||
import { getJobsListPaginationAndSort } from '../../../shared/utils/server/jobs'
|
||||
|
||||
interface ServerInfo extends DefaultServerInfo {
|
||||
requestsNumber: number
|
||||
|
|
|
@ -6,7 +6,7 @@ import {
|
|||
Server,
|
||||
Client,
|
||||
User
|
||||
} from '../tests/utils/index'
|
||||
} from '../../shared/utils'
|
||||
|
||||
program
|
||||
.option('-u, --url <url>', 'Server url')
|
||||
|
|
|
@ -6,7 +6,7 @@ import { join } from 'path'
|
|||
import { VideoPrivacy } from '../../shared/models/videos'
|
||||
import { doRequestAndSaveToFile } from '../helpers/requests'
|
||||
import { CONSTRAINTS_FIELDS } from '../initializers'
|
||||
import { getClient, getVideoCategories, login, searchVideoWithSort, uploadVideo } from '../tests/utils'
|
||||
import { getClient, getVideoCategories, login, searchVideoWithSort, uploadVideo } from '../../shared/utils/index'
|
||||
import { truncate } from 'lodash'
|
||||
import * as prompt from 'prompt'
|
||||
import { remove } from 'fs-extra'
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
import * as program from 'commander'
|
||||
import { access, constants } from 'fs-extra'
|
||||
import { isAbsolute } from 'path'
|
||||
import { getClient, login } from '../tests/utils'
|
||||
import { uploadVideo } from '../tests/utils/index'
|
||||
import { getClient, login } from '../../shared/utils'
|
||||
import { uploadVideo } from '../../shared/utils/'
|
||||
import { VideoPrivacy } from '../../shared/models/videos'
|
||||
import { netrc, getSettings } from './cli'
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
import * as request from 'supertest'
|
||||
import { makePostBodyRequest, makePutBodyRequest, updateAvatarRequest } from '../'
|
||||
|
||||
import { UserRole } from '../../../../shared/index'
|
||||
import { NSFWPolicyType } from '../../../../shared/models/videos/nsfw-policy.type'
|
||||
import { UserRole } from '../../index'
|
||||
import { NSFWPolicyType } from '../../models/videos/nsfw-policy.type'
|
||||
|
||||
function createUser (
|
||||
url: string,
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue