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

82 lines
2.5 KiB
TypeScript
Raw Normal View History

2020-05-14 16:56:15 +02:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
import 'mocha'
2021-07-16 10:42:24 +02:00
import { cleanupTests, createSingleServer, makePostBodyRequest, PeerTubeServer, setAccessTokensToServers } from '@shared/extra-utils'
import { HttpStatusCode } from '@shared/models'
2020-05-14 16:56:15 +02:00
describe('Test bulk API validators', function () {
2021-07-16 09:47:51 +02:00
let server: PeerTubeServer
2020-05-14 16:56:15 +02:00
let userAccessToken: string
// ---------------------------------------------------------------
before(async function () {
this.timeout(120000)
2021-07-16 09:47:51 +02:00
server = await createSingleServer(1)
2020-05-14 16:56:15 +02:00
await setAccessTokensToServers([ server ])
const user = { username: 'user1', password: 'password' }
2021-07-16 09:04:35 +02:00
await server.users.create({ username: user.username, password: user.password })
2020-05-14 16:56:15 +02:00
2021-07-16 09:04:35 +02:00
userAccessToken = await server.login.getAccessToken(user)
2020-05-14 16:56:15 +02:00
})
describe('When removing comments of', function () {
const path = '/api/v1/bulk/remove-comments-of'
it('Should fail with an unauthenticated user', async function () {
await makePostBodyRequest({
url: server.url,
path,
fields: { accountName: 'user1', scope: 'my-videos' },
2021-07-16 10:42:24 +02:00
expectedStatus: HttpStatusCode.UNAUTHORIZED_401
2020-05-14 16:56:15 +02:00
})
})
it('Should fail with an unknown account', async function () {
await makePostBodyRequest({
url: server.url,
token: server.accessToken,
path,
fields: { accountName: 'user2', scope: 'my-videos' },
2021-07-16 10:42:24 +02:00
expectedStatus: HttpStatusCode.NOT_FOUND_404
2020-05-14 16:56:15 +02:00
})
})
it('Should fail with an invalid scope', async function () {
await makePostBodyRequest({
url: server.url,
token: server.accessToken,
path,
fields: { accountName: 'user1', scope: 'my-videoss' },
2021-07-16 10:42:24 +02:00
expectedStatus: HttpStatusCode.BAD_REQUEST_400
2020-05-14 16:56:15 +02:00
})
})
it('Should fail to delete comments of the instance without the appropriate rights', async function () {
await makePostBodyRequest({
url: server.url,
token: userAccessToken,
path,
fields: { accountName: 'user1', scope: 'instance' },
2021-07-16 10:42:24 +02:00
expectedStatus: HttpStatusCode.FORBIDDEN_403
2020-05-14 16:56:15 +02:00
})
})
it('Should succeed with the correct params', async function () {
await makePostBodyRequest({
url: server.url,
token: server.accessToken,
path,
fields: { accountName: 'user1', scope: 'instance' },
2021-07-16 10:42:24 +02:00
expectedStatus: HttpStatusCode.NO_CONTENT_204
2020-05-14 16:56:15 +02:00
})
})
})
after(async function () {
await cleanupTests([ server ])
})
})