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'
|
2021-12-17 05:58:15 -05:00
|
|
|
import { checkBadCountPagination, checkBadSortPagination, checkBadStartPagination, FIXTURE_URLS } from '@server/tests/shared'
|
|
|
|
import { buildAbsoluteFixturePath } from '@shared/core-utils'
|
|
|
|
import { HttpStatusCode, VideoPrivacy } from '@shared/models'
|
2018-08-03 05:10:31 -04:00
|
|
|
import {
|
2019-04-24 09:10:37 -04:00
|
|
|
cleanupTests,
|
2021-07-16 03:47:51 -04:00
|
|
|
createSingleServer,
|
2018-08-03 05:10:31 -04:00
|
|
|
makeGetRequest,
|
|
|
|
makePostBodyRequest,
|
|
|
|
makeUploadRequest,
|
2021-07-16 03:47:51 -04:00
|
|
|
PeerTubeServer,
|
2022-01-19 08:23:00 -05:00
|
|
|
setAccessTokensToServers,
|
|
|
|
setDefaultVideoChannel,
|
|
|
|
waitJobs
|
2021-12-17 03:29:23 -05:00
|
|
|
} from '@shared/server-commands'
|
2018-08-03 05:10:31 -04:00
|
|
|
|
|
|
|
describe('Test video imports API validator', function () {
|
|
|
|
const path = '/api/v1/videos/imports'
|
2021-07-16 03:47:51 -04:00
|
|
|
let server: PeerTubeServer
|
2018-08-03 05:10:31 -04:00
|
|
|
let userAccessToken = ''
|
|
|
|
let channelId: number
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------
|
|
|
|
|
|
|
|
before(async function () {
|
|
|
|
this.timeout(30000)
|
|
|
|
|
2021-07-16 03:47:51 -04:00
|
|
|
server = await createSingleServer(1)
|
2018-08-03 05:10:31 -04:00
|
|
|
|
|
|
|
await setAccessTokensToServers([ server ])
|
2022-01-19 08:23:00 -05:00
|
|
|
await setDefaultVideoChannel([ server ])
|
2018-08-03 05:10:31 -04:00
|
|
|
|
|
|
|
const username = 'user1'
|
|
|
|
const password = 'my super password'
|
2021-07-16 03:04:35 -04:00
|
|
|
await server.users.create({ username: username, password: password })
|
|
|
|
userAccessToken = await server.login.getAccessToken({ username, password })
|
2018-08-03 05:10:31 -04:00
|
|
|
|
|
|
|
{
|
2021-07-16 03:04:35 -04:00
|
|
|
const { videoChannels } = await server.users.getMyInfo()
|
2021-07-13 08:23:01 -04:00
|
|
|
channelId = 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 () {
|
2021-07-16 04:42:24 -04:00
|
|
|
await makeGetRequest({ url: server.url, path: myPath, expectedStatus: 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 = {
|
2021-07-16 04:19:16 -04:00
|
|
|
targetUrl: FIXTURE_URLS.goodVideo,
|
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,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.BAD_REQUEST_400
|
2020-12-07 08:32:36 -05:00
|
|
|
})
|
2018-08-03 10:23:45 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a bad target url', async function () {
|
2021-07-13 03:43:59 -04:00
|
|
|
const fields = { ...baseCorrectParams, targetUrl: 'htt://hello' }
|
2018-08-03 10:23:45 -04:00
|
|
|
|
|
|
|
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
|
|
|
})
|
2022-01-06 05:16:35 -05:00
|
|
|
|
|
|
|
it('Should fail with localhost', async function () {
|
|
|
|
const fields = { ...baseCorrectParams, targetUrl: 'http://localhost:8000' }
|
|
|
|
|
|
|
|
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a private IP target urls', async function () {
|
|
|
|
const targetUrls = [
|
|
|
|
'http://127.0.0.1:8000',
|
|
|
|
'http://127.0.0.1',
|
|
|
|
'http://127.0.0.1/hello',
|
|
|
|
'https://192.168.1.42',
|
|
|
|
'http://192.168.1.42'
|
|
|
|
]
|
|
|
|
|
|
|
|
for (const targetUrl of targetUrls) {
|
|
|
|
const fields = { ...baseCorrectParams, targetUrl }
|
|
|
|
|
|
|
|
await makePostBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
|
|
|
token: server.accessToken,
|
|
|
|
fields,
|
|
|
|
expectedStatus: HttpStatusCode.FORBIDDEN_403
|
|
|
|
})
|
|
|
|
}
|
|
|
|
})
|
2018-08-03 10:23:45 -04:00
|
|
|
|
2018-08-03 05:10:31 -04:00
|
|
|
it('Should fail with a long name', async function () {
|
2021-07-13 03:43:59 -04:00
|
|
|
const fields = { ...baseCorrectParams, name: 'super'.repeat(65) }
|
2018-08-03 05:10:31 -04:00
|
|
|
|
|
|
|
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a bad category', async function () {
|
2021-07-13 03:43:59 -04:00
|
|
|
const fields = { ...baseCorrectParams, category: 125 }
|
2018-08-03 05:10:31 -04:00
|
|
|
|
|
|
|
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a bad licence', async function () {
|
2021-07-13 03:43:59 -04:00
|
|
|
const fields = { ...baseCorrectParams, licence: 125 }
|
2018-08-03 05:10:31 -04:00
|
|
|
|
|
|
|
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a bad language', async function () {
|
2021-07-13 03:43:59 -04:00
|
|
|
const fields = { ...baseCorrectParams, language: 'a'.repeat(15) }
|
2018-08-03 05:10:31 -04:00
|
|
|
|
|
|
|
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a long description', async function () {
|
2021-07-13 03:43:59 -04:00
|
|
|
const fields = { ...baseCorrectParams, description: 'super'.repeat(2500) }
|
2018-08-03 05:10:31 -04:00
|
|
|
|
|
|
|
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a long support text', async function () {
|
2021-07-13 03:43:59 -04:00
|
|
|
const fields = { ...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 () {
|
2021-07-13 03:43:59 -04:00
|
|
|
const fields = { ...baseCorrectParams, channelId: 545454 }
|
2018-08-03 05:10:31 -04: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 03:04:35 -04:00
|
|
|
await server.users.create({ username: user.username, password: user.password })
|
2018-08-03 05:10:31 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const accessTokenUser = await server.login.getAccessToken(user)
|
|
|
|
const { videoChannels } = await server.users.getMyInfo({ token: accessTokenUser })
|
2021-07-13 08:23:01 -04:00
|
|
|
const customChannelId = videoChannels[0].id
|
2018-08-03 05:10:31 -04:00
|
|
|
|
2021-07-13 03:43:59 -04:00
|
|
|
const fields = { ...baseCorrectParams, channelId: customChannelId }
|
2018-08-03 05:10:31 -04:00
|
|
|
|
|
|
|
await makePostBodyRequest({ url: server.url, path, token: userAccessToken, fields })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with too many tags', async function () {
|
2021-07-13 03:43:59 -04:00
|
|
|
const fields = { ...baseCorrectParams, tags: [ 'tag1', 'tag2', 'tag3', 'tag4', 'tag5', 'tag6' ] }
|
2018-08-03 05:10:31 -04: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 03:43:59 -04:00
|
|
|
const fields = { ...baseCorrectParams, tags: [ 'tag1', 't' ] }
|
2018-08-03 05:10:31 -04: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 03:43:59 -04:00
|
|
|
const fields = { ...baseCorrectParams, tags: [ 'tag1', 'my_super_tag_too_long_long_long_long_long_long' ] }
|
2018-08-03 05:10:31 -04: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 10:52:22 -04:00
|
|
|
thumbnailfile: buildAbsoluteFixturePath('video_short.mp4')
|
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 = {
|
2021-06-14 10:52:22 -04:00
|
|
|
thumbnailfile: buildAbsoluteFixturePath('preview-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 = {
|
2021-06-14 10:52:22 -04:00
|
|
|
previewfile: buildAbsoluteFixturePath('video_short.mp4')
|
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 = {
|
2021-06-14 10:52:22 -04:00
|
|
|
previewfile: buildAbsoluteFixturePath('preview-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 = {
|
2021-06-14 10:52:22 -04:00
|
|
|
torrentfile: buildAbsoluteFixturePath('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')
|
2021-07-13 03:43:59 -04:00
|
|
|
fields = { ...fields, magnetUri: 'blabla' }
|
2018-08-07 05:56:18 -04:00
|
|
|
|
|
|
|
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,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: 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 () {
|
2021-07-16 03:04:35 -04:00
|
|
|
await server.config.updateCustomSubConfig({
|
2021-07-07 05:51:09 -04:00
|
|
|
newConfig: {
|
|
|
|
import: {
|
|
|
|
videos: {
|
|
|
|
http: {
|
|
|
|
enabled: false
|
|
|
|
},
|
|
|
|
torrent: {
|
|
|
|
enabled: true
|
|
|
|
}
|
2018-08-03 10:23:45 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
await makePostBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
|
|
|
token: server.accessToken,
|
|
|
|
fields: baseCorrectParams,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: 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 () {
|
2021-07-16 03:04:35 -04:00
|
|
|
await server.config.updateCustomSubConfig({
|
2021-07-07 05:51:09 -04:00
|
|
|
newConfig: {
|
|
|
|
import: {
|
|
|
|
videos: {
|
|
|
|
http: {
|
|
|
|
enabled: true
|
|
|
|
},
|
|
|
|
torrent: {
|
|
|
|
enabled: false
|
|
|
|
}
|
2018-08-07 05:56:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
let fields = omit(baseCorrectParams, 'targetUrl')
|
2021-07-16 04:19:16 -04:00
|
|
|
fields = { ...fields, magnetUri: FIXTURE_URLS.magnet }
|
2018-08-07 05:56:18 -04:00
|
|
|
|
2020-12-07 08:32:36 -05:00
|
|
|
await makePostBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
|
|
|
token: server.accessToken,
|
|
|
|
fields,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.CONFLICT_409
|
2020-12-07 08:32:36 -05:00
|
|
|
})
|
2018-08-07 05:56:18 -04:00
|
|
|
|
|
|
|
fields = omit(fields, 'magnetUri')
|
|
|
|
const attaches = {
|
2021-06-14 10:52:22 -04:00
|
|
|
torrentfile: buildAbsoluteFixturePath('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,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.CONFLICT_409
|
2020-12-07 08:32:36 -05:00
|
|
|
})
|
2018-08-07 05:56:18 -04:00
|
|
|
})
|
2018-08-03 05:10:31 -04:00
|
|
|
})
|
|
|
|
|
2022-01-19 08:23:00 -05:00
|
|
|
describe('Deleting/cancelling a video import', function () {
|
|
|
|
let importId: number
|
|
|
|
|
|
|
|
async function importVideo () {
|
|
|
|
const attributes = { channelId: server.store.channel.id, targetUrl: FIXTURE_URLS.goodVideo }
|
|
|
|
const res = await server.imports.importVideo({ attributes })
|
|
|
|
|
|
|
|
return res.id
|
|
|
|
}
|
|
|
|
|
|
|
|
before(async function () {
|
|
|
|
importId = await importVideo()
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with an invalid import id', async function () {
|
|
|
|
await server.imports.cancel({ importId: 'artyom' as any, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
|
|
|
|
await server.imports.delete({ importId: 'artyom' as any, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with an unknown import id', async function () {
|
|
|
|
await server.imports.cancel({ importId: 42, expectedStatus: HttpStatusCode.NOT_FOUND_404 })
|
|
|
|
await server.imports.delete({ importId: 42, expectedStatus: HttpStatusCode.NOT_FOUND_404 })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail without token', async function () {
|
|
|
|
await server.imports.cancel({ importId, token: null, expectedStatus: HttpStatusCode.UNAUTHORIZED_401 })
|
|
|
|
await server.imports.delete({ importId, token: null, expectedStatus: HttpStatusCode.UNAUTHORIZED_401 })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with another user token', async function () {
|
|
|
|
await server.imports.cancel({ importId, token: userAccessToken, expectedStatus: HttpStatusCode.FORBIDDEN_403 })
|
|
|
|
await server.imports.delete({ importId, token: userAccessToken, expectedStatus: HttpStatusCode.FORBIDDEN_403 })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail to cancel non pending import', async function () {
|
|
|
|
this.timeout(60000)
|
|
|
|
|
|
|
|
await waitJobs([ server ])
|
|
|
|
|
|
|
|
await server.imports.cancel({ importId, expectedStatus: HttpStatusCode.CONFLICT_409 })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should succeed to delete an import', async function () {
|
|
|
|
await server.imports.delete({ importId })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail to delete a pending import', async function () {
|
|
|
|
await server.jobs.pauseJobQueue()
|
|
|
|
|
|
|
|
importId = await importVideo()
|
|
|
|
|
|
|
|
await server.imports.delete({ importId, expectedStatus: HttpStatusCode.CONFLICT_409 })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should succeed to cancel an import', async function () {
|
|
|
|
importId = await importVideo()
|
|
|
|
|
|
|
|
await server.imports.cancel({ importId })
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-04-24 09:10:37 -04:00
|
|
|
after(async function () {
|
|
|
|
await cleanupTests([ server ])
|
2018-08-03 05:10:31 -04:00
|
|
|
})
|
|
|
|
})
|