aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/utils/videos/video-blacklist.ts
blob: 2c176fde064c79126525c5b944dab43d41ae12dc (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
import * as request from 'supertest'

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

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

function updateVideoBlacklist (url: string, token: string, videoId: number, reason?: string, specialStatus = 204) {
  const path = '/api/v1/videos/' + videoId + '/blacklist'

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

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

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

function getBlacklistedVideosList (url: string, token: string, specialStatus = 200) {
  const path = '/api/v1/videos/blacklist/'

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

function getSortedBlacklistedVideosList (url: string, token: string, sort: string, specialStatus = 200) {
  const path = '/api/v1/videos/blacklist/'

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

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

export {
  addVideoToBlacklist,
  removeVideoFromBlacklist,
  getBlacklistedVideosList,
  getSortedBlacklistedVideosList,
  updateVideoBlacklist
}