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

function changeVideoOwnership (url: string, token: string, videoId: number | string, username) {
  const path = '/api/v1/videos/' + videoId + '/give-ownership'

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

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

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

function acceptChangeOwnership (url: string, token: string, ownershipId: string, channelId: number, expectedStatus = 204) {
  const path = '/api/v1/videos/ownership/' + ownershipId + '/accept'

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

function refuseChangeOwnership (url: string, token: string, ownershipId: string, expectedStatus = 204) {
  const path = '/api/v1/videos/ownership/' + ownershipId + '/refuse'

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

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

export {
  changeVideoOwnership,
  getVideoChangeOwnershipList,
  acceptChangeOwnership,
  refuseChangeOwnership
}