2020-01-31 10:56:52 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
2018-08-03 05:10:31 -04:00
|
|
|
|
|
|
|
import 'mocha'
|
2020-07-30 03:43:12 -04:00
|
|
|
import { omit } from 'lodash'
|
2018-08-03 05:10:31 -04:00
|
|
|
import { join } from 'path'
|
|
|
|
import {
|
2019-04-24 09:10:37 -04:00
|
|
|
cleanupTests,
|
2018-08-03 05:10:31 -04:00
|
|
|
createUser,
|
2019-04-24 09:10:37 -04:00
|
|
|
flushAndRunServer,
|
2018-08-03 05:10:31 -04:00
|
|
|
getMyUserInformation,
|
|
|
|
immutableAssign,
|
|
|
|
makeGetRequest,
|
|
|
|
makePostBodyRequest,
|
|
|
|
makeUploadRequest,
|
|
|
|
ServerInfo,
|
|
|
|
setAccessTokensToServers,
|
2018-08-03 10:23:45 -04:00
|
|
|
updateCustomSubConfig,
|
2018-08-03 05:10:31 -04:00
|
|
|
userLogin
|
2019-04-15 09:26:15 -04:00
|
|
|
} from '../../../../shared/extra-utils'
|
2018-10-29 12:48:31 -04:00
|
|
|
import {
|
|
|
|
checkBadCountPagination,
|
|
|
|
checkBadSortPagination,
|
|
|
|
checkBadStartPagination
|
2019-04-15 09:26:15 -04:00
|
|
|
} from '../../../../shared/extra-utils/requests/check-api-params'
|
2020-07-30 03:43:12 -04:00
|
|
|
import { getMagnetURI, getGoodVideoUrl } from '../../../../shared/extra-utils/videos/video-imports'
|
|
|
|
import { VideoPrivacy } from '../../../../shared/models/videos/video-privacy.enum'
|
2020-12-07 08:32:36 -05:00
|
|
|
import { HttpStatusCode } from '../../../../shared/core-utils/miscs/http-error-codes'
|
2018-08-03 05:10:31 -04:00
|
|
|
|
|
|
|
describe('Test video imports API validator', function () {
|
|
|
|
const path = '/api/v1/videos/imports'
|
|
|
|
let server: ServerInfo
|
|
|
|
let userAccessToken = ''
|
|
|
|
let channelId: number
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------
|
|
|
|
|
|
|
|
before(async function () {
|
|
|
|
this.timeout(30000)
|
|
|
|
|
2019-04-24 04:53:40 -04:00
|
|
|
server = await flushAndRunServer(1)
|
2018-08-03 05:10:31 -04:00
|
|
|
|
|
|
|
await setAccessTokensToServers([ server ])
|
|
|
|
|
|
|
|
const username = 'user1'
|
|
|
|
const password = 'my super password'
|
2019-04-15 04:49:46 -04:00
|
|
|
await createUser({ url: server.url, accessToken: server.accessToken, username: username, password: password })
|
2018-08-03 05:10:31 -04:00
|
|
|
userAccessToken = await userLogin(server, { username, password })
|
|
|
|
|
|
|
|
{
|
|
|
|
const res = await getMyUserInformation(server.url, server.accessToken)
|
2020-01-31 10:56:52 -05:00
|
|
|
channelId = res.body.videoChannels[0].id
|
2018-08-03 05:10:31 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('When listing my video imports', function () {
|
|
|
|
const myPath = '/api/v1/users/me/videos/imports'
|
|
|
|
|
|
|
|
it('Should fail with a bad start pagination', async function () {
|
|
|
|
await checkBadStartPagination(server.url, myPath, server.accessToken)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a bad count pagination', async function () {
|
|
|
|
await checkBadCountPagination(server.url, myPath, server.accessToken)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with an incorrect sort', async function () {
|
|
|
|
await checkBadSortPagination(server.url, myPath, server.accessToken)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should success with the correct parameters', async function () {
|
2020-12-07 08:32:36 -05:00
|
|
|
await makeGetRequest({ url: server.url, path: myPath, statusCodeExpected: HttpStatusCode.OK_200, token: server.accessToken })
|
2018-08-03 05:10:31 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('When adding a video import', function () {
|
|
|
|
let baseCorrectParams
|
|
|
|
|
|
|
|
before(function () {
|
|
|
|
baseCorrectParams = {
|
2020-07-30 03:43:12 -04:00
|
|
|
targetUrl: getGoodVideoUrl(),
|
2018-08-03 05:10:31 -04:00
|
|
|
name: 'my super name',
|
|
|
|
category: 5,
|
|
|
|
licence: 1,
|
|
|
|
language: 'pt',
|
|
|
|
nsfw: false,
|
|
|
|
commentsEnabled: true,
|
2018-10-08 08:45:22 -04:00
|
|
|
downloadEnabled: true,
|
2018-08-03 05:10:31 -04:00
|
|
|
waitTranscoding: true,
|
|
|
|
description: 'my super description',
|
|
|
|
support: 'my super support text',
|
|
|
|
tags: [ 'tag1', 'tag2' ],
|
|
|
|
privacy: VideoPrivacy.PUBLIC,
|
2019-07-25 10:23:44 -04:00
|
|
|
channelId
|
2018-08-03 05:10:31 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with nothing', async function () {
|
|
|
|
const fields = {}
|
|
|
|
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
2018-08-03 10:23:45 -04:00
|
|
|
it('Should fail without a target url', async function () {
|
|
|
|
const fields = omit(baseCorrectParams, 'targetUrl')
|
2020-12-07 08:32:36 -05:00
|
|
|
await makePostBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
|
|
|
token: server.accessToken,
|
|
|
|
fields,
|
|
|
|
statusCodeExpected: HttpStatusCode.BAD_REQUEST_400
|
|
|
|
})
|
2018-08-03 10:23:45 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a bad target url', async function () {
|
|
|
|
const fields = immutableAssign(baseCorrectParams, { targetUrl: 'htt://hello' })
|
|
|
|
|
|
|
|
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
2018-08-03 05:10:31 -04:00
|
|
|
it('Should fail with a long name', async function () {
|
|
|
|
const fields = immutableAssign(baseCorrectParams, { name: 'super'.repeat(65) })
|
|
|
|
|
|
|
|
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a bad category', async function () {
|
|
|
|
const fields = immutableAssign(baseCorrectParams, { category: 125 })
|
|
|
|
|
|
|
|
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a bad licence', async function () {
|
|
|
|
const fields = immutableAssign(baseCorrectParams, { licence: 125 })
|
|
|
|
|
|
|
|
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a bad language', async function () {
|
|
|
|
const fields = immutableAssign(baseCorrectParams, { language: 'a'.repeat(15) })
|
|
|
|
|
|
|
|
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a long description', async function () {
|
|
|
|
const fields = immutableAssign(baseCorrectParams, { description: 'super'.repeat(2500) })
|
|
|
|
|
|
|
|
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a long support text', async function () {
|
2018-10-19 02:54:01 -04:00
|
|
|
const fields = immutableAssign(baseCorrectParams, { support: 'super'.repeat(201) })
|
2018-08-03 05:10:31 -04:00
|
|
|
|
|
|
|
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail without a channel', async function () {
|
|
|
|
const fields = omit(baseCorrectParams, 'channelId')
|
|
|
|
|
|
|
|
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a bad channel', async function () {
|
|
|
|
const fields = immutableAssign(baseCorrectParams, { channelId: 545454 })
|
|
|
|
|
|
|
|
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with another user channel', async function () {
|
|
|
|
const user = {
|
|
|
|
username: 'fake',
|
|
|
|
password: 'fake_password'
|
|
|
|
}
|
2019-04-15 04:49:46 -04:00
|
|
|
await createUser({ url: server.url, accessToken: server.accessToken, username: user.username, password: user.password })
|
2018-08-03 05:10:31 -04:00
|
|
|
|
|
|
|
const accessTokenUser = await userLogin(server, user)
|
|
|
|
const res = await getMyUserInformation(server.url, accessTokenUser)
|
|
|
|
const customChannelId = res.body.videoChannels[0].id
|
|
|
|
|
|
|
|
const fields = immutableAssign(baseCorrectParams, { channelId: customChannelId })
|
|
|
|
|
|
|
|
await makePostBodyRequest({ url: server.url, path, token: userAccessToken, fields })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with too many tags', async function () {
|
|
|
|
const fields = immutableAssign(baseCorrectParams, { tags: [ 'tag1', 'tag2', 'tag3', 'tag4', 'tag5', 'tag6' ] })
|
|
|
|
|
|
|
|
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a tag length too low', async function () {
|
|
|
|
const fields = immutableAssign(baseCorrectParams, { tags: [ 'tag1', 't' ] })
|
|
|
|
|
|
|
|
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a tag length too big', async function () {
|
|
|
|
const fields = immutableAssign(baseCorrectParams, { tags: [ 'tag1', 'my_super_tag_too_long_long_long_long_long_long' ] })
|
|
|
|
|
|
|
|
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with an incorrect thumbnail file', async function () {
|
|
|
|
const fields = baseCorrectParams
|
|
|
|
const attaches = {
|
2020-01-31 10:56:52 -05:00
|
|
|
thumbnailfile: join(__dirname, '..', '..', 'fixtures', 'avatar.png')
|
2018-08-03 05:10:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
await makeUploadRequest({ url: server.url, path, token: server.accessToken, fields, attaches })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a big thumbnail file', async function () {
|
|
|
|
const fields = baseCorrectParams
|
|
|
|
const attaches = {
|
2020-01-31 10:56:52 -05:00
|
|
|
thumbnailfile: join(__dirname, '..', '..', 'fixtures', 'avatar-big.png')
|
2018-08-03 05:10:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
await makeUploadRequest({ url: server.url, path, token: server.accessToken, fields, attaches })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with an incorrect preview file', async function () {
|
|
|
|
const fields = baseCorrectParams
|
|
|
|
const attaches = {
|
2020-01-31 10:56:52 -05:00
|
|
|
previewfile: join(__dirname, '..', '..', 'fixtures', 'avatar.png')
|
2018-08-03 05:10:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
await makeUploadRequest({ url: server.url, path, token: server.accessToken, fields, attaches })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a big preview file', async function () {
|
|
|
|
const fields = baseCorrectParams
|
|
|
|
const attaches = {
|
2020-01-31 10:56:52 -05:00
|
|
|
previewfile: join(__dirname, '..', '..', 'fixtures', 'avatar-big.png')
|
2018-08-03 05:10:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
await makeUploadRequest({ url: server.url, path, token: server.accessToken, fields, attaches })
|
|
|
|
})
|
|
|
|
|
2018-08-07 05:56:18 -04:00
|
|
|
it('Should fail with an invalid torrent file', async function () {
|
|
|
|
const fields = omit(baseCorrectParams, 'targetUrl')
|
|
|
|
const attaches = {
|
2020-01-31 10:56:52 -05:00
|
|
|
torrentfile: join(__dirname, '..', '..', 'fixtures', 'avatar-big.png')
|
2018-08-07 05:56:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
await makeUploadRequest({ url: server.url, path, token: server.accessToken, fields, attaches })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with an invalid magnet URI', async function () {
|
|
|
|
let fields = omit(baseCorrectParams, 'targetUrl')
|
|
|
|
fields = immutableAssign(fields, { magnetUri: 'blabla' })
|
|
|
|
|
|
|
|
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
2018-08-03 05:10:31 -04:00
|
|
|
it('Should succeed with the correct parameters', async function () {
|
2018-08-14 05:40:14 -04:00
|
|
|
this.timeout(30000)
|
2018-08-03 05:10:31 -04:00
|
|
|
|
2020-07-30 03:43:12 -04:00
|
|
|
await makePostBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
|
|
|
token: server.accessToken,
|
|
|
|
fields: baseCorrectParams,
|
2020-12-07 08:32:36 -05:00
|
|
|
statusCodeExpected: HttpStatusCode.OK_200
|
2020-07-30 03:43:12 -04:00
|
|
|
})
|
2018-08-03 05:10:31 -04:00
|
|
|
})
|
|
|
|
|
2018-08-07 05:56:18 -04:00
|
|
|
it('Should forbid to import http videos', async function () {
|
2018-08-03 10:23:45 -04:00
|
|
|
await updateCustomSubConfig(server.url, server.accessToken, {
|
|
|
|
import: {
|
|
|
|
videos: {
|
|
|
|
http: {
|
|
|
|
enabled: false
|
2018-08-07 05:56:18 -04:00
|
|
|
},
|
|
|
|
torrent: {
|
|
|
|
enabled: true
|
2018-08-03 10:23:45 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
await makePostBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
|
|
|
token: server.accessToken,
|
|
|
|
fields: baseCorrectParams,
|
2020-12-07 08:32:36 -05:00
|
|
|
statusCodeExpected: HttpStatusCode.CONFLICT_409
|
2018-08-03 10:23:45 -04:00
|
|
|
})
|
|
|
|
})
|
2018-08-07 05:56:18 -04:00
|
|
|
|
|
|
|
it('Should forbid to import torrent videos', async function () {
|
|
|
|
await updateCustomSubConfig(server.url, server.accessToken, {
|
|
|
|
import: {
|
|
|
|
videos: {
|
|
|
|
http: {
|
|
|
|
enabled: true
|
|
|
|
},
|
|
|
|
torrent: {
|
|
|
|
enabled: false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
let fields = omit(baseCorrectParams, 'targetUrl')
|
|
|
|
fields = immutableAssign(fields, { magnetUri: getMagnetURI() })
|
|
|
|
|
2020-12-07 08:32:36 -05:00
|
|
|
await makePostBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
|
|
|
token: server.accessToken,
|
|
|
|
fields,
|
|
|
|
statusCodeExpected: HttpStatusCode.CONFLICT_409
|
|
|
|
})
|
2018-08-07 05:56:18 -04:00
|
|
|
|
|
|
|
fields = omit(fields, 'magnetUri')
|
|
|
|
const attaches = {
|
2020-01-31 10:56:52 -05:00
|
|
|
torrentfile: join(__dirname, '..', '..', 'fixtures', 'video-720p.torrent')
|
2018-08-07 05:56:18 -04:00
|
|
|
}
|
|
|
|
|
2020-12-07 08:32:36 -05:00
|
|
|
await makeUploadRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
|
|
|
token: server.accessToken,
|
|
|
|
fields,
|
|
|
|
attaches,
|
|
|
|
statusCodeExpected: HttpStatusCode.CONFLICT_409
|
|
|
|
})
|
2018-08-07 05:56:18 -04:00
|
|
|
})
|
2018-08-03 05:10:31 -04:00
|
|
|
})
|
|
|
|
|
2019-04-24 09:10:37 -04:00
|
|
|
after(async function () {
|
|
|
|
await cleanupTests([ server ])
|
2018-08-03 05:10:31 -04:00
|
|
|
})
|
|
|
|
})
|