PeerTube/server/tests/api/check-params/video-captions.ts

309 lines
9.6 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 */
2018-07-12 19:02:00 +02:00
import 'mocha'
import { buildAbsoluteFixturePath } from '@shared/core-utils'
import { HttpStatusCode, VideoCreateResult, VideoPrivacy } from '@shared/models'
2018-07-12 19:02:00 +02:00
import {
2019-04-24 15:10:37 +02:00
cleanupTests,
2021-07-16 09:47:51 +02:00
createSingleServer,
2018-07-12 19:02:00 +02:00
makeDeleteRequest,
makeGetRequest,
makeUploadRequest,
2021-07-16 09:47:51 +02:00
PeerTubeServer,
2021-07-15 10:02:54 +02:00
setAccessTokensToServers
} from '@shared/server-commands'
2018-07-12 19:02:00 +02:00
describe('Test video captions API validator', function () {
const path = '/api/v1/videos/'
2021-07-16 09:47:51 +02:00
let server: PeerTubeServer
2018-07-12 19:02:00 +02:00
let userAccessToken: string
let video: VideoCreateResult
let privateVideo: VideoCreateResult
2018-07-12 19:02:00 +02:00
// ---------------------------------------------------------------
before(async function () {
this.timeout(30000)
2021-07-16 09:47:51 +02:00
server = await createSingleServer(1)
2018-07-12 19:02:00 +02:00
await setAccessTokensToServers([ server ])
2021-07-16 09:04:35 +02:00
video = await server.videos.upload()
privateVideo = await server.videos.upload({ attributes: { privacy: VideoPrivacy.PRIVATE } })
2018-07-12 19:02:00 +02:00
{
const user = {
username: 'user1',
password: 'my super password'
}
2021-07-16 09:04:35 +02:00
await server.users.create({ username: user.username, password: user.password })
userAccessToken = await server.login.getAccessToken(user)
2018-07-12 19:02:00 +02:00
}
})
describe('When adding video caption', function () {
const fields = { }
const attaches = {
2021-06-14 16:52:22 +02:00
captionfile: buildAbsoluteFixturePath('subtitle-good1.vtt')
2018-07-12 19:02:00 +02:00
}
it('Should fail without a valid uuid', async function () {
await makeUploadRequest({
method: 'PUT',
url: server.url,
2020-12-11 10:36:05 +01:00
path: path + '4da6fde3-88f7-4d16-b119-108df563d0b06/captions/fr',
2018-07-12 19:02:00 +02:00
token: server.accessToken,
fields,
attaches
})
})
it('Should fail with an unknown id', async function () {
await makeUploadRequest({
method: 'PUT',
url: server.url,
2020-12-11 10:36:05 +01:00
path: path + '4da6fde3-88f7-4d16-b119-108df5630b06/captions/fr',
2018-07-12 19:02:00 +02:00
token: server.accessToken,
fields,
2020-12-11 10:36:05 +01:00
attaches,
2021-07-16 10:42:24 +02:00
expectedStatus: 404
2018-07-12 19:02:00 +02:00
})
})
it('Should fail with a missing language in path', async function () {
const captionPath = path + video.uuid + '/captions'
2018-07-12 19:02:00 +02:00
await makeUploadRequest({
method: 'PUT',
url: server.url,
path: captionPath,
token: server.accessToken,
fields,
attaches
})
})
it('Should fail with an unknown language', async function () {
const captionPath = path + video.uuid + '/captions/15'
2018-07-12 19:02:00 +02:00
await makeUploadRequest({
method: 'PUT',
url: server.url,
path: captionPath,
token: server.accessToken,
fields,
attaches
})
})
it('Should fail without access token', async function () {
const captionPath = path + video.uuid + '/captions/fr'
2018-07-12 19:02:00 +02:00
await makeUploadRequest({
method: 'PUT',
url: server.url,
path: captionPath,
fields,
attaches,
2021-07-16 10:42:24 +02:00
expectedStatus: HttpStatusCode.UNAUTHORIZED_401
2018-07-12 19:02:00 +02:00
})
})
it('Should fail with a bad access token', async function () {
const captionPath = path + video.uuid + '/captions/fr'
2018-07-12 19:02:00 +02:00
await makeUploadRequest({
method: 'PUT',
url: server.url,
path: captionPath,
token: 'blabla',
fields,
attaches,
2021-07-16 10:42:24 +02:00
expectedStatus: HttpStatusCode.UNAUTHORIZED_401
2018-07-12 19:02:00 +02:00
})
})
2019-10-18 16:39:05 +02:00
// We accept any file now
// it('Should fail with an invalid captionfile extension', async function () {
// const attaches = {
2021-06-14 16:52:22 +02:00
// 'captionfile': buildAbsoluteFixturePath('subtitle-bad.txt')
2019-10-18 16:39:05 +02:00
// }
//
// const captionPath = path + video.uuid + '/captions/fr'
2019-10-18 16:39:05 +02:00
// await makeUploadRequest({
// method: 'PUT',
// url: server.url,
// path: captionPath,
// token: server.accessToken,
// fields,
// attaches,
2021-07-16 10:42:24 +02:00
// expectedStatus: HttpStatusCode.BAD_REQUEST_400
2019-10-18 16:39:05 +02:00
// })
// })
2018-07-16 14:22:16 +02:00
2018-08-06 11:45:24 +02:00
// We don't check the extension yet
// it('Should fail with an invalid captionfile extension and octet-stream mime type', async function () {
// await createVideoCaption({
// url: server.url,
// accessToken: server.accessToken,
// language: 'zh',
// videoId: video.uuid,
2018-08-06 11:45:24 +02:00
// fixture: 'subtitle-bad.txt',
// mimeType: 'application/octet-stream',
2021-07-16 10:42:24 +02:00
// expectedStatus: HttpStatusCode.BAD_REQUEST_400
2018-08-06 11:45:24 +02:00
// })
// })
it('Should succeed with a valid captionfile extension and octet-stream mime type', async function () {
2021-07-21 13:58:35 +02:00
await server.captions.add({
2018-08-06 11:45:24 +02:00
language: 'zh',
videoId: video.uuid,
2018-08-06 11:45:24 +02:00
fixture: 'subtitle-good.srt',
mimeType: 'application/octet-stream'
})
})
// We don't check the file validity yet
2018-07-16 14:22:16 +02:00
// it('Should fail with an invalid captionfile srt', async function () {
// const attaches = {
2021-06-14 16:52:22 +02:00
// 'captionfile': buildAbsoluteFixturePath('subtitle-bad.srt')
2018-07-16 14:22:16 +02:00
// }
//
// const captionPath = path + video.uuid + '/captions/fr'
2018-07-16 14:22:16 +02:00
// await makeUploadRequest({
// method: 'PUT',
// url: server.url,
// path: captionPath,
// token: server.accessToken,
// fields,
// attaches,
2021-07-16 10:42:24 +02:00
// expectedStatus: HttpStatusCode.INTERNAL_SERVER_ERROR_500
2018-07-16 14:22:16 +02:00
// })
// })
2018-07-12 19:02:00 +02:00
it('Should success with the correct parameters', async function () {
const captionPath = path + video.uuid + '/captions/fr'
2018-07-12 19:02:00 +02:00
await makeUploadRequest({
method: 'PUT',
url: server.url,
path: captionPath,
token: server.accessToken,
fields,
attaches,
2021-07-16 10:42:24 +02:00
expectedStatus: HttpStatusCode.NO_CONTENT_204
2018-07-12 19:02:00 +02:00
})
})
})
describe('When listing video captions', function () {
it('Should fail without a valid uuid', async function () {
await makeGetRequest({ url: server.url, path: path + '4da6fde3-88f7-4d16-b119-108df563d0b06/captions' })
})
it('Should fail with an unknown id', async function () {
await makeGetRequest({
url: server.url,
path: path + '4da6fde3-88f7-4d16-b119-108df5630b06/captions',
2021-07-16 10:42:24 +02:00
expectedStatus: HttpStatusCode.NOT_FOUND_404
})
2018-07-12 19:02:00 +02:00
})
it('Should fail with a private video without token', async function () {
await makeGetRequest({
url: server.url,
path: path + privateVideo.shortUUID + '/captions',
expectedStatus: HttpStatusCode.UNAUTHORIZED_401
})
})
it('Should fail with another user token', async function () {
await makeGetRequest({
url: server.url,
token: userAccessToken,
path: path + privateVideo.shortUUID + '/captions',
expectedStatus: HttpStatusCode.FORBIDDEN_403
})
})
2018-07-12 19:02:00 +02:00
it('Should success with the correct parameters', async function () {
2021-07-16 10:42:24 +02:00
await makeGetRequest({ url: server.url, path: path + video.shortUUID + '/captions', expectedStatus: HttpStatusCode.OK_200 })
await makeGetRequest({
url: server.url,
path: path + privateVideo.shortUUID + '/captions',
token: server.accessToken,
expectedStatus: HttpStatusCode.OK_200
})
2018-07-12 19:02:00 +02:00
})
})
describe('When deleting video caption', function () {
it('Should fail without a valid uuid', async function () {
await makeDeleteRequest({
url: server.url,
path: path + '4da6fde3-88f7-4d16-b119-108df563d0b06/captions/fr',
token: server.accessToken
})
})
it('Should fail with an unknown id', async function () {
await makeDeleteRequest({
url: server.url,
path: path + '4da6fde3-88f7-4d16-b119-108df5630b06/captions/fr',
token: server.accessToken,
2021-07-16 10:42:24 +02:00
expectedStatus: HttpStatusCode.NOT_FOUND_404
2018-07-12 19:02:00 +02:00
})
})
it('Should fail with an invalid language', async function () {
await makeDeleteRequest({
url: server.url,
path: path + '4da6fde3-88f7-4d16-b119-108df5630b06/captions/16',
token: server.accessToken
})
})
it('Should fail with a missing language', async function () {
const captionPath = path + video.shortUUID + '/captions'
2018-07-12 19:02:00 +02:00
await makeDeleteRequest({ url: server.url, path: captionPath, token: server.accessToken })
})
it('Should fail with an unknown language', async function () {
const captionPath = path + video.shortUUID + '/captions/15'
2018-07-12 19:02:00 +02:00
await makeDeleteRequest({ url: server.url, path: captionPath, token: server.accessToken })
})
it('Should fail without access token', async function () {
const captionPath = path + video.shortUUID + '/captions/fr'
2021-07-16 10:42:24 +02:00
await makeDeleteRequest({ url: server.url, path: captionPath, expectedStatus: HttpStatusCode.UNAUTHORIZED_401 })
2018-07-12 19:02:00 +02:00
})
it('Should fail with a bad access token', async function () {
const captionPath = path + video.shortUUID + '/captions/fr'
2021-07-16 10:42:24 +02:00
await makeDeleteRequest({ url: server.url, path: captionPath, token: 'coucou', expectedStatus: HttpStatusCode.UNAUTHORIZED_401 })
2018-07-12 19:02:00 +02:00
})
it('Should fail with another user', async function () {
const captionPath = path + video.shortUUID + '/captions/fr'
await makeDeleteRequest({
url: server.url,
path: captionPath,
token: userAccessToken,
2021-07-16 10:42:24 +02:00
expectedStatus: HttpStatusCode.FORBIDDEN_403
})
2018-07-12 19:02:00 +02:00
})
it('Should success with the correct parameters', async function () {
const captionPath = path + video.shortUUID + '/captions/fr'
await makeDeleteRequest({
url: server.url,
path: captionPath,
token: server.accessToken,
2021-07-16 10:42:24 +02:00
expectedStatus: HttpStatusCode.NO_CONTENT_204
})
2018-07-12 19:02:00 +02:00
})
})
2019-04-24 15:10:37 +02:00
after(async function () {
await cleanupTests([ server ])
2018-07-12 19:02:00 +02:00
})
})