2020-01-31 16:56:52 +01:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
2017-10-16 10:05:49 +02:00
|
|
|
|
|
|
|
import 'mocha'
|
2022-05-02 14:57:37 +02:00
|
|
|
import { HttpStatusCode, VideoCreateResult, VideoPlaylistCreateResult, VideoPlaylistPrivacy, VideoPrivacy } from '@shared/models'
|
2018-10-29 17:48:31 +01:00
|
|
|
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 17:48:31 +01:00
|
|
|
setAccessTokensToServers,
|
2021-07-15 10:02:54 +02:00
|
|
|
setDefaultVideoChannel
|
2021-12-17 09:29:23 +01:00
|
|
|
} from '@shared/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 () {
|
2019-04-24 15:10:37 +02:00
|
|
|
const embedUrl = `http://localhost:${server.port}/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 () {
|
2019-04-24 15:10:37 +02:00
|
|
|
const embedUrl = `http://localhost:${server.port}/videos/watch/88fc0165-d1f0-4a35-a51a-3b47f668689c`
|
2020-12-07 14:32:36 +01:00
|
|
|
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 () {
|
2021-07-22 14:28:03 +02:00
|
|
|
const embedUrl = `http://localhost:${server.port}/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 () {
|
2021-07-22 14:28:03 +02:00
|
|
|
const embedUrl = `http://localhost:${server.port}/videos/watch/${server.store.videoCreated.uuid}`
|
2017-10-16 10:05:49 +02:00
|
|
|
|
2020-12-07 14:32:36 +01: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 () {
|
2021-07-22 14:28:03 +02:00
|
|
|
const embedUrl = `http://localhost:${server.port}/videos/watch/${server.store.videoCreated.uuid}`
|
2017-10-16 10:05:49 +02:00
|
|
|
|
2020-12-07 14:32:36 +01: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 () {
|
2021-07-22 14:28:03 +02:00
|
|
|
const embedUrl = `http://localhost:${server.port}/videos/watch/${server.store.videoCreated.uuid}`
|
2017-10-16 10:05:49 +02:00
|
|
|
|
2020-12-07 14:32:36 +01: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 () {
|
2021-07-22 14:28:03 +02:00
|
|
|
const embedUrl = `http://localhost:${server.port}/videos/watch/${server.store.videoCreated.uuid}`
|
2017-10-16 10:05:49 +02:00
|
|
|
|
2020-12-07 14:32:36 +01: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 () {
|
|
|
|
const embedUrl = `http://localhost:${server.port}/videos/watch/${privateVideo.uuid}`
|
|
|
|
|
|
|
|
await checkParamEmbed(server, embedUrl, HttpStatusCode.FORBIDDEN_403)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with an unlisted video with the int id', async function () {
|
|
|
|
const embedUrl = `http://localhost:${server.port}/videos/watch/${unlistedVideo.id}`
|
|
|
|
|
|
|
|
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 ]) {
|
|
|
|
const embedUrl = `http://localhost:${server.port}/videos/watch/${uuid}`
|
|
|
|
|
|
|
|
await checkParamEmbed(server, embedUrl, HttpStatusCode.OK_200)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a private playlist', async function () {
|
|
|
|
const embedUrl = `http://localhost:${server.port}/videos/watch/playlist/${privatePlaylist.uuid}`
|
|
|
|
|
|
|
|
await checkParamEmbed(server, embedUrl, HttpStatusCode.FORBIDDEN_403)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with an unlisted playlist using the int id', async function () {
|
|
|
|
const embedUrl = `http://localhost:${server.port}/videos/watch/playlist/${unlistedPlaylist.id}`
|
|
|
|
|
|
|
|
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 ]) {
|
|
|
|
const embedUrl = `http://localhost:${server.port}/videos/watch/playlist/${uuid}`
|
|
|
|
|
|
|
|
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 () {
|
2021-07-22 14:28:03 +02:00
|
|
|
const embedUrl = `http://localhost:${server.port}/videos/watch/${server.store.videoCreated.uuid}`
|
2017-12-28 14:49:43 +01:00
|
|
|
const query = {
|
|
|
|
format: 'json',
|
|
|
|
maxheight: 400,
|
|
|
|
maxwidth: 400
|
|
|
|
}
|
|
|
|
|
2020-12-07 14:32:36 +01:00
|
|
|
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 () {
|
|
|
|
const embedUrl = `http://localhost:${server.port}/videos/watch/playlist/${playlistUUID}`
|
|
|
|
const query = {
|
|
|
|
format: 'json',
|
|
|
|
maxheight: 400,
|
|
|
|
maxwidth: 400
|
|
|
|
}
|
|
|
|
|
2020-12-07 14:32:36 +01:00
|
|
|
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
|
|
|
|
2021-07-16 10:42:24 +02:00
|
|
|
function checkParamEmbed (server: PeerTubeServer, embedUrl: string, expectedStatus = 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
|
|
|
})
|
|
|
|
}
|