2020-01-31 10:56:52 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
2018-01-17 04:32:03 -05:00
|
|
|
|
|
|
|
import 'mocha'
|
2021-07-13 03:43:59 -04:00
|
|
|
import { omit } from 'lodash'
|
2018-01-17 04:32:03 -05:00
|
|
|
import {
|
2019-08-30 10:50:12 -04:00
|
|
|
cleanupTests,
|
2021-07-16 03:47:51 -04:00
|
|
|
createSingleServer,
|
2019-08-30 10:50:12 -04:00
|
|
|
makeDeleteRequest,
|
|
|
|
makeGetRequest,
|
|
|
|
makePutBodyRequest,
|
2021-07-16 03:47:51 -04:00
|
|
|
PeerTubeServer,
|
2021-07-13 05:05:15 -04:00
|
|
|
setAccessTokensToServers
|
2021-12-17 03:29:23 -05:00
|
|
|
} from '@shared/server-commands'
|
2021-07-16 08:27:30 -04:00
|
|
|
import { CustomConfig, HttpStatusCode } from '@shared/models'
|
2018-01-17 04:32:03 -05:00
|
|
|
|
|
|
|
describe('Test config API validators', function () {
|
|
|
|
const path = '/api/v1/config/custom'
|
2021-07-16 03:47:51 -04:00
|
|
|
let server: PeerTubeServer
|
2018-01-17 04:32:03 -05:00
|
|
|
let userAccessToken: string
|
|
|
|
const updateParams: CustomConfig = {
|
2018-01-31 10:42:40 -05:00
|
|
|
instance: {
|
|
|
|
name: 'PeerTube updated',
|
2018-03-15 09:31:08 -04:00
|
|
|
shortDescription: 'my short description',
|
2018-01-31 10:42:40 -05:00
|
|
|
description: 'my super description',
|
2018-02-22 04:22:53 -05:00
|
|
|
terms: 'my super terms',
|
2019-08-23 09:23:27 -04:00
|
|
|
codeOfConduct: 'my super coc',
|
|
|
|
|
2019-09-03 03:49:04 -04:00
|
|
|
creationReason: 'my super reason',
|
2019-08-23 09:23:27 -04:00
|
|
|
moderationInformation: 'my super moderation information',
|
|
|
|
administrator: 'Kuja',
|
|
|
|
maintenanceLifetime: 'forever',
|
|
|
|
businessModel: 'my super business model',
|
2019-09-05 03:43:35 -04:00
|
|
|
hardwareInformation: '2vCore 3GB RAM',
|
2019-08-23 09:23:27 -04:00
|
|
|
|
|
|
|
languages: [ 'en', 'es' ],
|
|
|
|
categories: [ 1, 2 ],
|
|
|
|
|
2019-02-20 09:36:43 -05:00
|
|
|
isNSFW: true,
|
2018-04-19 05:01:34 -04:00
|
|
|
defaultNSFWPolicy: 'blur',
|
2021-01-25 19:53:13 -05:00
|
|
|
|
|
|
|
defaultClientRoute: '/videos/recently-added',
|
|
|
|
|
2018-02-22 04:22:53 -05:00
|
|
|
customizations: {
|
|
|
|
javascript: 'alert("coucou")',
|
|
|
|
css: 'body { background-color: red; }'
|
|
|
|
}
|
2018-01-31 10:42:40 -05:00
|
|
|
},
|
2019-07-09 05:45:19 -04:00
|
|
|
theme: {
|
|
|
|
default: 'default'
|
|
|
|
},
|
2018-05-10 06:26:47 -04:00
|
|
|
services: {
|
|
|
|
twitter: {
|
|
|
|
username: '@MySuperUsername',
|
|
|
|
whitelisted: true
|
|
|
|
}
|
|
|
|
},
|
2021-12-03 11:04:47 -05:00
|
|
|
client: {
|
|
|
|
videos: {
|
|
|
|
miniature: {
|
|
|
|
preferAuthorDisplayName: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
menu: {
|
|
|
|
login: {
|
|
|
|
redirectOnSingleExternalAuth: false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2018-01-17 04:32:03 -05:00
|
|
|
cache: {
|
|
|
|
previews: {
|
|
|
|
size: 2
|
2018-07-12 13:02:00 -04:00
|
|
|
},
|
|
|
|
captions: {
|
|
|
|
size: 3
|
2021-02-18 05:07:08 -05:00
|
|
|
},
|
|
|
|
torrents: {
|
|
|
|
size: 4
|
2018-01-17 04:32:03 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
signup: {
|
|
|
|
enabled: false,
|
2018-08-31 03:18:19 -04:00
|
|
|
limit: 5,
|
2021-04-24 05:57:01 -04:00
|
|
|
requiresEmailVerification: false,
|
|
|
|
minimumAge: 16
|
2018-01-17 04:32:03 -05:00
|
|
|
},
|
|
|
|
admin: {
|
|
|
|
email: 'superadmin1@example.com'
|
|
|
|
},
|
2019-01-09 09:14:29 -05:00
|
|
|
contactForm: {
|
|
|
|
enabled: false
|
|
|
|
},
|
2018-01-17 04:32:03 -05:00
|
|
|
user: {
|
2018-08-28 03:01:35 -04:00
|
|
|
videoQuota: 5242881,
|
|
|
|
videoQuotaDaily: 318742
|
2018-01-17 04:32:03 -05:00
|
|
|
},
|
2021-10-26 10:42:10 -04:00
|
|
|
videoChannels: {
|
|
|
|
maxPerUser: 20
|
|
|
|
},
|
2018-01-17 04:32:03 -05:00
|
|
|
transcoding: {
|
|
|
|
enabled: true,
|
2018-12-11 08:52:50 -05:00
|
|
|
allowAdditionalExtensions: true,
|
2019-05-16 10:55:34 -04:00
|
|
|
allowAudioFiles: true,
|
2021-02-08 04:51:10 -05:00
|
|
|
concurrency: 1,
|
2018-01-17 04:32:03 -05:00
|
|
|
threads: 1,
|
2021-01-28 09:52:44 -05:00
|
|
|
profile: 'vod_profile',
|
2018-01-17 04:32:03 -05:00
|
|
|
resolutions: {
|
2019-10-31 21:06:19 -04:00
|
|
|
'0p': false,
|
2021-11-05 05:23:02 -04:00
|
|
|
'144p': false,
|
2018-01-17 04:32:03 -05:00
|
|
|
'240p': false,
|
|
|
|
'360p': true,
|
|
|
|
'480p': true,
|
|
|
|
'720p': false,
|
2019-06-12 11:33:29 -04:00
|
|
|
'1080p': false,
|
2020-12-24 12:02:04 -05:00
|
|
|
'1440p': false,
|
2019-06-12 11:33:29 -04:00
|
|
|
'2160p': false
|
2019-01-29 02:37:25 -05:00
|
|
|
},
|
2019-11-15 09:06:03 -05:00
|
|
|
webtorrent: {
|
|
|
|
enabled: true
|
|
|
|
},
|
2019-01-29 02:37:25 -05:00
|
|
|
hls: {
|
|
|
|
enabled: false
|
2018-01-17 04:32:03 -05:00
|
|
|
}
|
2018-08-03 05:10:31 -04:00
|
|
|
},
|
2020-09-17 03:20:52 -04:00
|
|
|
live: {
|
|
|
|
enabled: true,
|
|
|
|
|
2020-09-25 10:19:35 -04:00
|
|
|
allowReplay: false,
|
2020-12-15 03:23:28 -05:00
|
|
|
maxDuration: 30,
|
2020-10-28 10:24:40 -04:00
|
|
|
maxInstanceLives: -1,
|
|
|
|
maxUserLives: 50,
|
2020-09-25 10:19:35 -04:00
|
|
|
|
2020-09-17 03:20:52 -04:00
|
|
|
transcoding: {
|
|
|
|
enabled: true,
|
|
|
|
threads: 4,
|
2021-01-28 09:52:44 -05:00
|
|
|
profile: 'live_profile',
|
2020-09-17 03:20:52 -04:00
|
|
|
resolutions: {
|
2021-11-05 05:23:02 -04:00
|
|
|
'144p': true,
|
2020-09-17 03:20:52 -04:00
|
|
|
'240p': true,
|
|
|
|
'360p': true,
|
|
|
|
'480p': true,
|
|
|
|
'720p': true,
|
|
|
|
'1080p': true,
|
2020-12-24 12:02:04 -05:00
|
|
|
'1440p': true,
|
2020-09-17 03:20:52 -04:00
|
|
|
'2160p': true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2018-08-03 05:10:31 -04:00
|
|
|
import: {
|
|
|
|
videos: {
|
2021-02-08 04:51:10 -05:00
|
|
|
concurrency: 1,
|
2018-08-03 05:10:31 -04:00
|
|
|
http: {
|
|
|
|
enabled: false
|
2018-08-07 04:07:53 -04:00
|
|
|
},
|
|
|
|
torrent: {
|
|
|
|
enabled: false
|
2018-08-03 05:10:31 -04:00
|
|
|
}
|
|
|
|
}
|
2019-04-02 05:26:47 -04:00
|
|
|
},
|
2021-01-27 11:15:21 -05:00
|
|
|
trending: {
|
|
|
|
videos: {
|
|
|
|
algorithms: {
|
2021-02-02 06:59:41 -05:00
|
|
|
enabled: [ 'best', 'hot', 'most-viewed', 'most-liked' ],
|
2021-01-27 11:15:21 -05:00
|
|
|
default: 'most-viewed'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2019-04-02 05:26:47 -04:00
|
|
|
autoBlacklist: {
|
|
|
|
videos: {
|
|
|
|
ofUsers: {
|
|
|
|
enabled: false
|
|
|
|
}
|
|
|
|
}
|
2019-04-08 08:04:57 -04:00
|
|
|
},
|
|
|
|
followers: {
|
|
|
|
instance: {
|
2019-04-08 09:18:04 -04:00
|
|
|
enabled: false,
|
|
|
|
manualApproval: true
|
2019-04-08 08:04:57 -04:00
|
|
|
}
|
2019-08-30 10:50:12 -04:00
|
|
|
},
|
|
|
|
followings: {
|
|
|
|
instance: {
|
|
|
|
autoFollowBack: {
|
|
|
|
enabled: true
|
|
|
|
},
|
|
|
|
autoFollowIndex: {
|
|
|
|
enabled: true,
|
|
|
|
indexUrl: 'https://index.example.com'
|
|
|
|
}
|
|
|
|
}
|
2020-05-28 05:15:38 -04:00
|
|
|
},
|
|
|
|
broadcastMessage: {
|
|
|
|
enabled: true,
|
|
|
|
dismissable: true,
|
|
|
|
message: 'super message',
|
|
|
|
level: 'warning'
|
2020-05-29 10:16:24 -04:00
|
|
|
},
|
|
|
|
search: {
|
|
|
|
remoteUri: {
|
|
|
|
users: true,
|
|
|
|
anonymous: true
|
|
|
|
},
|
|
|
|
searchIndex: {
|
|
|
|
enabled: true,
|
|
|
|
url: 'https://search.joinpeertube.org',
|
|
|
|
disableLocalSearch: true,
|
|
|
|
isDefaultSearch: true
|
|
|
|
}
|
2018-01-17 04:32:03 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------
|
|
|
|
|
|
|
|
before(async function () {
|
2018-01-18 12:10:45 -05:00
|
|
|
this.timeout(30000)
|
2018-01-17 04:32:03 -05:00
|
|
|
|
2021-07-16 03:47:51 -04:00
|
|
|
server = await createSingleServer(1)
|
2018-01-17 04:32:03 -05:00
|
|
|
|
|
|
|
await setAccessTokensToServers([ server ])
|
|
|
|
|
|
|
|
const user = {
|
|
|
|
username: 'user1',
|
|
|
|
password: 'password'
|
|
|
|
}
|
2021-07-16 03:04:35 -04:00
|
|
|
await server.users.create({ username: user.username, password: user.password })
|
|
|
|
userAccessToken = await server.login.getAccessToken(user)
|
2018-01-17 04:32:03 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('When getting the configuration', function () {
|
|
|
|
it('Should fail without token', async function () {
|
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.UNAUTHORIZED_401
|
2018-01-17 04:32:03 -05:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail if the user is not an administrator', async function () {
|
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
|
|
|
token: userAccessToken,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.FORBIDDEN_403
|
2018-01-17 04:32:03 -05:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('When updating the configuration', function () {
|
|
|
|
it('Should fail without token', async function () {
|
|
|
|
await makePutBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
|
|
|
fields: updateParams,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.UNAUTHORIZED_401
|
2018-01-17 04:32:03 -05:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail if the user is not an administrator', async function () {
|
|
|
|
await makePutBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
|
|
|
fields: updateParams,
|
|
|
|
token: userAccessToken,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.FORBIDDEN_403
|
2018-01-17 04:32:03 -05:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail if it misses a key', async function () {
|
|
|
|
const newUpdateParams = omit(updateParams, 'admin.email')
|
|
|
|
|
|
|
|
await makePutBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
2018-04-19 05:01:34 -04:00
|
|
|
fields: newUpdateParams,
|
|
|
|
token: server.accessToken,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.BAD_REQUEST_400
|
2018-04-19 05:01:34 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a bad default NSFW policy', async function () {
|
2021-07-13 03:43:59 -04:00
|
|
|
const newUpdateParams = {
|
|
|
|
...updateParams,
|
|
|
|
|
2018-04-19 05:01:34 -04:00
|
|
|
instance: {
|
|
|
|
defaultNSFWPolicy: 'hello'
|
|
|
|
}
|
2021-07-13 03:43:59 -04:00
|
|
|
}
|
2018-04-19 05:01:34 -04:00
|
|
|
|
|
|
|
await makePutBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
2019-02-17 13:14:00 -05:00
|
|
|
fields: newUpdateParams,
|
|
|
|
token: server.accessToken,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.BAD_REQUEST_400
|
2019-02-17 13:14:00 -05:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail if email disabled and signup requires email verification', async function () {
|
2019-04-24 09:10:37 -04:00
|
|
|
// opposite scenario - success when enable enabled - covered via tests/api/users/user-verification.ts
|
2021-07-13 03:43:59 -04:00
|
|
|
const newUpdateParams = {
|
|
|
|
...updateParams,
|
|
|
|
|
2019-02-17 13:14:00 -05:00
|
|
|
signup: {
|
|
|
|
enabled: true,
|
|
|
|
limit: 5,
|
|
|
|
requiresEmailVerification: true
|
|
|
|
}
|
2021-07-13 03:43:59 -04:00
|
|
|
}
|
2019-02-17 13:14:00 -05:00
|
|
|
|
|
|
|
await makePutBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
2018-01-17 04:32:03 -05:00
|
|
|
fields: newUpdateParams,
|
|
|
|
token: server.accessToken,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.BAD_REQUEST_400
|
2018-01-17 04:32:03 -05:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
it('Should fail with a disabled webtorrent & hls transcoding', async function () {
|
2021-07-13 03:43:59 -04:00
|
|
|
const newUpdateParams = {
|
|
|
|
...updateParams,
|
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
transcoding: {
|
|
|
|
hls: {
|
|
|
|
enabled: false
|
|
|
|
},
|
|
|
|
webtorrent: {
|
|
|
|
enabled: false
|
|
|
|
}
|
|
|
|
}
|
2021-07-13 03:43:59 -04:00
|
|
|
}
|
2019-11-15 09:06:03 -05:00
|
|
|
|
|
|
|
await makePutBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
|
|
|
fields: newUpdateParams,
|
|
|
|
token: server.accessToken,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.BAD_REQUEST_400
|
2019-11-15 09:06:03 -05:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-01-17 04:32:03 -05:00
|
|
|
it('Should success with the correct parameters', async function () {
|
|
|
|
await makePutBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
|
|
|
fields: updateParams,
|
|
|
|
token: server.accessToken,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.OK_200
|
2018-01-17 04:32:03 -05:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('When deleting the configuration', function () {
|
|
|
|
it('Should fail without token', async function () {
|
|
|
|
await makeDeleteRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.UNAUTHORIZED_401
|
2018-01-17 04:32:03 -05:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail if the user is not an administrator', async function () {
|
|
|
|
await makeDeleteRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
|
|
|
token: userAccessToken,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.FORBIDDEN_403
|
2018-01-17 04:32:03 -05:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-04-24 09:10:37 -04:00
|
|
|
after(async function () {
|
|
|
|
await cleanupTests([ server ])
|
2018-01-17 04:32:03 -05:00
|
|
|
})
|
|
|
|
})
|