1
0
Fork 0
peertube/server/tests/api/check-params/services.ts

196 lines
6.6 KiB
TypeScript
Raw Normal View History

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