aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/server/follow-constraints.ts
blob: 0f1c6264d1067437b28260a6d15288c8c0198f6a (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */

import 'mocha'
import * as chai from 'chai'
import { HttpStatusCode } from '@shared/core-utils'
import { PeerTubeProblemDocument, ServerErrorCode } from '@shared/models'
import {
  cleanupTests,
  createUser,
  doubleFollow,
  flushAndRunMultipleServers,
  getAccountVideos,
  getVideo,
  getVideoChannelVideos,
  getVideoWithToken,
  ServerInfo,
  setAccessTokensToServers,
  uploadVideo,
  userLogin
} from '../../../../shared/extra-utils'

const expect = chai.expect

describe('Test follow constraints', function () {
  let servers: ServerInfo[] = []
  let video1UUID: string
  let video2UUID: string
  let userAccessToken: string

  before(async function () {
    this.timeout(90000)

    servers = await flushAndRunMultipleServers(2)

    // Get the access tokens
    await setAccessTokensToServers(servers)

    {
      const res = await uploadVideo(servers[0].url, servers[0].accessToken, { name: 'video server 1' })
      video1UUID = res.body.video.uuid
    }
    {
      const res = await uploadVideo(servers[1].url, servers[1].accessToken, { name: 'video server 2' })
      video2UUID = res.body.video.uuid
    }

    const user = {
      username: 'user1',
      password: 'super_password'
    }
    await createUser({ url: servers[0].url, accessToken: servers[0].accessToken, username: user.username, password: user.password })
    userAccessToken = await userLogin(servers[0], user)

    await doubleFollow(servers[0], servers[1])
  })

  describe('With a followed instance', function () {

    describe('With an unlogged user', function () {

      it('Should get the local video', async function () {
        await getVideo(servers[0].url, video1UUID, HttpStatusCode.OK_200)
      })

      it('Should get the remote video', async function () {
        await getVideo(servers[0].url, video2UUID, HttpStatusCode.OK_200)
      })

      it('Should list local account videos', async function () {
        const res = await getAccountVideos(servers[0].url, undefined, 'root@localhost:' + servers[0].port, 0, 5)

        expect(res.body.total).to.equal(1)
        expect(res.body.data).to.have.lengthOf(1)
      })

      it('Should list remote account videos', async function () {
        const res = await getAccountVideos(servers[0].url, undefined, 'root@localhost:' + servers[1].port, 0, 5)

        expect(res.body.total).to.equal(1)
        expect(res.body.data).to.have.lengthOf(1)
      })

      it('Should list local channel videos', async function () {
        const videoChannelName = 'root_channel@localhost:' + servers[0].port
        const res = await getVideoChannelVideos(servers[0].url, undefined, videoChannelName, 0, 5)

        expect(res.body.total).to.equal(1)
        expect(res.body.data).to.have.lengthOf(1)
      })

      it('Should list remote channel videos', async function () {
        const videoChannelName = 'root_channel@localhost:' + servers[1].port
        const res = await getVideoChannelVideos(servers[0].url, undefined, videoChannelName, 0, 5)

        expect(res.body.total).to.equal(1)
        expect(res.body.data).to.have.lengthOf(1)
      })
    })

    describe('With a logged user', function () {
      it('Should get the local video', async function () {
        await getVideoWithToken(servers[0].url, userAccessToken, video1UUID, HttpStatusCode.OK_200)
      })

      it('Should get the remote video', async function () {
        await getVideoWithToken(servers[0].url, userAccessToken, video2UUID, HttpStatusCode.OK_200)
      })

      it('Should list local account videos', async function () {
        const res = await getAccountVideos(servers[0].url, userAccessToken, 'root@localhost:' + servers[0].port, 0, 5)

        expect(res.body.total).to.equal(1)
        expect(res.body.data).to.have.lengthOf(1)
      })

      it('Should list remote account videos', async function () {
        const res = await getAccountVideos(servers[0].url, userAccessToken, 'root@localhost:' + servers[1].port, 0, 5)

        expect(res.body.total).to.equal(1)
        expect(res.body.data).to.have.lengthOf(1)
      })

      it('Should list local channel videos', async function () {
        const videoChannelName = 'root_channel@localhost:' + servers[0].port
        const res = await getVideoChannelVideos(servers[0].url, userAccessToken, videoChannelName, 0, 5)

        expect(res.body.total).to.equal(1)
        expect(res.body.data).to.have.lengthOf(1)
      })

      it('Should list remote channel videos', async function () {
        const videoChannelName = 'root_channel@localhost:' + servers[1].port
        const res = await getVideoChannelVideos(servers[0].url, userAccessToken, videoChannelName, 0, 5)

        expect(res.body.total).to.equal(1)
        expect(res.body.data).to.have.lengthOf(1)
      })
    })
  })

  describe('With a non followed instance', function () {

    before(async function () {
      this.timeout(30000)

      await servers[0].followsCommand.unfollow({ target: servers[1] })
    })

    describe('With an unlogged user', function () {

      it('Should get the local video', async function () {
        await getVideo(servers[0].url, video1UUID, HttpStatusCode.OK_200)
      })

      it('Should not get the remote video', async function () {
        const res = await getVideo(servers[0].url, video2UUID, HttpStatusCode.FORBIDDEN_403)

        const error = res.body as PeerTubeProblemDocument

        const doc = 'https://docs.joinpeertube.org/api-rest-reference.html#section/Errors/does_not_respect_follow_constraints'
        expect(error.type).to.equal(doc)
        expect(error.code).to.equal(ServerErrorCode.DOES_NOT_RESPECT_FOLLOW_CONSTRAINTS)

        expect(error.detail).to.equal('Cannot get this video regarding follow constraints')
        expect(error.error).to.equal(error.detail)

        expect(error.status).to.equal(HttpStatusCode.FORBIDDEN_403)

        expect(error.originUrl).to.contains(servers[1].url)
      })

      it('Should list local account videos', async function () {
        const res = await getAccountVideos(servers[0].url, undefined, 'root@localhost:' + servers[0].port, 0, 5)

        expect(res.body.total).to.equal(1)
        expect(res.body.data).to.have.lengthOf(1)
      })

      it('Should not list remote account videos', async function () {
        const res = await getAccountVideos(servers[0].url, undefined, 'root@localhost:' + servers[1].port, 0, 5)

        expect(res.body.total).to.equal(0)
        expect(res.body.data).to.have.lengthOf(0)
      })

      it('Should list local channel videos', async function () {
        const videoChannelName = 'root_channel@localhost:' + servers[0].port
        const res = await getVideoChannelVideos(servers[0].url, undefined, videoChannelName, 0, 5)

        expect(res.body.total).to.equal(1)
        expect(res.body.data).to.have.lengthOf(1)
      })

      it('Should not list remote channel videos', async function () {
        const videoChannelName = 'root_channel@localhost:' + servers[1].port
        const res = await getVideoChannelVideos(servers[0].url, undefined, videoChannelName, 0, 5)

        expect(res.body.total).to.equal(0)
        expect(res.body.data).to.have.lengthOf(0)
      })
    })

    describe('With a logged user', function () {
      it('Should get the local video', async function () {
        await getVideoWithToken(servers[0].url, userAccessToken, video1UUID, HttpStatusCode.OK_200)
      })

      it('Should get the remote video', async function () {
        await getVideoWithToken(servers[0].url, userAccessToken, video2UUID, HttpStatusCode.OK_200)
      })

      it('Should list local account videos', async function () {
        const res = await getAccountVideos(servers[0].url, userAccessToken, 'root@localhost:' + servers[0].port, 0, 5)

        expect(res.body.total).to.equal(1)
        expect(res.body.data).to.have.lengthOf(1)
      })

      it('Should list remote account videos', async function () {
        const res = await getAccountVideos(servers[0].url, userAccessToken, 'root@localhost:' + servers[1].port, 0, 5)

        expect(res.body.total).to.equal(1)
        expect(res.body.data).to.have.lengthOf(1)
      })

      it('Should list local channel videos', async function () {
        const videoChannelName = 'root_channel@localhost:' + servers[0].port
        const res = await getVideoChannelVideos(servers[0].url, userAccessToken, videoChannelName, 0, 5)

        expect(res.body.total).to.equal(1)
        expect(res.body.data).to.have.lengthOf(1)
      })

      it('Should list remote channel videos', async function () {
        const videoChannelName = 'root_channel@localhost:' + servers[1].port
        const res = await getVideoChannelVideos(servers[0].url, userAccessToken, videoChannelName, 0, 5)

        expect(res.body.total).to.equal(1)
        expect(res.body.data).to.have.lengthOf(1)
      })
    })
  })

  after(async function () {
    await cleanupTests(servers)
  })
})