123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464 |
- /* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
- import 'mocha'
- import { AbuseCreate, AbuseState } from '@shared/models'
- import {
- addAbuseMessage,
- cleanupTests,
- createUser,
- deleteAbuse,
- deleteAbuseMessage,
- doubleFollow,
- flushAndRunServer,
- generateUserAccessToken,
- getAdminAbusesList,
- getVideoIdFromUUID,
- listAbuseMessages,
- makeGetRequest,
- makePostBodyRequest,
- reportAbuse,
- ServerInfo,
- setAccessTokensToServers,
- updateAbuse,
- uploadVideo,
- userLogin,
- waitJobs
- } from '../../../../shared/extra-utils'
- import {
- checkBadCountPagination,
- checkBadSortPagination,
- checkBadStartPagination
- } from '../../../../shared/extra-utils/requests/check-api-params'
- import { HttpStatusCode } from '../../../../shared/core-utils/miscs/http-error-codes'
- describe('Test abuses API validators', function () {
- const basePath = '/api/v1/abuses/'
- let server: ServerInfo
- let userAccessToken = ''
- let userAccessToken2 = ''
- let abuseId: number
- let messageId: number
- // ---------------------------------------------------------------
- before(async function () {
- this.timeout(30000)
- server = await flushAndRunServer(1)
- await setAccessTokensToServers([ server ])
- const username = 'user1'
- const password = 'my super password'
- await createUser({ url: server.url, accessToken: server.accessToken, username: username, password: password })
- userAccessToken = await userLogin(server, { username, password })
- {
- userAccessToken2 = await generateUserAccessToken(server, 'user_2')
- }
- const res = await uploadVideo(server.url, server.accessToken, {})
- server.video = res.body.video
- })
- describe('When listing abuses for admins', function () {
- const path = basePath
- it('Should fail with a bad start pagination', async function () {
- await checkBadStartPagination(server.url, path, server.accessToken)
- })
- it('Should fail with a bad count pagination', async function () {
- await checkBadCountPagination(server.url, path, server.accessToken)
- })
- it('Should fail with an incorrect sort', async function () {
- await checkBadSortPagination(server.url, path, server.accessToken)
- })
- it('Should fail with a non authenticated user', async function () {
- await makeGetRequest({
- url: server.url,
- path,
- statusCodeExpected: HttpStatusCode.UNAUTHORIZED_401
- })
- })
- it('Should fail with a non admin user', async function () {
- await makeGetRequest({
- url: server.url,
- path,
- token: userAccessToken,
- statusCodeExpected: HttpStatusCode.FORBIDDEN_403
- })
- })
- it('Should fail with a bad id filter', async function () {
- await makeGetRequest({ url: server.url, path, token: server.accessToken, query: { id: 'toto' } })
- })
- it('Should fail with a bad filter', async function () {
- await makeGetRequest({ url: server.url, path, token: server.accessToken, query: { filter: 'toto' } })
- await makeGetRequest({ url: server.url, path, token: server.accessToken, query: { filter: 'videos' } })
- })
- it('Should fail with bad predefined reason', async function () {
- await makeGetRequest({ url: server.url, path, token: server.accessToken, query: { predefinedReason: 'violentOrRepulsives' } })
- })
- it('Should fail with a bad state filter', async function () {
- await makeGetRequest({ url: server.url, path, token: server.accessToken, query: { state: 'toto' } })
- await makeGetRequest({ url: server.url, path, token: server.accessToken, query: { state: 0 } })
- })
- it('Should fail with a bad videoIs filter', async function () {
- await makeGetRequest({ url: server.url, path, token: server.accessToken, query: { videoIs: 'toto' } })
- })
- it('Should succeed with the correct params', async function () {
- const query = {
- id: 13,
- predefinedReason: 'violentOrRepulsive',
- filter: 'comment',
- state: 2,
- videoIs: 'deleted'
- }
- await makeGetRequest({ url: server.url, path, token: server.accessToken, query, statusCodeExpected: HttpStatusCode.OK_200 })
- })
- })
- describe('When listing abuses for users', function () {
- const path = '/api/v1/users/me/abuses'
- it('Should fail with a bad start pagination', async function () {
- await checkBadStartPagination(server.url, path, userAccessToken)
- })
- it('Should fail with a bad count pagination', async function () {
- await checkBadCountPagination(server.url, path, userAccessToken)
- })
- it('Should fail with an incorrect sort', async function () {
- await checkBadSortPagination(server.url, path, userAccessToken)
- })
- it('Should fail with a non authenticated user', async function () {
- await makeGetRequest({
- url: server.url,
- path,
- statusCodeExpected: HttpStatusCode.UNAUTHORIZED_401
- })
- })
- it('Should fail with a bad id filter', async function () {
- await makeGetRequest({ url: server.url, path, token: userAccessToken, query: { id: 'toto' } })
- })
- it('Should fail with a bad state filter', async function () {
- await makeGetRequest({ url: server.url, path, token: userAccessToken, query: { state: 'toto' } })
- await makeGetRequest({ url: server.url, path, token: userAccessToken, query: { state: 0 } })
- })
- it('Should succeed with the correct params', async function () {
- const query = {
- id: 13,
- state: 2
- }
- await makeGetRequest({ url: server.url, path, token: userAccessToken, query, statusCodeExpected: HttpStatusCode.OK_200 })
- })
- })
- describe('When reporting an abuse', function () {
- const path = basePath
- it('Should fail with nothing', async function () {
- const fields = {}
- await makePostBodyRequest({ url: server.url, path, token: userAccessToken, fields })
- })
- it('Should fail with a wrong video', async function () {
- const fields = { video: { id: 'blabla' }, reason: 'my super reason' }
- await makePostBodyRequest({ url: server.url, path: path, token: userAccessToken, fields })
- })
- it('Should fail with an unknown video', async function () {
- const fields = { video: { id: 42 }, reason: 'my super reason' }
- await makePostBodyRequest({
- url: server.url,
- path,
- token: userAccessToken,
- fields,
- statusCodeExpected: HttpStatusCode.NOT_FOUND_404
- })
- })
- it('Should fail with a wrong comment', async function () {
- const fields = { comment: { id: 'blabla' }, reason: 'my super reason' }
- await makePostBodyRequest({ url: server.url, path: path, token: userAccessToken, fields })
- })
- it('Should fail with an unknown comment', async function () {
- const fields = { comment: { id: 42 }, reason: 'my super reason' }
- await makePostBodyRequest({
- url: server.url,
- path,
- token: userAccessToken,
- fields,
- statusCodeExpected: HttpStatusCode.NOT_FOUND_404
- })
- })
- it('Should fail with a wrong account', async function () {
- const fields = { account: { id: 'blabla' }, reason: 'my super reason' }
- await makePostBodyRequest({ url: server.url, path: path, token: userAccessToken, fields })
- })
- it('Should fail with an unknown account', async function () {
- const fields = { account: { id: 42 }, reason: 'my super reason' }
- await makePostBodyRequest({
- url: server.url,
- path,
- token: userAccessToken,
- fields,
- statusCodeExpected: HttpStatusCode.NOT_FOUND_404
- })
- })
- it('Should fail with not account, comment or video', async function () {
- const fields = { reason: 'my super reason' }
- await makePostBodyRequest({
- url: server.url,
- path,
- token: userAccessToken,
- fields,
- statusCodeExpected: HttpStatusCode.BAD_REQUEST_400
- })
- })
- it('Should fail with a non authenticated user', async function () {
- const fields = { video: { id: server.video.id }, reason: 'my super reason' }
- await makePostBodyRequest({ url: server.url, path, token: 'hello', fields, statusCodeExpected: HttpStatusCode.UNAUTHORIZED_401 })
- })
- it('Should fail with a reason too short', async function () {
- const fields = { video: { id: server.video.id }, reason: 'h' }
- await makePostBodyRequest({ url: server.url, path, token: userAccessToken, fields })
- })
- it('Should fail with a too big reason', async function () {
- const fields = { video: { id: server.video.id }, reason: 'super'.repeat(605) }
- await makePostBodyRequest({ url: server.url, path, token: userAccessToken, fields })
- })
- it('Should succeed with the correct parameters (basic)', async function () {
- const fields: AbuseCreate = { video: { id: server.video.id }, reason: 'my super reason' }
- const res = await makePostBodyRequest({
- url: server.url,
- path,
- token: userAccessToken,
- fields,
- statusCodeExpected: HttpStatusCode.OK_200
- })
- abuseId = res.body.abuse.id
- })
- it('Should fail with a wrong predefined reason', async function () {
- const fields = { video: { id: server.video.id }, reason: 'my super reason', predefinedReasons: [ 'wrongPredefinedReason' ] }
- await makePostBodyRequest({ url: server.url, path, token: userAccessToken, fields })
- })
- it('Should fail with negative timestamps', async function () {
- const fields = { video: { id: server.video.id, startAt: -1 }, reason: 'my super reason' }
- await makePostBodyRequest({ url: server.url, path, token: userAccessToken, fields })
- })
- it('Should fail mith misordered startAt/endAt', async function () {
- const fields = { video: { id: server.video.id, startAt: 5, endAt: 1 }, reason: 'my super reason' }
- await makePostBodyRequest({ url: server.url, path, token: userAccessToken, fields })
- })
- it('Should succeed with the corret parameters (advanced)', async function () {
- const fields: AbuseCreate = {
- video: {
- id: server.video.id,
- startAt: 1,
- endAt: 5
- },
- reason: 'my super reason',
- predefinedReasons: [ 'serverRules' ]
- }
- await makePostBodyRequest({ url: server.url, path, token: userAccessToken, fields, statusCodeExpected: HttpStatusCode.OK_200 })
- })
- })
- describe('When updating an abuse', function () {
- it('Should fail with a non authenticated user', async function () {
- await updateAbuse(server.url, 'blabla', abuseId, {}, HttpStatusCode.UNAUTHORIZED_401)
- })
- it('Should fail with a non admin user', async function () {
- await updateAbuse(server.url, userAccessToken, abuseId, {}, HttpStatusCode.FORBIDDEN_403)
- })
- it('Should fail with a bad abuse id', async function () {
- await updateAbuse(server.url, server.accessToken, 45, {}, HttpStatusCode.NOT_FOUND_404)
- })
- it('Should fail with a bad state', async function () {
- const body = { state: 5 }
- await updateAbuse(server.url, server.accessToken, abuseId, body, HttpStatusCode.BAD_REQUEST_400)
- })
- it('Should fail with a bad moderation comment', async function () {
- const body = { moderationComment: 'b'.repeat(3001) }
- await updateAbuse(server.url, server.accessToken, abuseId, body, HttpStatusCode.BAD_REQUEST_400)
- })
- it('Should succeed with the correct params', async function () {
- const body = { state: AbuseState.ACCEPTED }
- await updateAbuse(server.url, server.accessToken, abuseId, body)
- })
- })
- describe('When creating an abuse message', function () {
- const message = 'my super message'
- it('Should fail with an invalid abuse id', async function () {
- await addAbuseMessage(server.url, userAccessToken2, 888, message, HttpStatusCode.NOT_FOUND_404)
- })
- it('Should fail with a non authenticated user', async function () {
- await addAbuseMessage(server.url, 'fake_token', abuseId, message, HttpStatusCode.UNAUTHORIZED_401)
- })
- it('Should fail with an invalid logged in user', async function () {
- await addAbuseMessage(server.url, userAccessToken2, abuseId, message, HttpStatusCode.FORBIDDEN_403)
- })
- it('Should fail with an invalid message', async function () {
- await addAbuseMessage(server.url, userAccessToken, abuseId, 'a'.repeat(5000), HttpStatusCode.BAD_REQUEST_400)
- })
- it('Should suceed with the correct params', async function () {
- const res = await addAbuseMessage(server.url, userAccessToken, abuseId, message)
- messageId = res.body.abuseMessage.id
- })
- })
- describe('When listing abuse messages', function () {
- it('Should fail with an invalid abuse id', async function () {
- await listAbuseMessages(server.url, userAccessToken, 888, HttpStatusCode.NOT_FOUND_404)
- })
- it('Should fail with a non authenticated user', async function () {
- await listAbuseMessages(server.url, 'fake_token', abuseId, HttpStatusCode.UNAUTHORIZED_401)
- })
- it('Should fail with an invalid logged in user', async function () {
- await listAbuseMessages(server.url, userAccessToken2, abuseId, HttpStatusCode.FORBIDDEN_403)
- })
- it('Should succeed with the correct params', async function () {
- await listAbuseMessages(server.url, userAccessToken, abuseId)
- })
- })
- describe('When deleting an abuse message', function () {
- it('Should fail with an invalid abuse id', async function () {
- await deleteAbuseMessage(server.url, userAccessToken, 888, messageId, HttpStatusCode.NOT_FOUND_404)
- })
- it('Should fail with an invalid message id', async function () {
- await deleteAbuseMessage(server.url, userAccessToken, abuseId, 888, HttpStatusCode.NOT_FOUND_404)
- })
- it('Should fail with a non authenticated user', async function () {
- await deleteAbuseMessage(server.url, 'fake_token', abuseId, messageId, HttpStatusCode.UNAUTHORIZED_401)
- })
- it('Should fail with an invalid logged in user', async function () {
- await deleteAbuseMessage(server.url, userAccessToken2, abuseId, messageId, HttpStatusCode.FORBIDDEN_403)
- })
- it('Should succeed with the correct params', async function () {
- await deleteAbuseMessage(server.url, userAccessToken, abuseId, messageId)
- })
- })
- describe('When deleting a video abuse', function () {
- it('Should fail with a non authenticated user', async function () {
- await deleteAbuse(server.url, 'blabla', abuseId, HttpStatusCode.UNAUTHORIZED_401)
- })
- it('Should fail with a non admin user', async function () {
- await deleteAbuse(server.url, userAccessToken, abuseId, HttpStatusCode.FORBIDDEN_403)
- })
- it('Should fail with a bad abuse id', async function () {
- await deleteAbuse(server.url, server.accessToken, 45, HttpStatusCode.NOT_FOUND_404)
- })
- it('Should succeed with the correct params', async function () {
- await deleteAbuse(server.url, server.accessToken, abuseId)
- })
- })
- describe('When trying to manage messages of a remote abuse', function () {
- let remoteAbuseId: number
- let anotherServer: ServerInfo
- before(async function () {
- this.timeout(50000)
- anotherServer = await flushAndRunServer(2)
- await setAccessTokensToServers([ anotherServer ])
- await doubleFollow(anotherServer, server)
- const server2VideoId = await getVideoIdFromUUID(anotherServer.url, server.video.uuid)
- await reportAbuse({
- url: anotherServer.url,
- token: anotherServer.accessToken,
- reason: 'remote server',
- videoId: server2VideoId
- })
- await waitJobs([ server, anotherServer ])
- const res = await getAdminAbusesList({ url: server.url, token: server.accessToken, sort: '-createdAt' })
- remoteAbuseId = res.body.data[0].id
- })
- it('Should fail when listing abuse messages of a remote abuse', async function () {
- await listAbuseMessages(server.url, server.accessToken, remoteAbuseId, HttpStatusCode.BAD_REQUEST_400)
- })
- it('Should fail when creating abuse message of a remote abuse', async function () {
- await addAbuseMessage(server.url, server.accessToken, remoteAbuseId, 'message', HttpStatusCode.BAD_REQUEST_400)
- })
- after(async function () {
- await cleanupTests([ anotherServer ])
- })
- })
- after(async function () {
- await cleanupTests([ server ])
- })
- })
|