aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/utils/video-abuses.js
blob: c4dd879902d3dd95afb72ac74979e93c339453a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
'use strict'

const request = require('supertest')

const videosAbuseUtils = {
  getVideoAbusesList,
  getVideoAbusesListPagination,
  getVideoAbusesListSort,
  reportVideoAbuse
}

// ---------------------- Export functions --------------------

function reportVideoAbuse (url, token, videoId, reason, specialStatus, end) {
  if (!end) {
    end = specialStatus
    specialStatus = 204
  }

  const path = '/api/v1/videos/' + videoId + '/abuse'

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

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

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

function getVideoAbusesListPagination (url, token, start, count, end) {
  const path = '/api/v1/videos/abuse'

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

function getVideoAbusesListSort (url, token, sort, end) {
  const path = '/api/v1/videos/abuse'

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

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

module.exports = videosAbuseUtils