PeerTube/packages/tests/src/api/server/config.ts

674 lines
21 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 */
2017-09-04 21:21:47 +02:00
2024-02-23 14:27:11 +01:00
import { ActorImageType, CustomConfig, HttpStatusCode } from '@peertube/peertube-models'
2017-09-04 21:21:47 +02:00
import {
2024-03-27 14:00:40 +01:00
PeerTubeServer,
2019-04-24 15:10:37 +02:00
cleanupTests,
2021-07-16 09:47:51 +02:00
createSingleServer,
2020-01-31 16:56:52 +01:00
killallServers,
makeActivityPubGetRequest,
2021-04-12 15:33:54 +02:00
makeGetRequest,
makeRawRequest,
2021-07-15 10:02:54 +02:00
setAccessTokensToServers
} from '@peertube/peertube-server-commands'
2024-03-27 14:00:40 +01:00
import { testAvatarSize, testFileExistsOnFSOrNot, testImage } from '@tests/shared/checks.js'
import { expect } from 'chai'
import { basename } from 'path'
2017-09-04 21:21:47 +02:00
2021-07-16 09:47:51 +02:00
function checkInitialConfig (server: PeerTubeServer, data: CustomConfig) {
2018-07-12 19:02:00 +02:00
expect(data.instance.name).to.equal('PeerTube')
expect(data.instance.shortDescription).to.equal(
'PeerTube, an ActivityPub-federated video streaming platform using P2P directly in your web browser.'
2018-07-12 19:02:00 +02:00
)
expect(data.instance.description).to.equal('Welcome to this PeerTube instance!')
2019-08-23 15:23:27 +02:00
2018-07-12 19:02:00 +02:00
expect(data.instance.terms).to.equal('No terms for now.')
2019-09-03 09:49:04 +02:00
expect(data.instance.creationReason).to.be.empty
2019-08-23 15:23:27 +02:00
expect(data.instance.codeOfConduct).to.be.empty
expect(data.instance.moderationInformation).to.be.empty
expect(data.instance.administrator).to.be.empty
expect(data.instance.maintenanceLifetime).to.be.empty
expect(data.instance.businessModel).to.be.empty
expect(data.instance.hardwareInformation).to.be.empty
2019-08-23 15:23:27 +02:00
expect(data.instance.languages).to.have.lengthOf(0)
expect(data.instance.categories).to.have.lengthOf(0)
2018-07-12 19:02:00 +02:00
expect(data.instance.defaultClientRoute).to.equal('/videos/trending')
2019-02-20 15:36:43 +01:00
expect(data.instance.isNSFW).to.be.false
2018-07-12 19:02:00 +02:00
expect(data.instance.defaultNSFWPolicy).to.equal('display')
expect(data.instance.customizations.css).to.be.empty
expect(data.instance.customizations.javascript).to.be.empty
2019-01-09 15:14:29 +01:00
2018-07-12 19:02:00 +02:00
expect(data.services.twitter.username).to.equal('@Chocobozzz')
2019-01-09 15:14:29 +01:00
expect(data.client.videos.miniature.preferAuthorDisplayName).to.be.false
expect(data.client.menu.login.redirectOnSingleExternalAuth).to.be.false
2018-07-12 19:02:00 +02:00
expect(data.cache.previews.size).to.equal(1)
expect(data.cache.captions.size).to.equal(1)
expect(data.cache.torrents.size).to.equal(1)
2023-06-01 14:51:16 +02:00
expect(data.cache.storyboards.size).to.equal(1)
2019-01-09 15:14:29 +01:00
2018-07-12 19:02:00 +02:00
expect(data.signup.enabled).to.be.true
expect(data.signup.limit).to.equal(4)
expect(data.signup.minimumAge).to.equal(16)
2023-01-19 09:28:29 +01:00
expect(data.signup.requiresApproval).to.be.false
expect(data.signup.requiresEmailVerification).to.be.false
2019-01-09 15:14:29 +01:00
2024-03-28 10:03:47 +01:00
expect(data.admin.email).to.equal(`admin${server.internalServerNumber}@example.com`)
2019-01-09 15:14:29 +01:00
expect(data.contactForm.enabled).to.be.true
expect(data.user.history.videos.enabled).to.be.true
2018-07-12 19:02:00 +02:00
expect(data.user.videoQuota).to.equal(5242880)
2018-08-28 11:32:03 +02:00
expect(data.user.videoQuotaDaily).to.equal(-1)
expect(data.videoChannels.maxPerUser).to.equal(20)
2018-07-12 19:02:00 +02:00
expect(data.transcoding.enabled).to.be.false
2023-04-21 15:00:01 +02:00
expect(data.transcoding.remoteRunners.enabled).to.be.false
2018-12-11 14:52:50 +01:00
expect(data.transcoding.allowAdditionalExtensions).to.be.false
2019-05-16 16:55:34 +02:00
expect(data.transcoding.allowAudioFiles).to.be.false
2018-07-12 19:02:00 +02:00
expect(data.transcoding.threads).to.equal(2)
expect(data.transcoding.concurrency).to.equal(2)
expect(data.transcoding.profile).to.equal('default')
expect(data.transcoding.resolutions['144p']).to.be.false
2018-07-12 19:02:00 +02:00
expect(data.transcoding.resolutions['240p']).to.be.true
expect(data.transcoding.resolutions['360p']).to.be.true
expect(data.transcoding.resolutions['480p']).to.be.true
expect(data.transcoding.resolutions['720p']).to.be.true
expect(data.transcoding.resolutions['1080p']).to.be.true
expect(data.transcoding.resolutions['1440p']).to.be.true
2019-06-12 17:33:29 +02:00
expect(data.transcoding.resolutions['2160p']).to.be.true
expect(data.transcoding.alwaysTranscodeOriginalResolution).to.be.true
2023-07-11 09:52:14 +02:00
expect(data.transcoding.webVideos.enabled).to.be.true
2019-01-29 08:37:25 +01:00
expect(data.transcoding.hls.enabled).to.be.true
expect(data.transcoding.originalFile.keep).to.be.false
2019-01-29 08:37:25 +01:00
expect(data.live.enabled).to.be.false
2020-11-06 16:43:43 +01:00
expect(data.live.allowReplay).to.be.false
2022-03-04 13:40:02 +01:00
expect(data.live.latencySetting.enabled).to.be.true
2020-12-15 09:23:28 +01:00
expect(data.live.maxDuration).to.equal(-1)
2020-10-28 15:24:40 +01:00
expect(data.live.maxInstanceLives).to.equal(20)
expect(data.live.maxUserLives).to.equal(3)
expect(data.live.transcoding.enabled).to.be.false
2023-04-21 15:00:01 +02:00
expect(data.live.transcoding.remoteRunners.enabled).to.be.false
expect(data.live.transcoding.threads).to.equal(2)
expect(data.live.transcoding.profile).to.equal('default')
expect(data.live.transcoding.resolutions['144p']).to.be.false
expect(data.live.transcoding.resolutions['240p']).to.be.false
expect(data.live.transcoding.resolutions['360p']).to.be.false
expect(data.live.transcoding.resolutions['480p']).to.be.false
expect(data.live.transcoding.resolutions['720p']).to.be.false
expect(data.live.transcoding.resolutions['1080p']).to.be.false
expect(data.live.transcoding.resolutions['1440p']).to.be.false
expect(data.live.transcoding.resolutions['2160p']).to.be.false
expect(data.live.transcoding.alwaysTranscodeOriginalResolution).to.be.true
2022-03-22 16:58:49 +01:00
expect(data.videoStudio.enabled).to.be.false
expect(data.videoStudio.remoteRunners.enabled).to.be.false
2022-02-11 10:51:33 +01:00
2023-07-19 16:02:49 +02:00
expect(data.videoFile.update.enabled).to.be.false
expect(data.import.videos.concurrency).to.equal(2)
2018-08-03 11:10:31 +02:00
expect(data.import.videos.http.enabled).to.be.true
2018-08-07 10:07:53 +02:00
expect(data.import.videos.torrent.enabled).to.be.true
2024-02-12 10:49:45 +01:00
expect(data.import.videoChannelSynchronization.enabled).to.be.false
expect(data.import.users.enabled).to.be.true
expect(data.autoBlacklist.videos.ofUsers.enabled).to.be.false
2019-04-08 14:04:57 +02:00
expect(data.followers.instance.enabled).to.be.true
expect(data.followers.instance.manualApproval).to.be.false
expect(data.followings.instance.autoFollowBack.enabled).to.be.false
expect(data.followings.instance.autoFollowIndex.enabled).to.be.false
2020-05-11 13:43:56 +02:00
expect(data.followings.instance.autoFollowIndex.indexUrl).to.equal('')
2020-05-28 11:15:38 +02:00
expect(data.broadcastMessage.enabled).to.be.false
expect(data.broadcastMessage.level).to.equal('info')
expect(data.broadcastMessage.message).to.equal('')
expect(data.broadcastMessage.dismissable).to.be.false
2023-12-27 10:39:09 +01:00
expect(data.storyboards.enabled).to.be.true
2024-02-12 10:49:45 +01:00
expect(data.export.users.enabled).to.be.true
expect(data.export.users.exportExpiration).to.equal(1000 * 3600 * 48)
expect(data.export.users.maxUserVideoQuota).to.equal(10737418240)
2018-07-12 19:02:00 +02:00
}
2024-03-28 10:03:47 +01:00
function buildNewCustomConfig (server: PeerTubeServer): CustomConfig {
return {
instance: {
name: 'PeerTube updated',
shortDescription: 'my short description',
description: 'my super description',
terms: 'my super terms',
codeOfConduct: 'my super coc',
creationReason: 'my super creation reason',
moderationInformation: 'my super moderation information',
administrator: 'Kuja',
maintenanceLifetime: 'forever',
businessModel: 'my super business model',
hardwareInformation: '2vCore 3GB RAM',
languages: [ 'en', 'es' ],
categories: [ 1, 2 ],
isNSFW: true,
defaultNSFWPolicy: 'blur' as 'blur',
defaultClientRoute: '/videos/recently-added',
customizations: {
javascript: 'alert("coucou")',
css: 'body { background-color: red; }'
}
},
2024-03-28 10:03:47 +01:00
theme: {
default: 'default'
},
2024-03-28 10:03:47 +01:00
services: {
twitter: {
username: '@Kuja'
}
2023-06-01 14:51:16 +02:00
},
2024-03-28 10:03:47 +01:00
client: {
videos: {
2024-03-28 10:03:47 +01:00
miniature: {
preferAuthorDisplayName: true
}
},
menu: {
login: {
redirectOnSingleExternalAuth: true
}
}
},
2024-03-28 10:03:47 +01:00
cache: {
previews: {
size: 2
},
captions: {
size: 3
},
torrents: {
size: 4
},
storyboards: {
size: 5
}
},
2024-03-28 10:03:47 +01:00
signup: {
enabled: false,
limit: 5,
requiresApproval: false,
requiresEmailVerification: false,
minimumAge: 10
},
2024-03-28 10:03:47 +01:00
admin: {
email: `admin${server.internalServerNumber}@example.com`
},
2024-03-28 10:03:47 +01:00
contactForm: {
2022-03-04 13:40:02 +01:00
enabled: false
},
2024-03-28 10:03:47 +01:00
user: {
history: {
videos: {
enabled: false
}
},
videoQuota: 5242881,
videoQuotaDaily: 318742,
defaultChannelName: 'Main $1 channel'
},
videoChannels: {
maxPerUser: 24
},
transcoding: {
enabled: true,
2023-04-21 15:00:01 +02:00
remoteRunners: {
enabled: true
},
2024-03-28 10:03:47 +01:00
originalFile: {
keep: true
},
allowAdditionalExtensions: true,
allowAudioFiles: true,
threads: 1,
concurrency: 3,
profile: 'vod_profile',
resolutions: {
2024-03-28 10:03:47 +01:00
'0p': false,
'144p': false,
'240p': false,
'360p': true,
'480p': true,
2024-03-28 10:03:47 +01:00
'720p': false,
'1080p': false,
'1440p': false,
'2160p': false
},
2024-03-28 10:03:47 +01:00
alwaysTranscodeOriginalResolution: false,
webVideos: {
enabled: true
},
2024-03-28 10:03:47 +01:00
hls: {
enabled: false
}
Channel sync (#5135) * Add external channel URL for channel update / creation (#754) * Disallow synchronisation if user has no video quota (#754) * More constraints serverside (#754) * Disable sync if server configuration does not allow HTTP import (#754) * Working version synchronizing videos with a job (#754) TODO: refactoring, too much code duplication * More logs and try/catch (#754) * Fix eslint error (#754) * WIP: support synchronization time change (#754) * New frontend #754 * WIP: Create sync front (#754) * Enhance UI, sync creation form (#754) * Warning message when HTTP upload is disallowed * More consistent names (#754) * Binding Front with API (#754) * Add a /me API (#754) * Improve list UI (#754) * Implement creation and deletion routes (#754) * Lint (#754) * Lint again (#754) * WIP: UI for triggering import existing videos (#754) * Implement jobs for syncing and importing channels * Don't sync videos before sync creation + avoid concurrency issue (#754) * Cleanup (#754) * Cleanup: OpenAPI + API rework (#754) * Remove dead code (#754) * Eslint (#754) * Revert the mess with whitespaces in constants.ts (#754) * Some fixes after rebase (#754) * Several fixes after PR remarks (#754) * Front + API: Rename video-channels-sync to video-channel-syncs (#754) * Allow enabling channel sync through UI (#754) * getChannelInfo (#754) * Minor fixes: openapi + model + sql (#754) * Simplified API validators (#754) * Rename MChannelSync to MChannelSyncChannel (#754) * Add command for VideoChannelSync (#754) * Use synchronization.enabled config (#754) * Check parameters test + some fixes (#754) * Fix conflict mistake (#754) * Restrict access to video channel sync list API (#754) * Start adding unit test for synchronization (#754) * Continue testing (#754) * Tests finished + convertion of job to scheduler (#754) * Add lastSyncAt field (#754) * Fix externalRemoteUrl sort + creation date not well formatted (#754) * Small fix (#754) * Factorize addYoutubeDLImport and buildVideo (#754) * Check duplicates on channel not on users (#754) * factorize thumbnail generation (#754) * Fetch error should return status 400 (#754) * Separate video-channel-import and video-channel-sync-latest (#754) * Bump DB migration version after rebase (#754) * Prettier states in UI table (#754) * Add DefaultScope in VideoChannelSyncModel (#754) * Fix audit logs (#754) * Ensure user can upload when importing channel + minor fixes (#754) * Mark synchronization as failed on exception + typos (#754) * Change REST API for importing videos into channel (#754) * Add option for fully synchronize a chnanel (#754) * Return a whole sync object on creation to avoid tricks in Front (#754) * Various remarks (#754) * Single quotes by default (#754) * Rename synchronization to video_channel_synchronization * Add check.latest_videos_count and max_per_user options (#754) * Better channel rendering in list #754 * Allow sorting with channel name and state (#754) * Add missing tests for channel imports (#754) * Prefer using a parent job for channel sync * Styling * Client styling Co-authored-by: Chocobozzz <me@florianbigard.com>
2022-08-10 09:53:39 +02:00
},
2024-03-28 10:03:47 +01:00
live: {
enabled: true,
allowReplay: true,
latencySetting: {
enabled: false
},
maxDuration: 5000,
maxInstanceLives: -1,
maxUserLives: 10,
transcoding: {
enabled: true,
remoteRunners: {
enabled: true
},
threads: 4,
profile: 'live_profile',
resolutions: {
'144p': true,
'240p': true,
'360p': true,
'480p': true,
'720p': true,
'1080p': true,
'1440p': true,
'2160p': true
},
alwaysTranscodeOriginalResolution: false
}
2024-03-28 10:03:47 +01:00
},
videoStudio: {
enabled: true,
remoteRunners: {
enabled: true
}
2024-03-28 10:03:47 +01:00
},
videoFile: {
update: {
enabled: true
2024-03-28 10:03:47 +01:00
}
},
import: {
videos: {
concurrency: 4,
http: {
enabled: false
},
torrent: {
enabled: false
}
},
2024-03-28 10:03:47 +01:00
videoChannelSynchronization: {
enabled: false,
maxPerUser: 10
},
users: {
enabled: false
}
},
trending: {
videos: {
algorithms: {
enabled: [ 'hot', 'most-viewed', 'most-liked' ],
default: 'hot'
}
}
},
autoBlacklist: {
videos: {
ofUsers: {
enabled: true
}
}
},
followers: {
instance: {
enabled: false,
manualApproval: true
}
},
followings: {
instance: {
autoFollowBack: {
enabled: true
},
autoFollowIndex: {
enabled: true,
indexUrl: 'https://updated.example.com'
}
}
},
2024-03-28 10:03:47 +01:00
broadcastMessage: {
enabled: true,
2024-03-28 10:03:47 +01:00
level: 'error',
message: 'super bad message',
dismissable: true
},
search: {
remoteUri: {
anonymous: true,
users: true
},
searchIndex: {
enabled: true,
url: 'https://search.joinpeertube.org',
disableLocalSearch: true,
isDefaultSearch: true
}
},
storyboards: {
enabled: false
},
export: {
users: {
enabled: false,
exportExpiration: 43,
maxUserVideoQuota: 42
}
2024-02-12 10:49:45 +01:00
}
}
}
describe('Test static config', function () {
2024-03-28 10:03:47 +01:00
let server: PeerTubeServer
before(async function () {
this.timeout(30000)
2021-10-14 11:35:43 +02:00
server = await createSingleServer(1, { webadmin: { configuration: { edition: { allowed: false } } } })
await setAccessTokensToServers([ server ])
})
it('Should tell the client that edits are not allowed', async function () {
const data = await server.config.getConfig()
2021-10-14 11:35:43 +02:00
expect(data.webadmin.configuration.edition.allowed).to.be.false
})
it('Should error when client tries to update', async function () {
2024-03-28 10:03:47 +01:00
await server.config.updateCustomConfig({ newCustomConfig: buildNewCustomConfig(server), expectedStatus: 405 })
})
2021-10-13 11:52:42 +02:00
after(async function () {
await cleanupTests([ server ])
})
})
2017-09-04 21:21:47 +02:00
describe('Test config', function () {
let server: PeerTubeServer
2017-09-04 21:21:47 +02:00
before(async function () {
2018-01-18 18:10:45 +01:00
this.timeout(30000)
2019-04-26 08:50:52 +02:00
2021-07-16 09:47:51 +02:00
server = await createSingleServer(1)
await setAccessTokensToServers([ server ])
2017-09-04 21:21:47 +02:00
})
2024-02-23 14:27:11 +01:00
describe('Config keys', function () {
2024-02-23 14:27:11 +01:00
it('Should have the correct default config', async function () {
const data = await server.config.getConfig()
2024-02-23 14:27:11 +01:00
expect(data.openTelemetry.metrics.enabled).to.be.false
expect(data.openTelemetry.metrics.playbackStatsInterval).to.equal(15000)
2024-02-23 14:27:11 +01:00
expect(data.views.videos.watchingInterval.anonymous).to.equal(5000)
expect(data.views.videos.watchingInterval.users).to.equal(5000)
})
2017-09-04 21:21:47 +02:00
2024-02-23 14:27:11 +01:00
it('Should have a correct config on a server with registration enabled', async function () {
const data = await server.config.getConfig()
2017-09-04 21:21:47 +02:00
2024-02-23 14:27:11 +01:00
expect(data.signup.allowed).to.be.true
})
2017-11-24 14:39:14 +01:00
2024-02-23 14:27:11 +01:00
it('Should have a correct config on a server with registration enabled and a users limit', async function () {
this.timeout(5000)
2017-09-04 21:21:47 +02:00
2024-02-23 14:27:11 +01:00
await Promise.all([
server.registrations.register({ username: 'user1' }),
server.registrations.register({ username: 'user2' }),
server.registrations.register({ username: 'user3' })
])
2017-09-04 21:21:47 +02:00
2024-02-23 14:27:11 +01:00
const data = await server.config.getConfig()
2017-09-04 21:21:47 +02:00
2024-02-23 14:27:11 +01:00
expect(data.signup.allowed).to.be.false
})
2018-12-11 14:52:50 +01:00
2024-02-23 14:27:11 +01:00
it('Should have the correct video allowed extensions', async function () {
const data = await server.config.getConfig()
2019-01-09 15:14:29 +01:00
2024-02-23 14:27:11 +01:00
expect(data.video.file.extensions).to.have.lengthOf(3)
expect(data.video.file.extensions).to.contain('.mp4')
expect(data.video.file.extensions).to.contain('.webm')
expect(data.video.file.extensions).to.contain('.ogv')
2019-05-17 11:56:12 +02:00
2024-02-23 14:27:11 +01:00
await server.videos.upload({ attributes: { fixture: 'video_short.mkv' }, expectedStatus: HttpStatusCode.UNSUPPORTED_MEDIA_TYPE_415 })
await server.videos.upload({ attributes: { fixture: 'sample.ogg' }, expectedStatus: HttpStatusCode.UNSUPPORTED_MEDIA_TYPE_415 })
2018-12-11 14:52:50 +01:00
2024-02-23 14:27:11 +01:00
expect(data.contactForm.enabled).to.be.true
})
2024-02-23 14:27:11 +01:00
it('Should get the customized configuration', async function () {
const data = await server.config.getCustomConfig()
2024-02-23 14:27:11 +01:00
checkInitialConfig(server, data)
})
2024-02-23 14:27:11 +01:00
it('Should update the customized configuration', async function () {
2024-03-28 10:03:47 +01:00
await server.config.updateCustomConfig({ newCustomConfig: buildNewCustomConfig(server) })
2024-02-23 14:27:11 +01:00
const data = await server.config.getCustomConfig()
2024-03-28 10:03:47 +01:00
expect(data).to.deep.equal(buildNewCustomConfig(server))
2024-02-23 14:27:11 +01:00
})
2024-02-23 14:27:11 +01:00
it('Should have the correct updated video allowed extensions', async function () {
this.timeout(30000)
2018-12-11 14:52:50 +01:00
2024-02-23 14:27:11 +01:00
const data = await server.config.getConfig()
2018-12-11 14:52:50 +01:00
2024-02-23 14:27:11 +01:00
expect(data.video.file.extensions).to.have.length.above(4)
expect(data.video.file.extensions).to.contain('.mp4')
expect(data.video.file.extensions).to.contain('.webm')
expect(data.video.file.extensions).to.contain('.ogv')
expect(data.video.file.extensions).to.contain('.flv')
expect(data.video.file.extensions).to.contain('.wmv')
expect(data.video.file.extensions).to.contain('.mkv')
expect(data.video.file.extensions).to.contain('.mp3')
expect(data.video.file.extensions).to.contain('.ogg')
expect(data.video.file.extensions).to.contain('.flac')
2018-01-19 13:58:13 +01:00
2024-02-23 14:27:11 +01:00
await server.videos.upload({ attributes: { fixture: 'video_short.mkv' }, expectedStatus: HttpStatusCode.OK_200 })
await server.videos.upload({ attributes: { fixture: 'sample.ogg' }, expectedStatus: HttpStatusCode.OK_200 })
})
2024-02-23 14:27:11 +01:00
it('Should have the configuration updated after a restart', async function () {
this.timeout(30000)
2024-02-23 14:27:11 +01:00
await killallServers([ server ])
2024-02-23 14:27:11 +01:00
await server.run()
2024-02-23 14:27:11 +01:00
const data = await server.config.getCustomConfig()
2024-03-28 10:03:47 +01:00
expect(data).to.deep.equal(buildNewCustomConfig(server))
2024-02-23 14:27:11 +01:00
})
2024-02-23 14:27:11 +01:00
it('Should fetch the about information', async function () {
const { instance } = await server.config.getAbout()
2024-02-23 14:27:11 +01:00
expect(instance.name).to.equal('PeerTube updated')
expect(instance.shortDescription).to.equal('my short description')
expect(instance.description).to.equal('my super description')
expect(instance.terms).to.equal('my super terms')
expect(instance.codeOfConduct).to.equal('my super coc')
2024-02-23 14:27:11 +01:00
expect(instance.creationReason).to.equal('my super creation reason')
expect(instance.moderationInformation).to.equal('my super moderation information')
expect(instance.administrator).to.equal('Kuja')
expect(instance.maintenanceLifetime).to.equal('forever')
expect(instance.businessModel).to.equal('my super business model')
expect(instance.hardwareInformation).to.equal('2vCore 3GB RAM')
2024-02-23 14:27:11 +01:00
expect(instance.languages).to.deep.equal([ 'en', 'es' ])
expect(instance.categories).to.deep.equal([ 1, 2 ])
2024-02-23 14:27:11 +01:00
expect(instance.banners).to.have.lengthOf(0)
})
2024-02-23 14:27:11 +01:00
it('Should remove the custom configuration', async function () {
await server.config.deleteCustomConfig()
2024-02-23 14:27:11 +01:00
const data = await server.config.getCustomConfig()
checkInitialConfig(server, data)
})
2024-02-23 14:27:11 +01:00
it('Should enable/disable security headers', async function () {
this.timeout(25000)
2024-02-20 14:33:10 +01:00
2024-02-23 14:27:11 +01:00
{
const res = await makeGetRequest({
url: server.url,
path: '/api/v1/config',
expectedStatus: 200
})
2024-02-23 14:27:11 +01:00
expect(res.headers['x-frame-options']).to.exist
expect(res.headers['x-powered-by']).to.equal('PeerTube')
}
2024-02-23 14:27:11 +01:00
await killallServers([ server ])
2024-02-23 14:27:11 +01:00
const config = {
security: {
frameguard: { enabled: false },
powered_by_header: { enabled: false }
}
}
await server.run(config)
2018-01-31 17:47:36 +01:00
2024-02-23 14:27:11 +01:00
{
const res = await makeGetRequest({
url: server.url,
path: '/api/v1/config',
expectedStatus: 200
})
2024-02-23 14:27:11 +01:00
expect(res.headers['x-frame-options']).to.not.exist
expect(res.headers['x-powered-by']).to.not.exist
}
})
})
2024-02-23 14:27:11 +01:00
describe('Image files', function () {
2021-04-12 15:33:54 +02:00
2024-02-23 14:27:11 +01:00
async function checkAndGetServerImages () {
const { instance } = await server.config.getAbout()
2024-02-23 15:07:09 +01:00
const htmlConfig = await server.config.getConfig()
2021-04-12 15:33:54 +02:00
2024-02-23 14:27:11 +01:00
expect(instance.avatars).to.deep.equal(htmlConfig.instance.avatars)
expect(instance.banners).to.deep.equal(htmlConfig.instance.banners)
2021-04-12 15:33:54 +02:00
2024-02-23 14:27:11 +01:00
return htmlConfig.instance
2021-04-12 15:33:54 +02:00
}
2024-02-23 14:27:11 +01:00
describe('Banner', function () {
2024-03-27 14:00:40 +01:00
const bannerPaths: string[] = []
2024-02-23 14:27:11 +01:00
it('Should update instance banner', async function () {
await server.config.updateInstanceImage({ type: ActorImageType.BANNER, fixture: 'banner.jpg' })
const { banners } = await checkAndGetServerImages()
2024-03-27 14:00:40 +01:00
expect(banners).to.have.lengthOf(2)
2024-02-23 14:27:11 +01:00
2024-03-27 14:00:40 +01:00
for (const banner of banners) {
await testImage(server.url, `banner-resized-${banner.width}`, banner.path)
await testFileExistsOnFSOrNot(server, 'avatars', basename(banner.path), true)
bannerPaths.push(banner.path)
}
2021-04-12 15:33:54 +02:00
})
2024-02-23 14:27:11 +01:00
it('Should re-update an existing instance banner', async function () {
await server.config.updateInstanceImage({ type: ActorImageType.BANNER, fixture: 'banner.jpg' })
})
it('Should remove instance banner', async function () {
await server.config.deleteInstanceImage({ type: ActorImageType.BANNER })
const { banners } = await checkAndGetServerImages()
expect(banners).to.have.lengthOf(0)
2024-03-27 14:00:40 +01:00
for (const bannerPath of bannerPaths) {
await testFileExistsOnFSOrNot(server, 'avatars', basename(bannerPath), false)
}
2024-02-23 14:27:11 +01:00
})
})
describe('Avatar', function () {
2024-03-27 14:00:40 +01:00
const avatarPaths: string[] = []
2024-02-23 14:27:11 +01:00
it('Should update instance avatar', async function () {
for (const extension of [ '.png', '.gif' ]) {
const fixture = 'avatar' + extension
await server.config.updateInstanceImage({ type: ActorImageType.AVATAR, fixture })
const { avatars } = await checkAndGetServerImages()
for (const avatar of avatars) {
2024-02-26 14:33:22 +01:00
await testAvatarSize({ url: server.url, avatar, imageName: `avatar-resized-${avatar.width}x${avatar.width}` })
2024-03-27 14:00:40 +01:00
await testFileExistsOnFSOrNot(server, 'avatars', basename(avatar.path), true)
2024-02-23 14:27:11 +01:00
2024-03-27 14:00:40 +01:00
avatarPaths.push(avatar.path)
}
2024-02-23 14:27:11 +01:00
}
})
it('Should have the avatars in the AP representation of the instance', async function () {
const res = await makeActivityPubGetRequest(server.url, '/accounts/peertube')
const object = res.body
expect(object.icon).to.have.lengthOf(4)
for (const icon of object.icon) {
await makeRawRequest({ url: icon.url, expectedStatus: HttpStatusCode.OK_200 })
}
})
it('Should remove instance avatar', async function () {
2024-02-23 14:27:11 +01:00
await server.config.deleteInstanceImage({ type: ActorImageType.AVATAR })
const { avatars } = await checkAndGetServerImages()
expect(avatars).to.have.lengthOf(0)
2024-03-27 14:00:40 +01:00
for (const avatarPath of avatarPaths) {
await testFileExistsOnFSOrNot(server, 'avatars', basename(avatarPath), false)
}
2024-02-23 14:27:11 +01:00
})
it('Should not have the avatars anymore in the AP representation of the instance', async function () {
const res = await makeActivityPubGetRequest(server.url, '/accounts/peertube')
const object = res.body
expect(object.icon).to.not.exist
})
2024-02-23 14:27:11 +01:00
})
2021-04-12 15:33:54 +02:00
})
2019-04-24 15:10:37 +02:00
after(async function () {
await cleanupTests([ server ])
2017-09-04 21:21:47 +02:00
})
})