PeerTube/server/tests/api/check-params/redundancy.ts

232 lines
7.7 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-09-11 16:27:07 +02:00
import 'mocha'
import {
2020-01-10 10:11:28 +01:00
checkBadCountPagination,
checkBadSortPagination,
checkBadStartPagination,
2019-04-24 15:10:37 +02:00
cleanupTests,
2018-09-11 16:27:07 +02:00
createUser,
doubleFollow,
2020-01-10 10:11:28 +01:00
flushAndRunMultipleServers, makeDeleteRequest,
makeGetRequest, makePostBodyRequest,
2018-09-11 16:27:07 +02:00
makePutBodyRequest,
ServerInfo,
2020-01-10 10:11:28 +01:00
setAccessTokensToServers, uploadVideoAndGetId,
2020-06-10 15:35:20 +02:00
userLogin, waitJobs, getVideoIdFromUUID
} from '../../../../shared/extra-utils'
import { HttpStatusCode } from '../../../../shared/core-utils/miscs/http-error-codes'
2018-09-11 16:27:07 +02:00
describe('Test server redundancy API validators', function () {
let servers: ServerInfo[]
let userAccessToken = null
2020-01-10 10:11:28 +01:00
let videoIdLocal: number
let videoIdRemote: number
2018-09-11 16:27:07 +02:00
// ---------------------------------------------------------------
before(async function () {
this.timeout(60000)
2018-09-11 16:27:07 +02:00
servers = await flushAndRunMultipleServers(2)
await setAccessTokensToServers(servers)
await doubleFollow(servers[0], servers[1])
const user = {
username: 'user1',
password: 'password'
}
2020-01-31 16:56:52 +01:00
await createUser({ url: servers[0].url, accessToken: servers[0].accessToken, username: user.username, password: user.password })
2018-09-11 16:27:07 +02:00
userAccessToken = await userLogin(servers[0], user)
2020-01-10 10:11:28 +01:00
videoIdLocal = (await uploadVideoAndGetId({ server: servers[0], videoName: 'video' })).id
2020-06-10 15:35:20 +02:00
const remoteUUID = (await uploadVideoAndGetId({ server: servers[1], videoName: 'video' })).uuid
2020-01-10 10:11:28 +01:00
await waitJobs(servers)
2020-06-10 15:35:20 +02:00
videoIdRemote = await getVideoIdFromUUID(servers[0].url, remoteUUID)
2020-01-10 10:11:28 +01:00
})
describe('When listing redundancies', function () {
const path = '/api/v1/server/redundancy/videos'
let url: string
let token: string
before(function () {
url = servers[0].url
token = servers[0].accessToken
})
it('Should fail with an invalid token', async function () {
await makeGetRequest({ url, path, token: 'fake_token', statusCodeExpected: HttpStatusCode.UNAUTHORIZED_401 })
2020-01-10 10:11:28 +01:00
})
it('Should fail if the user is not an administrator', async function () {
await makeGetRequest({ url, path, token: userAccessToken, statusCodeExpected: HttpStatusCode.FORBIDDEN_403 })
2020-01-10 10:11:28 +01:00
})
it('Should fail with a bad start pagination', async function () {
await checkBadStartPagination(url, path, servers[0].accessToken)
})
it('Should fail with a bad count pagination', async function () {
await checkBadCountPagination(url, path, servers[0].accessToken)
})
it('Should fail with an incorrect sort', async function () {
await checkBadSortPagination(url, path, servers[0].accessToken)
})
it('Should fail with a bad target', async function () {
await makeGetRequest({ url, path, token, query: { target: 'bad target' } })
})
it('Should fail without target', async function () {
await makeGetRequest({ url, path, token })
})
it('Should succeed with the correct params', async function () {
await makeGetRequest({ url, path, token, query: { target: 'my-videos' }, statusCodeExpected: HttpStatusCode.OK_200 })
2020-01-10 10:11:28 +01:00
})
})
describe('When manually adding a redundancy', function () {
const path = '/api/v1/server/redundancy/videos'
let url: string
let token: string
before(function () {
url = servers[0].url
token = servers[0].accessToken
})
it('Should fail with an invalid token', async function () {
await makePostBodyRequest({ url, path, token: 'fake_token', statusCodeExpected: HttpStatusCode.UNAUTHORIZED_401 })
2020-01-10 10:11:28 +01:00
})
it('Should fail if the user is not an administrator', async function () {
await makePostBodyRequest({ url, path, token: userAccessToken, statusCodeExpected: HttpStatusCode.FORBIDDEN_403 })
2020-01-10 10:11:28 +01:00
})
it('Should fail without a video id', async function () {
await makePostBodyRequest({ url, path, token })
})
it('Should fail with an incorrect video id', async function () {
await makePostBodyRequest({ url, path, token, fields: { videoId: 'peertube' } })
})
it('Should fail with a not found video id', async function () {
await makePostBodyRequest({ url, path, token, fields: { videoId: 6565 }, statusCodeExpected: HttpStatusCode.NOT_FOUND_404 })
2020-01-10 10:11:28 +01:00
})
it('Should fail with a local a video id', async function () {
await makePostBodyRequest({ url, path, token, fields: { videoId: videoIdLocal } })
})
it('Should succeed with the correct params', async function () {
await makePostBodyRequest({ url, path, token, fields: { videoId: videoIdRemote }, statusCodeExpected: HttpStatusCode.NO_CONTENT_204 })
2020-01-10 10:11:28 +01:00
})
it('Should fail if the video is already duplicated', async function () {
this.timeout(30000)
await waitJobs(servers)
await makePostBodyRequest({ url, path, token, fields: { videoId: videoIdRemote }, statusCodeExpected: HttpStatusCode.CONFLICT_409 })
2020-01-10 10:11:28 +01:00
})
})
describe('When manually removing a redundancy', function () {
const path = '/api/v1/server/redundancy/videos/'
let url: string
let token: string
before(function () {
url = servers[0].url
token = servers[0].accessToken
})
it('Should fail with an invalid token', async function () {
await makeDeleteRequest({ url, path: path + '1', token: 'fake_token', statusCodeExpected: HttpStatusCode.UNAUTHORIZED_401 })
2020-01-10 10:11:28 +01:00
})
it('Should fail if the user is not an administrator', async function () {
await makeDeleteRequest({ url, path: path + '1', token: userAccessToken, statusCodeExpected: HttpStatusCode.FORBIDDEN_403 })
2020-01-10 10:11:28 +01:00
})
it('Should fail with an incorrect video id', async function () {
await makeDeleteRequest({ url, path: path + 'toto', token })
})
it('Should fail with a not found video redundancy', async function () {
await makeDeleteRequest({ url, path: path + '454545', token, statusCodeExpected: HttpStatusCode.NOT_FOUND_404 })
2020-01-10 10:11:28 +01:00
})
2018-09-11 16:27:07 +02:00
})
2020-01-10 10:11:28 +01:00
describe('When updating server redundancy', function () {
2018-09-11 16:27:07 +02:00
const path = '/api/v1/server/redundancy'
it('Should fail with an invalid token', async function () {
await makePutBodyRequest({
url: servers[0].url,
2019-04-24 15:10:37 +02:00
path: path + '/localhost:' + servers[1].port,
2018-09-11 16:27:07 +02:00
fields: { redundancyAllowed: true },
token: 'fake_token',
statusCodeExpected: HttpStatusCode.UNAUTHORIZED_401
2018-09-11 16:27:07 +02:00
})
})
it('Should fail if the user is not an administrator', async function () {
await makePutBodyRequest({
url: servers[0].url,
2019-04-24 15:10:37 +02:00
path: path + '/localhost:' + servers[1].port,
2018-09-11 16:27:07 +02:00
fields: { redundancyAllowed: true },
token: userAccessToken,
statusCodeExpected: HttpStatusCode.FORBIDDEN_403
2018-09-11 16:27:07 +02:00
})
})
it('Should fail if we do not follow this server', async function () {
await makePutBodyRequest({
url: servers[0].url,
path: path + '/example.com',
fields: { redundancyAllowed: true },
token: servers[0].accessToken,
statusCodeExpected: HttpStatusCode.NOT_FOUND_404
2018-09-11 16:27:07 +02:00
})
})
it('Should fail without de redundancyAllowed param', async function () {
await makePutBodyRequest({
url: servers[0].url,
2019-04-24 15:10:37 +02:00
path: path + '/localhost:' + servers[1].port,
2018-09-11 16:27:07 +02:00
fields: { blabla: true },
token: servers[0].accessToken,
statusCodeExpected: HttpStatusCode.BAD_REQUEST_400
2018-09-11 16:27:07 +02:00
})
})
it('Should succeed with the correct parameters', async function () {
await makePutBodyRequest({
url: servers[0].url,
2019-04-24 15:10:37 +02:00
path: path + '/localhost:' + servers[1].port,
2018-09-11 16:27:07 +02:00
fields: { redundancyAllowed: true },
token: servers[0].accessToken,
statusCodeExpected: HttpStatusCode.NO_CONTENT_204
2018-09-11 16:27:07 +02:00
})
})
})
2019-04-24 15:10:37 +02:00
after(async function () {
await cleanupTests(servers)
2018-09-11 16:27:07 +02:00
})
})