Files
PeerTube/packages/tests/src/api/check-params/services.ts
T

207 lines
6.7 KiB
TypeScript
Raw Normal View History

2026-03-26 15:15:36 +01:00
/* oxlint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2017-10-16 10:05:49 +02:00
2023-07-31 14:34:36 +02:00
import {
HttpStatusCode,
HttpStatusCodeType,
VideoCreateResult,
VideoPlaylistCreateResult,
VideoPlaylistPrivacy,
VideoPrivacy
} from '@peertube/peertube-models'
2018-10-29 22:18:31 +05:30
import {
2019-04-24 15:10:37 +02:00
cleanupTests,
2021-07-16 09:47:51 +02:00
createSingleServer,
2019-04-24 15:10:37 +02:00
makeGetRequest,
2021-07-16 09:47:51 +02:00
PeerTubeServer,
2018-10-29 22:18:31 +05:30
setAccessTokensToServers,
2021-07-15 10:02:54 +02:00
setDefaultVideoChannel
2023-07-31 14:34:36 +02:00
} from '@peertube/peertube-server-commands'
2017-10-16 10:05:49 +02:00
describe('Test services API validators', function () {
2021-07-16 09:47:51 +02:00
let server: PeerTubeServer
2020-08-05 15:35:58 +02:00
let playlistUUID: string
2017-10-16 10:05:49 +02:00
2022-05-02 14:57:37 +02:00
let privateVideo: VideoCreateResult
let unlistedVideo: VideoCreateResult
let privatePlaylist: VideoPlaylistCreateResult
let unlistedPlaylist: VideoPlaylistCreateResult
2017-10-16 10:05:49 +02:00
// ---------------------------------------------------------------
before(async function () {
this.timeout(60000)
2021-07-16 09:47:51 +02:00
server = await createSingleServer(1)
2017-10-16 10:05:49 +02:00
await setAccessTokensToServers([ server ])
2020-08-05 15:35:58 +02:00
await setDefaultVideoChannel([ server ])
2021-07-22 14:28:03 +02:00
server.store.videoCreated = await server.videos.upload({ attributes: { name: 'my super name' } })
2020-08-05 15:35:58 +02:00
2022-05-02 14:57:37 +02:00
privateVideo = await server.videos.quickUpload({ name: 'private', privacy: VideoPrivacy.PRIVATE })
unlistedVideo = await server.videos.quickUpload({ name: 'unlisted', privacy: VideoPrivacy.UNLISTED })
2020-08-05 15:35:58 +02:00
{
2021-07-16 09:04:35 +02:00
const created = await server.playlists.create({
2021-07-08 15:54:39 +02:00
attributes: {
2020-08-05 15:35:58 +02:00
displayName: 'super playlist',
privacy: VideoPlaylistPrivacy.PUBLIC,
2021-07-16 09:04:35 +02:00
videoChannelId: server.store.channel.id
2020-08-05 15:35:58 +02:00
}
})
2021-07-08 15:54:39 +02:00
playlistUUID = created.uuid
2022-05-02 14:57:37 +02:00
privatePlaylist = await server.playlists.create({
attributes: {
displayName: 'private',
privacy: VideoPlaylistPrivacy.PRIVATE,
videoChannelId: server.store.channel.id
}
})
unlistedPlaylist = await server.playlists.create({
attributes: {
displayName: 'unlisted',
privacy: VideoPlaylistPrivacy.UNLISTED,
videoChannelId: server.store.channel.id
}
})
2020-08-05 15:35:58 +02:00
}
2017-10-16 10:05:49 +02:00
})
describe('Test oEmbed API validators', function () {
it('Should fail with an invalid url', async function () {
const embedUrl = 'hello.com'
2017-12-28 14:49:43 +01:00
await checkParamEmbed(server, embedUrl)
2017-10-16 10:05:49 +02:00
})
it('Should fail with an invalid host', async function () {
2021-07-22 14:28:03 +02:00
const embedUrl = 'http://hello.com/videos/watch/' + server.store.videoCreated.uuid
2017-12-28 14:49:43 +01:00
await checkParamEmbed(server, embedUrl)
2017-10-16 10:05:49 +02:00
})
2020-08-05 15:35:58 +02:00
it('Should fail with an invalid element id', async function () {
2022-12-09 11:14:47 +01:00
const embedUrl = `${server.url}/videos/watch/blabla`
2017-12-28 14:49:43 +01:00
await checkParamEmbed(server, embedUrl)
2017-10-16 10:05:49 +02:00
})
2020-08-05 15:35:58 +02:00
it('Should fail with an unknown element', async function () {
2022-12-09 11:14:47 +01:00
const embedUrl = `${server.url}/videos/watch/88fc0165-d1f0-4a35-a51a-3b47f668689c`
await checkParamEmbed(server, embedUrl, HttpStatusCode.NOT_FOUND_404)
2017-10-16 10:05:49 +02:00
})
it('Should fail with an invalid path', async function () {
2022-12-09 11:14:47 +01:00
const embedUrl = `${server.url}/videos/watchs/${server.store.videoCreated.uuid}`
2017-10-16 10:05:49 +02:00
2017-12-28 14:49:43 +01:00
await checkParamEmbed(server, embedUrl)
2017-10-16 10:05:49 +02:00
})
it('Should fail with an invalid max height', async function () {
2022-12-09 11:14:47 +01:00
const embedUrl = `${server.url}/videos/watch/${server.store.videoCreated.uuid}`
2017-10-16 10:05:49 +02:00
await checkParamEmbed(server, embedUrl, HttpStatusCode.BAD_REQUEST_400, { maxheight: 'hello' })
2017-10-16 10:05:49 +02:00
})
it('Should fail with an invalid max width', async function () {
2022-12-09 11:14:47 +01:00
const embedUrl = `${server.url}/videos/watch/${server.store.videoCreated.uuid}`
2017-10-16 10:05:49 +02:00
await checkParamEmbed(server, embedUrl, HttpStatusCode.BAD_REQUEST_400, { maxwidth: 'hello' })
2017-10-16 10:05:49 +02:00
})
it('Should fail with an invalid format', async function () {
2022-12-09 11:14:47 +01:00
const embedUrl = `${server.url}/videos/watch/${server.store.videoCreated.uuid}`
2017-10-16 10:05:49 +02:00
await checkParamEmbed(server, embedUrl, HttpStatusCode.BAD_REQUEST_400, { format: 'blabla' })
2017-10-16 10:05:49 +02:00
})
it('Should fail with a non supported format', async function () {
2022-12-09 11:14:47 +01:00
const embedUrl = `${server.url}/videos/watch/${server.store.videoCreated.uuid}`
2017-10-16 10:05:49 +02:00
await checkParamEmbed(server, embedUrl, HttpStatusCode.NOT_IMPLEMENTED_501, { format: 'xml' })
2017-12-28 14:49:43 +01:00
})
2022-05-02 14:57:37 +02:00
it('Should fail with a private video', async function () {
2022-12-09 11:14:47 +01:00
const embedUrl = `${server.url}/videos/watch/${privateVideo.uuid}`
2022-05-02 14:57:37 +02:00
await checkParamEmbed(server, embedUrl, HttpStatusCode.FORBIDDEN_403)
})
it('Should fail with an unlisted video with the int id', async function () {
2022-12-09 11:14:47 +01:00
const embedUrl = `${server.url}/videos/watch/${unlistedVideo.id}`
2022-05-02 14:57:37 +02:00
await checkParamEmbed(server, embedUrl, HttpStatusCode.FORBIDDEN_403)
})
it('Should succeed with an unlisted video using the uuid id', async function () {
for (const uuid of [ unlistedVideo.uuid, unlistedVideo.shortUUID ]) {
2022-12-09 11:14:47 +01:00
const embedUrl = `${server.url}/videos/watch/${uuid}`
2022-05-02 14:57:37 +02:00
await checkParamEmbed(server, embedUrl, HttpStatusCode.OK_200)
}
})
it('Should fail with a private playlist', async function () {
2022-12-09 11:14:47 +01:00
const embedUrl = `${server.url}/videos/watch/playlist/${privatePlaylist.uuid}`
2022-05-02 14:57:37 +02:00
await checkParamEmbed(server, embedUrl, HttpStatusCode.FORBIDDEN_403)
})
it('Should fail with an unlisted playlist using the int id', async function () {
2022-12-09 11:14:47 +01:00
const embedUrl = `${server.url}/videos/watch/playlist/${unlistedPlaylist.id}`
2022-05-02 14:57:37 +02:00
await checkParamEmbed(server, embedUrl, HttpStatusCode.FORBIDDEN_403)
})
it('Should succeed with an unlisted playlist using the uuid id', async function () {
for (const uuid of [ unlistedPlaylist.uuid, unlistedPlaylist.shortUUID ]) {
2022-12-09 11:14:47 +01:00
const embedUrl = `${server.url}/videos/watch/playlist/${uuid}`
2022-05-02 14:57:37 +02:00
await checkParamEmbed(server, embedUrl, HttpStatusCode.OK_200)
}
})
2020-08-05 15:35:58 +02:00
it('Should succeed with the correct params with a video', async function () {
2022-12-09 11:14:47 +01:00
const embedUrl = `${server.url}/videos/watch/${server.store.videoCreated.uuid}`
2017-12-28 14:49:43 +01:00
const query = {
format: 'json',
maxheight: 400,
maxwidth: 400
}
await checkParamEmbed(server, embedUrl, HttpStatusCode.OK_200, query)
2017-10-16 10:05:49 +02:00
})
2020-08-05 15:35:58 +02:00
it('Should succeed with the correct params with a playlist', async function () {
2022-12-09 11:14:47 +01:00
const embedUrl = `${server.url}/videos/watch/playlist/${playlistUUID}`
2020-08-05 15:35:58 +02:00
const query = {
format: 'json',
maxheight: 400,
maxwidth: 400
}
await checkParamEmbed(server, embedUrl, HttpStatusCode.OK_200, query)
2020-08-05 15:35:58 +02:00
})
2017-10-16 10:05:49 +02:00
})
2019-04-24 15:10:37 +02:00
after(async function () {
await cleanupTests([ server ])
2017-10-16 10:05:49 +02:00
})
})
2017-12-28 14:49:43 +01:00
2023-07-31 14:34:36 +02:00
function checkParamEmbed (
server: PeerTubeServer,
embedUrl: string,
expectedStatus: HttpStatusCodeType = HttpStatusCode.BAD_REQUEST_400,
query = {}
) {
2017-12-28 14:49:43 +01:00
const path = '/services/oembed'
return makeGetRequest({
url: server.url,
path,
query: Object.assign(query, { url: embedUrl }),
2021-07-16 10:42:24 +02:00
expectedStatus
2017-12-28 14:49:43 +01:00
})
}