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

132 lines
4.3 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
import 'mocha'
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/extra-utils'
2021-07-16 12:27:30 +00:00
import { HttpStatusCode, VideoPlaylistPrivacy } from '@shared/models'
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
// ---------------------------------------------------------------
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-16 07:04:35 +00:00
server.store.video = await server.videos.upload({ attributes: { name: 'my super name' } })
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
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-16 07:04:35 +00:00
const embedUrl = 'http://hello.com/videos/watch/' + server.store.video.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 () {
2019-04-24 13:10:37 +00:00
const embedUrl = `http://localhost:${server.port}/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 () {
2019-04-24 13:10:37 +00:00
const embedUrl = `http://localhost:${server.port}/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 () {
2021-07-16 07:04:35 +00:00
const embedUrl = `http://localhost:${server.port}/videos/watchs/${server.store.video.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 () {
2021-07-16 07:04:35 +00:00
const embedUrl = `http://localhost:${server.port}/videos/watch/${server.store.video.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 () {
2021-07-16 07:04:35 +00:00
const embedUrl = `http://localhost:${server.port}/videos/watch/${server.store.video.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 () {
2021-07-16 07:04:35 +00:00
const embedUrl = `http://localhost:${server.port}/videos/watch/${server.store.video.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 () {
2021-07-16 07:04:35 +00:00
const embedUrl = `http://localhost:${server.port}/videos/watch/${server.store.video.uuid}`
2017-10-16 08:05:49 +00:00
await checkParamEmbed(server, embedUrl, HttpStatusCode.NOT_IMPLEMENTED_501, { format: 'xml' })
})
2020-08-05 13:35:58 +00:00
it('Should succeed with the correct params with a video', async function () {
2021-07-16 07:04:35 +00:00
const embedUrl = `http://localhost:${server.port}/videos/watch/${server.store.video.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 () {
const embedUrl = `http://localhost:${server.port}/videos/watch/playlist/${playlistUUID}`
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
})
}