123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332 |
- /* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
- import 'mocha'
- import { omit } from 'lodash'
- import { join } from 'path'
- import {
- cleanupTests,
- createUser,
- flushAndRunServer,
- getMyUserInformation,
- immutableAssign,
- makeGetRequest,
- makePostBodyRequest,
- makeUploadRequest,
- ServerInfo,
- setAccessTokensToServers,
- updateCustomSubConfig,
- 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'
- 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)
- server = await flushAndRunServer(1)
- await setAccessTokensToServers([ server ])
- const username = 'user1'
- const password = 'my super password'
- await createUser({ url: server.url, accessToken: server.accessToken, username: username, password: password })
- userAccessToken = await userLogin(server, { username, password })
- {
- const res = await getMyUserInformation(server.url, server.accessToken)
- channelId = res.body.videoChannels[0].id
- }
- })
- 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 })
- })
- })
- describe('When adding a video import', function () {
- let baseCorrectParams
- before(function () {
- baseCorrectParams = {
- targetUrl: getGoodVideoUrl(),
- name: 'my super name',
- category: 5,
- licence: 1,
- language: 'pt',
- nsfw: false,
- commentsEnabled: true,
- downloadEnabled: true,
- waitTranscoding: true,
- description: 'my super description',
- support: 'my super support text',
- tags: [ 'tag1', 'tag2' ],
- privacy: VideoPrivacy.PUBLIC,
- channelId
- }
- })
- it('Should fail with nothing', async function () {
- const fields = {}
- await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
- })
- 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
- })
- })
- 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 })
- })
- 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) })
- 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'
- }
- await createUser({ url: server.url, accessToken: server.accessToken, username: user.username, password: user.password })
- 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 = {
- thumbnailfile: join(__dirname, '..', '..', 'fixtures', 'avatar.png')
- }
- 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 = {
- thumbnailfile: join(__dirname, '..', '..', 'fixtures', 'avatar-big.png')
- }
- 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 = {
- previewfile: join(__dirname, '..', '..', 'fixtures', 'avatar.png')
- }
- 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 = {
- previewfile: join(__dirname, '..', '..', 'fixtures', 'avatar-big.png')
- }
- 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 = {
- 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 })
- })
- it('Should succeed with the correct parameters', async function () {
- this.timeout(30000)
- await makePostBodyRequest({
- url: server.url,
- path,
- token: server.accessToken,
- fields: baseCorrectParams,
- statusCodeExpected: HttpStatusCode.OK_200
- })
- })
- it('Should forbid to import http videos', async function () {
- await updateCustomSubConfig(server.url, server.accessToken, {
- import: {
- videos: {
- http: {
- enabled: false
- },
- torrent: {
- enabled: true
- }
- }
- }
- })
- await makePostBodyRequest({
- url: server.url,
- path,
- token: server.accessToken,
- fields: baseCorrectParams,
- statusCodeExpected: HttpStatusCode.CONFLICT_409
- })
- })
- 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 = {
- torrentfile: join(__dirname, '..', '..', 'fixtures', 'video-720p.torrent')
- }
- await makeUploadRequest({
- url: server.url,
- path,
- token: server.accessToken,
- fields,
- attaches,
- statusCodeExpected: HttpStatusCode.CONFLICT_409
- })
- })
- })
- after(async function () {
- await cleanupTests([ server ])
- })
- })
|