aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/tests/utils/videos/video-abuses.ts
blob: 0d72bf457a8384a0fde325df6cad0a0c3a72be5e (plain) (tree)
1
2
3

                                    
                                                                                                                       





















                                                          



                                                                              
                    
 
import * as request from 'supertest'

function reportVideoAbuse (url: string, token: string, videoId: number | string, reason: string, specialStatus = 204) {
  const path = '/api/v1/videos/' + videoId + '/abuse'

  return request(url)
          .post(path)
          .set('Accept', 'application/json')
          .set('Authorization', 'Bearer ' + token)
          .send({ reason })
          .expect(specialStatus)
}

function getVideoAbusesList (url: string, token: string) {
  const path = '/api/v1/videos/abuse'

  return request(url)
          .get(path)
          .query({ sort: 'createdAt' })
          .set('Accept', 'application/json')
          .set('Authorization', 'Bearer ' + token)
          .expect(200)
          .expect('Content-Type', /json/)
}

// ---------------------------------------------------------------------------

export {
  reportVideoAbuse,
  getVideoAbusesList
}