PeerTube/server/tests/api/check-params/video-imports.ts

333 lines
11 KiB
TypeScript
Raw Normal View History

2020-01-31 16:56:52 +01:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2018-08-03 11:10:31 +02:00
import 'mocha'
import { omit } from 'lodash'
2018-08-03 11:10:31 +02:00
import { join } from 'path'
import {
2019-04-24 15:10:37 +02:00
cleanupTests,
2018-08-03 11:10:31 +02:00
createUser,
2019-04-24 15:10:37 +02:00
flushAndRunServer,
2018-08-03 11:10:31 +02:00
getMyUserInformation,
immutableAssign,
makeGetRequest,
makePostBodyRequest,
makeUploadRequest,
ServerInfo,
setAccessTokensToServers,
2018-08-03 16:23:45 +02:00
updateCustomSubConfig,
2018-08-03 11:10:31 +02:00
userLogin
} from '../../../../shared/extra-utils'
import {
checkBadCountPagination,
checkBadSortPagination,
checkBadStartPagination
} from '../../../../shared/extra-utils/requests/check-api-params'
import { getMagnetURI, getGoodVideoUrl } from '../../../../shared/extra-utils/videos/video-imports'
import { VideoPrivacy } from '../../../../shared/models/videos/video-privacy.enum'
import { HttpStatusCode } from '../../../../shared/core-utils/miscs/http-error-codes'
2018-08-03 11:10:31 +02: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 10:53:40 +02:00
server = await flushAndRunServer(1)
2018-08-03 11:10:31 +02:00
await setAccessTokensToServers([ server ])
const username = 'user1'
const password = 'my super password'
2019-04-15 10:49:46 +02:00
await createUser({ url: server.url, accessToken: server.accessToken, username: username, password: password })
2018-08-03 11:10:31 +02:00
userAccessToken = await userLogin(server, { username, password })
{
const res = await getMyUserInformation(server.url, server.accessToken)
2020-01-31 16:56:52 +01:00
channelId = res.body.videoChannels[0].id
2018-08-03 11:10:31 +02: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 11:10:31 +02:00
})
})
describe('When adding a video import', function () {
let baseCorrectParams
before(function () {
baseCorrectParams = {
targetUrl: getGoodVideoUrl(),
2018-08-03 11:10:31 +02:00
name: 'my super name',
category: 5,
licence: 1,
language: 'pt',
nsfw: false,
commentsEnabled: true,
downloadEnabled: true,
2018-08-03 11:10:31 +02:00
waitTranscoding: true,
description: 'my super description',
support: 'my super support text',
tags: [ 'tag1', 'tag2' ],
privacy: VideoPrivacy.PUBLIC,
2019-07-25 16:23:44 +02:00
channelId
2018-08-03 11:10:31 +02:00
}
})
it('Should fail with nothing', async function () {
const fields = {}
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
})
2018-08-03 16:23:45 +02: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 16:23:45 +02: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 11:10:31 +02: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 () {
const fields = immutableAssign(baseCorrectParams, { support: 'super'.repeat(201) })
2018-08-03 11:10:31 +02: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 10:49:46 +02:00
await createUser({ url: server.url, accessToken: server.accessToken, username: user.username, password: user.password })
2018-08-03 11:10:31 +02: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 16:56:52 +01:00
thumbnailfile: join(__dirname, '..', '..', 'fixtures', 'avatar.png')
2018-08-03 11:10:31 +02: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 16:56:52 +01:00
thumbnailfile: join(__dirname, '..', '..', 'fixtures', 'avatar-big.png')
2018-08-03 11:10:31 +02: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 16:56:52 +01:00
previewfile: join(__dirname, '..', '..', 'fixtures', 'avatar.png')
2018-08-03 11:10:31 +02: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 16:56:52 +01:00
previewfile: join(__dirname, '..', '..', 'fixtures', 'avatar-big.png')
2018-08-03 11:10:31 +02: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 = {
2020-01-31 16:56:52 +01:00
torrentfile: join(__dirname, '..', '..', 'fixtures', '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')
fields = immutableAssign(fields, { magnetUri: 'blabla' })
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
})
2018-08-03 11:10:31 +02:00
it('Should succeed with the correct parameters', async function () {
2018-08-14 11:40:14 +02:00
this.timeout(30000)
2018-08-03 11:10:31 +02:00
await makePostBodyRequest({
url: server.url,
path,
token: server.accessToken,
fields: baseCorrectParams,
statusCodeExpected: HttpStatusCode.OK_200
})
2018-08-03 11:10:31 +02:00
})
it('Should forbid to import http videos', async function () {
2018-08-03 16:23:45 +02:00
await updateCustomSubConfig(server.url, server.accessToken, {
import: {
videos: {
http: {
enabled: false
},
torrent: {
enabled: true
2018-08-03 16:23:45 +02:00
}
}
}
})
await makePostBodyRequest({
url: server.url,
path,
token: server.accessToken,
fields: baseCorrectParams,
statusCodeExpected: HttpStatusCode.CONFLICT_409
2018-08-03 16:23:45 +02: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() })
await makePostBodyRequest({
url: server.url,
path,
token: server.accessToken,
fields,
statusCodeExpected: HttpStatusCode.CONFLICT_409
})
fields = omit(fields, 'magnetUri')
const attaches = {
2020-01-31 16:56:52 +01:00
torrentfile: join(__dirname, '..', '..', 'fixtures', 'video-720p.torrent')
}
await makeUploadRequest({
url: server.url,
path,
token: server.accessToken,
fields,
attaches,
statusCodeExpected: HttpStatusCode.CONFLICT_409
})
})
2018-08-03 11:10:31 +02:00
})
2019-04-24 15:10:37 +02:00
after(async function () {
await cleanupTests([ server ])
2018-08-03 11:10:31 +02:00
})
})