2020-05-14 10:56:15 -04:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
|
|
|
|
|
|
|
import 'mocha'
|
2021-12-17 03:29:23 -05:00
|
|
|
import { cleanupTests, createSingleServer, makePostBodyRequest, PeerTubeServer, setAccessTokensToServers } from '@shared/server-commands'
|
2021-07-16 04:42:24 -04:00
|
|
|
import { HttpStatusCode } from '@shared/models'
|
2020-05-14 10:56:15 -04:00
|
|
|
|
|
|
|
describe('Test bulk API validators', function () {
|
2021-07-16 03:47:51 -04:00
|
|
|
let server: PeerTubeServer
|
2020-05-14 10:56:15 -04:00
|
|
|
let userAccessToken: string
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------
|
|
|
|
|
|
|
|
before(async function () {
|
|
|
|
this.timeout(120000)
|
|
|
|
|
2021-07-16 03:47:51 -04:00
|
|
|
server = await createSingleServer(1)
|
2020-05-14 10:56:15 -04:00
|
|
|
await setAccessTokensToServers([ server ])
|
|
|
|
|
|
|
|
const user = { username: 'user1', password: 'password' }
|
2021-07-16 03:04:35 -04:00
|
|
|
await server.users.create({ username: user.username, password: user.password })
|
2020-05-14 10:56:15 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
userAccessToken = await server.login.getAccessToken(user)
|
2020-05-14 10:56:15 -04: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 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.UNAUTHORIZED_401
|
2020-05-14 10:56:15 -04: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 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.NOT_FOUND_404
|
2020-05-14 10:56:15 -04: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 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.BAD_REQUEST_400
|
2020-05-14 10:56:15 -04: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 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.FORBIDDEN_403
|
2020-05-14 10:56:15 -04: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 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.NO_CONTENT_204
|
2020-05-14 10:56:15 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
after(async function () {
|
|
|
|
await cleanupTests([ server ])
|
|
|
|
})
|
|
|
|
})
|