1
0
Fork 0
peertube/server/tests/api/check-params/video-imports.ts

330 lines
10 KiB
TypeScript
Raw Normal View History

2020-01-31 15:56:52 +00:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2018-08-03 09:10:31 +00:00
import 'mocha'
import { omit } from 'lodash'
2021-07-07 09:51:09 +00:00
import { HttpStatusCode } from '@shared/core-utils'
2018-08-03 09:10:31 +00:00
import {
2021-06-14 14:52:22 +00:00
buildAbsoluteFixturePath,
2021-07-07 09:51:09 +00:00
checkBadCountPagination,
checkBadSortPagination,
checkBadStartPagination,
2019-04-24 13:10:37 +00:00
cleanupTests,
flushAndRunServer,
2021-07-08 14:49:51 +00:00
ImportsCommand,
2018-08-03 09:10:31 +00:00
makeGetRequest,
makePostBodyRequest,
makeUploadRequest,
ServerInfo,
2021-07-13 09:05:15 +00:00
setAccessTokensToServers
2021-07-07 09:51:09 +00:00
} from '@shared/extra-utils'
import { VideoPrivacy } from '@shared/models'
2018-08-03 09:10:31 +00: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 08:53:40 +00:00
server = await flushAndRunServer(1)
2018-08-03 09:10:31 +00:00
await setAccessTokensToServers([ server ])
const username = 'user1'
const password = 'my super password'
2021-07-16 07:04:35 +00:00
await server.users.create({ username: username, password: password })
userAccessToken = await server.login.getAccessToken({ username, password })
2018-08-03 09:10:31 +00:00
{
2021-07-16 07:04:35 +00:00
const { videoChannels } = await server.users.getMyInfo()
2021-07-13 12:23:01 +00:00
channelId = videoChannels[0].id
2018-08-03 09:10:31 +00: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 () {
await makeGetRequest({ url: server.url, path: myPath, statusCodeExpected: HttpStatusCode.OK_200, token: server.accessToken })
2018-08-03 09:10:31 +00:00
})
})
describe('When adding a video import', function () {
let baseCorrectParams
before(function () {
baseCorrectParams = {
2021-07-08 14:49:51 +00:00
targetUrl: ImportsCommand.getGoodVideoUrl(),
2018-08-03 09:10:31 +00:00
name: 'my super name',
category: 5,
licence: 1,
language: 'pt',
nsfw: false,
commentsEnabled: true,
downloadEnabled: true,
2018-08-03 09:10:31 +00:00
waitTranscoding: true,
description: 'my super description',
support: 'my super support text',
tags: [ 'tag1', 'tag2' ],
privacy: VideoPrivacy.PUBLIC,
2019-07-25 14:23:44 +00:00
channelId
2018-08-03 09:10:31 +00:00
}
})
it('Should fail with nothing', async function () {
const fields = {}
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
})
2018-08-03 14:23:45 +00:00
it('Should fail without a target url', async function () {
const fields = omit(baseCorrectParams, 'targetUrl')
await makePostBodyRequest({
url: server.url,
path,
token: server.accessToken,
fields,
statusCodeExpected: HttpStatusCode.BAD_REQUEST_400
})
2018-08-03 14:23:45 +00:00
})
it('Should fail with a bad target url', async function () {
2021-07-13 07:43:59 +00:00
const fields = { ...baseCorrectParams, targetUrl: 'htt://hello' }
2018-08-03 14:23:45 +00:00
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
})
2018-08-03 09:10:31 +00:00
it('Should fail with a long name', async function () {
2021-07-13 07:43:59 +00:00
const fields = { ...baseCorrectParams, name: 'super'.repeat(65) }
2018-08-03 09:10:31 +00:00
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
})
it('Should fail with a bad category', async function () {
2021-07-13 07:43:59 +00:00
const fields = { ...baseCorrectParams, category: 125 }
2018-08-03 09:10:31 +00:00
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
})
it('Should fail with a bad licence', async function () {
2021-07-13 07:43:59 +00:00
const fields = { ...baseCorrectParams, licence: 125 }
2018-08-03 09:10:31 +00:00
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
})
it('Should fail with a bad language', async function () {
2021-07-13 07:43:59 +00:00
const fields = { ...baseCorrectParams, language: 'a'.repeat(15) }
2018-08-03 09:10:31 +00:00
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
})
it('Should fail with a long description', async function () {
2021-07-13 07:43:59 +00:00
const fields = { ...baseCorrectParams, description: 'super'.repeat(2500) }
2018-08-03 09:10:31 +00:00
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
})
it('Should fail with a long support text', async function () {
2021-07-13 07:43:59 +00:00
const fields = { ...baseCorrectParams, support: 'super'.repeat(201) }
2018-08-03 09:10:31 +00: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 () {
2021-07-13 07:43:59 +00:00
const fields = { ...baseCorrectParams, channelId: 545454 }
2018-08-03 09:10:31 +00:00
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'
}
2021-07-16 07:04:35 +00:00
await server.users.create({ username: user.username, password: user.password })
2018-08-03 09:10:31 +00:00
2021-07-16 07:04:35 +00:00
const accessTokenUser = await server.login.getAccessToken(user)
const { videoChannels } = await server.users.getMyInfo({ token: accessTokenUser })
2021-07-13 12:23:01 +00:00
const customChannelId = videoChannels[0].id
2018-08-03 09:10:31 +00:00
2021-07-13 07:43:59 +00:00
const fields = { ...baseCorrectParams, channelId: customChannelId }
2018-08-03 09:10:31 +00:00
await makePostBodyRequest({ url: server.url, path, token: userAccessToken, fields })
})
it('Should fail with too many tags', async function () {
2021-07-13 07:43:59 +00:00
const fields = { ...baseCorrectParams, tags: [ 'tag1', 'tag2', 'tag3', 'tag4', 'tag5', 'tag6' ] }
2018-08-03 09:10:31 +00:00
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
})
it('Should fail with a tag length too low', async function () {
2021-07-13 07:43:59 +00:00
const fields = { ...baseCorrectParams, tags: [ 'tag1', 't' ] }
2018-08-03 09:10:31 +00:00
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
})
it('Should fail with a tag length too big', async function () {
2021-07-13 07:43:59 +00:00
const fields = { ...baseCorrectParams, tags: [ 'tag1', 'my_super_tag_too_long_long_long_long_long_long' ] }
2018-08-03 09:10:31 +00:00
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 = {
2021-06-14 14:52:22 +00:00
thumbnailfile: buildAbsoluteFixturePath('video_short.mp4')
2018-08-03 09:10:31 +00: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 = {
2021-06-14 14:52:22 +00:00
thumbnailfile: buildAbsoluteFixturePath('preview-big.png')
2018-08-03 09:10:31 +00: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 = {
2021-06-14 14:52:22 +00:00
previewfile: buildAbsoluteFixturePath('video_short.mp4')
2018-08-03 09:10:31 +00: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 = {
2021-06-14 14:52:22 +00:00
previewfile: buildAbsoluteFixturePath('preview-big.png')
2018-08-03 09:10:31 +00:00
}
await makeUploadRequest({ url: server.url, path, token: server.accessToken, fields, attaches })
})
it('Should fail with an invalid torrent file', async function () {
const fields = omit(baseCorrectParams, 'targetUrl')
const attaches = {
2021-06-14 14:52:22 +00:00
torrentfile: buildAbsoluteFixturePath('avatar-big.png')
}
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')
2021-07-13 07:43:59 +00:00
fields = { ...fields, magnetUri: 'blabla' }
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
})
2018-08-03 09:10:31 +00:00
it('Should succeed with the correct parameters', async function () {
2018-08-14 09:40:14 +00:00
this.timeout(30000)
2018-08-03 09:10:31 +00:00
await makePostBodyRequest({
url: server.url,
path,
token: server.accessToken,
fields: baseCorrectParams,
statusCodeExpected: HttpStatusCode.OK_200
})
2018-08-03 09:10:31 +00:00
})
it('Should forbid to import http videos', async function () {
2021-07-16 07:04:35 +00:00
await server.config.updateCustomSubConfig({
2021-07-07 09:51:09 +00:00
newConfig: {
import: {
videos: {
http: {
enabled: false
},
torrent: {
enabled: true
}
2018-08-03 14:23:45 +00:00
}
}
}
})
await makePostBodyRequest({
url: server.url,
path,
token: server.accessToken,
fields: baseCorrectParams,
statusCodeExpected: HttpStatusCode.CONFLICT_409
2018-08-03 14:23:45 +00:00
})
})
it('Should forbid to import torrent videos', async function () {
2021-07-16 07:04:35 +00:00
await server.config.updateCustomSubConfig({
2021-07-07 09:51:09 +00:00
newConfig: {
import: {
videos: {
http: {
enabled: true
},
torrent: {
enabled: false
}
}
}
}
})
let fields = omit(baseCorrectParams, 'targetUrl')
2021-07-13 07:43:59 +00:00
fields = { ...fields, magnetUri: ImportsCommand.getMagnetURI() }
await makePostBodyRequest({
url: server.url,
path,
token: server.accessToken,
fields,
statusCodeExpected: HttpStatusCode.CONFLICT_409
})
fields = omit(fields, 'magnetUri')
const attaches = {
2021-06-14 14:52:22 +00:00
torrentfile: buildAbsoluteFixturePath('video-720p.torrent')
}
await makeUploadRequest({
url: server.url,
path,
token: server.accessToken,
fields,
attaches,
statusCodeExpected: HttpStatusCode.CONFLICT_409
})
})
2018-08-03 09:10:31 +00:00
})
2019-04-24 13:10:37 +00:00
after(async function () {
await cleanupTests([ server ])
2018-08-03 09:10:31 +00:00
})
})