]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/tests/feeds/feeds.ts
286c03596a12a1d5aab2157b953e9451d03157ac
[github/Chocobozzz/PeerTube.git] / server / tests / feeds / feeds.ts
1 /* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2
3 import * as chai from 'chai'
4 import { XMLParser, XMLValidator } from 'fast-xml-parser'
5 import { HttpStatusCode, VideoPrivacy } from '@shared/models'
6 import {
7 cleanupTests,
8 createMultipleServers,
9 createSingleServer,
10 doubleFollow,
11 makeGetRequest,
12 makeRawRequest,
13 PeerTubeServer,
14 PluginsCommand,
15 setAccessTokensToServers,
16 setDefaultChannelAvatar,
17 stopFfmpeg,
18 waitJobs
19 } from '@shared/server-commands'
20
21 chai.use(require('chai-xml'))
22 chai.use(require('chai-json-schema'))
23 chai.config.includeStack = true
24
25 const expect = chai.expect
26
27 describe('Test syndication feeds', () => {
28 let servers: PeerTubeServer[] = []
29 let serverHLSOnly: PeerTubeServer
30
31 let userAccessToken: string
32 let rootAccountId: number
33 let rootChannelId: number
34
35 let userAccountId: number
36 let userChannelId: number
37 let userFeedToken: string
38
39 let liveId: string
40
41 before(async function () {
42 this.timeout(120000)
43
44 // Run servers
45 servers = await createMultipleServers(2)
46 serverHLSOnly = await createSingleServer(3, {
47 transcoding: {
48 enabled: true,
49 webtorrent: { enabled: false },
50 hls: { enabled: true }
51 }
52 })
53
54 await setAccessTokensToServers([ ...servers, serverHLSOnly ])
55 await setDefaultChannelAvatar(servers[0])
56 await doubleFollow(servers[0], servers[1])
57
58 await servers[0].config.enableLive({ allowReplay: false, transcoding: false })
59
60 {
61 const user = await servers[0].users.getMyInfo()
62 rootAccountId = user.account.id
63 rootChannelId = user.videoChannels[0].id
64 }
65
66 {
67 userAccessToken = await servers[0].users.generateUserAndToken('john')
68
69 const user = await servers[0].users.getMyInfo({ token: userAccessToken })
70 userAccountId = user.account.id
71 userChannelId = user.videoChannels[0].id
72
73 const token = await servers[0].users.getMyScopedTokens({ token: userAccessToken })
74 userFeedToken = token.feedToken
75 }
76
77 {
78 await servers[0].videos.upload({ token: userAccessToken, attributes: { name: 'user video' } })
79 }
80
81 {
82 const attributes = {
83 name: 'my super name for server 1',
84 description: 'my super description for server 1',
85 fixture: 'video_short.webm'
86 }
87 const { id } = await servers[0].videos.upload({ attributes })
88
89 await servers[0].comments.createThread({ videoId: id, text: 'super comment 1' })
90 await servers[0].comments.createThread({ videoId: id, text: 'super comment 2' })
91 }
92
93 {
94 const attributes = { name: 'unlisted video', privacy: VideoPrivacy.UNLISTED }
95 const { id } = await servers[0].videos.upload({ attributes })
96
97 await servers[0].comments.createThread({ videoId: id, text: 'comment on unlisted video' })
98 }
99
100 await serverHLSOnly.videos.upload({ attributes: { name: 'hls only video' } })
101
102 await waitJobs([ ...servers, serverHLSOnly ])
103
104 await servers[0].plugins.install({ path: PluginsCommand.getPluginTestPath('-podcast-custom-tags') })
105 })
106
107 describe('All feed', function () {
108
109 it('Should be well formed XML (covers RSS 2.0 and ATOM 1.0 endpoints)', async function () {
110 for (const feed of [ 'video-comments' as 'video-comments', 'videos' as 'videos' ]) {
111 const rss = await servers[0].feed.getXML({ feed, ignoreCache: true })
112 expect(rss).xml.to.be.valid()
113
114 const atom = await servers[0].feed.getXML({ feed, format: 'atom', ignoreCache: true })
115 expect(atom).xml.to.be.valid()
116 }
117 })
118
119 it('Should be well formed XML (covers Podcast endpoint)', async function () {
120 const podcast = await servers[0].feed.getPodcastXML({ ignoreCache: true, channelId: rootChannelId })
121 expect(podcast).xml.to.be.valid()
122 })
123
124 it('Should be well formed JSON (covers JSON feed 1.0 endpoint)', async function () {
125 for (const feed of [ 'video-comments' as 'video-comments', 'videos' as 'videos' ]) {
126 const jsonText = await servers[0].feed.getJSON({ feed, ignoreCache: true })
127 expect(JSON.parse(jsonText)).to.be.jsonSchema({ type: 'object' })
128 }
129 })
130
131 it('Should serve the endpoint with a classic request', async function () {
132 await makeGetRequest({
133 url: servers[0].url,
134 path: '/feeds/videos.xml',
135 accept: 'application/xml',
136 expectedStatus: HttpStatusCode.OK_200
137 })
138 })
139
140 it('Should serve the endpoint as a cached request', async function () {
141 const res = await makeGetRequest({
142 url: servers[0].url,
143 path: '/feeds/videos.xml',
144 accept: 'application/xml',
145 expectedStatus: HttpStatusCode.OK_200
146 })
147
148 expect(res.headers['x-api-cache-cached']).to.equal('true')
149 })
150
151 it('Should not serve the endpoint as a cached request', async function () {
152 const res = await makeGetRequest({
153 url: servers[0].url,
154 path: '/feeds/videos.xml?v=186',
155 accept: 'application/xml',
156 expectedStatus: HttpStatusCode.OK_200
157 })
158
159 expect(res.headers['x-api-cache-cached']).to.not.exist
160 })
161
162 it('Should refuse to serve the endpoint without accept header', async function () {
163 await makeGetRequest({ url: servers[0].url, path: '/feeds/videos.xml', expectedStatus: HttpStatusCode.NOT_ACCEPTABLE_406 })
164 })
165 })
166
167 describe('Videos feed', function () {
168
169 describe('Podcast feed', function () {
170
171 it('Should contain a valid podcast:alternateEnclosure', async function () {
172 // Since podcast feeds should only work on the server they originate on,
173 // only test the first server where the videos reside
174 const rss = await servers[0].feed.getPodcastXML({ ignoreCache: false, channelId: rootChannelId })
175 expect(XMLValidator.validate(rss)).to.be.true
176
177 const parser = new XMLParser({ parseAttributeValue: true, ignoreAttributes: false })
178 const xmlDoc = parser.parse(rss)
179
180 const itemGuid = xmlDoc.rss.channel.item.guid
181 expect(itemGuid).to.exist
182 expect(itemGuid['@_isPermaLink']).to.equal(true)
183
184 const enclosure = xmlDoc.rss.channel.item.enclosure
185 expect(enclosure).to.exist
186 const alternateEnclosure = xmlDoc.rss.channel.item['podcast:alternateEnclosure']
187 expect(alternateEnclosure).to.exist
188
189 expect(alternateEnclosure['@_type']).to.equal('video/webm')
190 expect(alternateEnclosure['@_length']).to.equal(218910)
191 expect(alternateEnclosure['@_lang']).to.equal('zh')
192 expect(alternateEnclosure['@_title']).to.equal('720p')
193 expect(alternateEnclosure['@_default']).to.equal(true)
194
195 expect(alternateEnclosure['podcast:source'][0]['@_uri']).to.contain('-720.webm')
196 expect(alternateEnclosure['podcast:source'][0]['@_uri']).to.equal(enclosure['@_url'])
197 expect(alternateEnclosure['podcast:source'][1]['@_uri']).to.contain('-720.torrent')
198 expect(alternateEnclosure['podcast:source'][1]['@_contentType']).to.equal('application/x-bittorrent')
199 expect(alternateEnclosure['podcast:source'][2]['@_uri']).to.contain('magnet:?')
200 })
201
202 it('Should contain a valid podcast:alternateEnclosure with HLS only', async function () {
203 const rss = await serverHLSOnly.feed.getPodcastXML({ ignoreCache: false, channelId: rootChannelId })
204 expect(XMLValidator.validate(rss)).to.be.true
205
206 const parser = new XMLParser({ parseAttributeValue: true, ignoreAttributes: false })
207 const xmlDoc = parser.parse(rss)
208
209 const itemGuid = xmlDoc.rss.channel.item.guid
210 expect(itemGuid).to.exist
211 expect(itemGuid['@_isPermaLink']).to.equal(true)
212
213 const enclosure = xmlDoc.rss.channel.item.enclosure
214 const alternateEnclosure = xmlDoc.rss.channel.item['podcast:alternateEnclosure']
215 expect(alternateEnclosure).to.exist
216
217 expect(alternateEnclosure['@_type']).to.equal('application/x-mpegURL')
218 expect(alternateEnclosure['@_lang']).to.equal('zh')
219 expect(alternateEnclosure['@_title']).to.equal('HLS')
220 expect(alternateEnclosure['@_default']).to.equal(true)
221
222 expect(alternateEnclosure['podcast:source']['@_uri']).to.contain('-master.m3u8')
223 expect(alternateEnclosure['podcast:source']['@_uri']).to.equal(enclosure['@_url'])
224 })
225
226 it('Should contain a valid podcast:socialInteract', async function () {
227 const rss = await servers[0].feed.getPodcastXML({ ignoreCache: false, channelId: rootChannelId })
228 expect(XMLValidator.validate(rss)).to.be.true
229
230 const parser = new XMLParser({ parseAttributeValue: true, ignoreAttributes: false })
231 const xmlDoc = parser.parse(rss)
232
233 const item = xmlDoc.rss.channel.item
234 const socialInteract = item['podcast:socialInteract']
235 expect(socialInteract).to.exist
236 expect(socialInteract['@_protocol']).to.equal('activitypub')
237 expect(socialInteract['@_uri']).to.exist
238 expect(socialInteract['@_accountUrl']).to.exist
239 })
240
241 it('Should contain a valid support custom tags for plugins', async function () {
242 const rss = await servers[0].feed.getPodcastXML({ ignoreCache: false, channelId: userChannelId })
243 expect(XMLValidator.validate(rss)).to.be.true
244
245 const parser = new XMLParser({ parseAttributeValue: true, ignoreAttributes: false })
246 const xmlDoc = parser.parse(rss)
247
248 const fooTag = xmlDoc.rss.channel.fooTag
249 expect(fooTag).to.exist
250 expect(fooTag['@_bar']).to.equal('baz')
251 expect(fooTag['#text']).to.equal(42)
252
253 const bizzBuzzItem = xmlDoc.rss.channel['biz:buzzItem']
254 expect(bizzBuzzItem).to.exist
255
256 let nestedTag = bizzBuzzItem.nestedTag
257 expect(nestedTag).to.exist
258 expect(nestedTag).to.equal('example nested tag')
259
260 const item = xmlDoc.rss.channel.item
261 const fizzTag = item.fizzTag
262 expect(fizzTag).to.exist
263 expect(fizzTag['@_bar']).to.equal('baz')
264 expect(fizzTag['#text']).to.equal(21)
265
266 const bizzBuzz = item['biz:buzz']
267 expect(bizzBuzz).to.exist
268
269 nestedTag = bizzBuzz.nestedTag
270 expect(nestedTag).to.exist
271 expect(nestedTag).to.equal('example nested tag')
272 })
273
274 it('Should contain a valid podcast:liveItem for live streams', async function () {
275 this.timeout(120000)
276
277 const { uuid } = await servers[0].live.create({
278 fields: {
279 name: 'live-0',
280 privacy: VideoPrivacy.PUBLIC,
281 channelId: rootChannelId,
282 permanentLive: false
283 }
284 })
285 liveId = uuid
286
287 const ffmpeg = await servers[0].live.sendRTMPStreamInVideo({ videoId: liveId, copyCodecs: true, fixtureName: 'video_short.mp4' })
288 await servers[0].live.waitUntilPublished({ videoId: liveId })
289
290 const rss = await servers[0].feed.getPodcastXML({ ignoreCache: false, channelId: rootChannelId })
291 expect(XMLValidator.validate(rss)).to.be.true
292
293 const parser = new XMLParser({ parseAttributeValue: true, ignoreAttributes: false })
294 const xmlDoc = parser.parse(rss)
295 const liveItem = xmlDoc.rss.channel['podcast:liveItem']
296 expect(liveItem.title).to.equal('live-0')
297 expect(liveItem.guid['@_isPermaLink']).to.equal(false)
298 expect(liveItem.guid['#text']).to.contain(`${uuid}_`)
299 expect(liveItem['@_status']).to.equal('live')
300
301 const enclosure = liveItem.enclosure
302 const alternateEnclosure = liveItem['podcast:alternateEnclosure']
303 expect(alternateEnclosure).to.exist
304 expect(alternateEnclosure['@_type']).to.equal('application/x-mpegURL')
305 expect(alternateEnclosure['@_title']).to.equal('HLS live stream')
306 expect(alternateEnclosure['@_default']).to.equal(true)
307
308 expect(alternateEnclosure['podcast:source']['@_uri']).to.contain('/master.m3u8')
309 expect(alternateEnclosure['podcast:source']['@_uri']).to.equal(enclosure['@_url'])
310
311 await stopFfmpeg(ffmpeg)
312
313 await servers[0].live.waitUntilEnded({ videoId: liveId })
314
315 await waitJobs(servers)
316 })
317 })
318
319 describe('JSON feed', function () {
320
321 it('Should contain a valid \'attachments\' object', async function () {
322 for (const server of servers) {
323 const json = await server.feed.getJSON({ feed: 'videos', ignoreCache: true })
324 const jsonObj = JSON.parse(json)
325 expect(jsonObj.items.length).to.be.equal(2)
326 expect(jsonObj.items[0].attachments).to.exist
327 expect(jsonObj.items[0].attachments.length).to.be.eq(1)
328 expect(jsonObj.items[0].attachments[0].mime_type).to.be.eq('application/x-bittorrent')
329 expect(jsonObj.items[0].attachments[0].size_in_bytes).to.be.eq(218910)
330 expect(jsonObj.items[0].attachments[0].url).to.contain('720.torrent')
331 }
332 })
333
334 it('Should filter by account', async function () {
335 {
336 const json = await servers[0].feed.getJSON({ feed: 'videos', query: { accountId: rootAccountId }, ignoreCache: true })
337 const jsonObj = JSON.parse(json)
338 expect(jsonObj.items.length).to.be.equal(1)
339 expect(jsonObj.items[0].title).to.equal('my super name for server 1')
340 expect(jsonObj.items[0].author.name).to.equal('Main root channel')
341 }
342
343 {
344 const json = await servers[0].feed.getJSON({ feed: 'videos', query: { accountId: userAccountId }, ignoreCache: true })
345 const jsonObj = JSON.parse(json)
346 expect(jsonObj.items.length).to.be.equal(1)
347 expect(jsonObj.items[0].title).to.equal('user video')
348 expect(jsonObj.items[0].author.name).to.equal('Main john channel')
349 }
350
351 for (const server of servers) {
352 {
353 const json = await server.feed.getJSON({ feed: 'videos', query: { accountName: 'root@' + servers[0].host }, ignoreCache: true })
354 const jsonObj = JSON.parse(json)
355 expect(jsonObj.items.length).to.be.equal(1)
356 expect(jsonObj.items[0].title).to.equal('my super name for server 1')
357 }
358
359 {
360 const json = await server.feed.getJSON({ feed: 'videos', query: { accountName: 'john@' + servers[0].host }, ignoreCache: true })
361 const jsonObj = JSON.parse(json)
362 expect(jsonObj.items.length).to.be.equal(1)
363 expect(jsonObj.items[0].title).to.equal('user video')
364 }
365 }
366 })
367
368 it('Should filter by video channel', async function () {
369 {
370 const json = await servers[0].feed.getJSON({ feed: 'videos', query: { videoChannelId: rootChannelId }, ignoreCache: true })
371 const jsonObj = JSON.parse(json)
372 expect(jsonObj.items.length).to.be.equal(1)
373 expect(jsonObj.items[0].title).to.equal('my super name for server 1')
374 expect(jsonObj.items[0].author.name).to.equal('Main root channel')
375 }
376
377 {
378 const json = await servers[0].feed.getJSON({ feed: 'videos', query: { videoChannelId: userChannelId }, ignoreCache: true })
379 const jsonObj = JSON.parse(json)
380 expect(jsonObj.items.length).to.be.equal(1)
381 expect(jsonObj.items[0].title).to.equal('user video')
382 expect(jsonObj.items[0].author.name).to.equal('Main john channel')
383 }
384
385 for (const server of servers) {
386 {
387 const query = { videoChannelName: 'root_channel@' + servers[0].host }
388 const json = await server.feed.getJSON({ feed: 'videos', query, ignoreCache: true })
389 const jsonObj = JSON.parse(json)
390 expect(jsonObj.items.length).to.be.equal(1)
391 expect(jsonObj.items[0].title).to.equal('my super name for server 1')
392 }
393
394 {
395 const query = { videoChannelName: 'john_channel@' + servers[0].host }
396 const json = await server.feed.getJSON({ feed: 'videos', query, ignoreCache: true })
397 const jsonObj = JSON.parse(json)
398 expect(jsonObj.items.length).to.be.equal(1)
399 expect(jsonObj.items[0].title).to.equal('user video')
400 }
401 }
402 })
403
404 it('Should correctly have videos feed with HLS only', async function () {
405 this.timeout(120000)
406
407 const json = await serverHLSOnly.feed.getJSON({ feed: 'videos', ignoreCache: true })
408 const jsonObj = JSON.parse(json)
409 expect(jsonObj.items.length).to.be.equal(1)
410 expect(jsonObj.items[0].attachments).to.exist
411 expect(jsonObj.items[0].attachments.length).to.be.eq(4)
412
413 for (let i = 0; i < 4; i++) {
414 expect(jsonObj.items[0].attachments[i].mime_type).to.be.eq('application/x-bittorrent')
415 expect(jsonObj.items[0].attachments[i].size_in_bytes).to.be.greaterThan(0)
416 expect(jsonObj.items[0].attachments[i].url).to.exist
417 }
418 })
419
420 it('Should not display waiting live videos', async function () {
421 const { uuid } = await servers[0].live.create({
422 fields: {
423 name: 'live',
424 privacy: VideoPrivacy.PUBLIC,
425 channelId: rootChannelId
426 }
427 })
428 liveId = uuid
429
430 const json = await servers[0].feed.getJSON({ feed: 'videos', ignoreCache: true })
431
432 const jsonObj = JSON.parse(json)
433 expect(jsonObj.items.length).to.be.equal(2)
434 expect(jsonObj.items[0].title).to.equal('my super name for server 1')
435 expect(jsonObj.items[1].title).to.equal('user video')
436 })
437
438 it('Should display published live videos', async function () {
439 this.timeout(120000)
440
441 const ffmpeg = await servers[0].live.sendRTMPStreamInVideo({ videoId: liveId, copyCodecs: true, fixtureName: 'video_short.mp4' })
442 await servers[0].live.waitUntilPublished({ videoId: liveId })
443
444 const json = await servers[0].feed.getJSON({ feed: 'videos', ignoreCache: true })
445
446 const jsonObj = JSON.parse(json)
447 expect(jsonObj.items.length).to.be.equal(3)
448 expect(jsonObj.items[0].title).to.equal('live')
449 expect(jsonObj.items[1].title).to.equal('my super name for server 1')
450 expect(jsonObj.items[2].title).to.equal('user video')
451
452 await stopFfmpeg(ffmpeg)
453 })
454
455 it('Should have the channel avatar as feed icon', async function () {
456 const json = await servers[0].feed.getJSON({ feed: 'videos', query: { videoChannelId: rootChannelId }, ignoreCache: true })
457
458 const jsonObj = JSON.parse(json)
459 const imageUrl = jsonObj.icon
460 expect(imageUrl).to.include('/lazy-static/avatars/')
461 await makeRawRequest({ url: imageUrl, expectedStatus: HttpStatusCode.OK_200 })
462 })
463 })
464 })
465
466 describe('Video comments feed', function () {
467
468 it('Should contain valid comments (covers JSON feed 1.0 endpoint) and not from unlisted videos', async function () {
469 for (const server of servers) {
470 const json = await server.feed.getJSON({ feed: 'video-comments', ignoreCache: true })
471
472 const jsonObj = JSON.parse(json)
473 expect(jsonObj.items.length).to.be.equal(2)
474 expect(jsonObj.items[0].content_html).to.contain('<p>super comment 2</p>')
475 expect(jsonObj.items[1].content_html).to.contain('<p>super comment 1</p>')
476 }
477 })
478
479 it('Should not list comments from muted accounts or instances', async function () {
480 this.timeout(30000)
481
482 const remoteHandle = 'root@' + servers[0].host
483
484 await servers[1].blocklist.addToServerBlocklist({ account: remoteHandle })
485
486 {
487 const json = await servers[1].feed.getJSON({ feed: 'video-comments', ignoreCache: true })
488 const jsonObj = JSON.parse(json)
489 expect(jsonObj.items.length).to.be.equal(0)
490 }
491
492 await servers[1].blocklist.removeFromServerBlocklist({ account: remoteHandle })
493
494 {
495 const videoUUID = (await servers[1].videos.quickUpload({ name: 'server 2' })).uuid
496 await waitJobs(servers)
497 await servers[0].comments.createThread({ videoId: videoUUID, text: 'super comment' })
498 await waitJobs(servers)
499
500 const json = await servers[1].feed.getJSON({ feed: 'video-comments', ignoreCache: true })
501 const jsonObj = JSON.parse(json)
502 expect(jsonObj.items.length).to.be.equal(3)
503 }
504
505 await servers[1].blocklist.addToMyBlocklist({ account: remoteHandle })
506
507 {
508 const json = await servers[1].feed.getJSON({ feed: 'video-comments', ignoreCache: true })
509 const jsonObj = JSON.parse(json)
510 expect(jsonObj.items.length).to.be.equal(2)
511 }
512 })
513 })
514
515 describe('Video feed from my subscriptions', function () {
516 let feeduserAccountId: number
517 let feeduserFeedToken: string
518
519 it('Should list no videos for a user with no videos and no subscriptions', async function () {
520 const attr = { username: 'feeduser', password: 'password' }
521 await servers[0].users.create({ username: attr.username, password: attr.password })
522 const feeduserAccessToken = await servers[0].login.getAccessToken(attr)
523
524 {
525 const user = await servers[0].users.getMyInfo({ token: feeduserAccessToken })
526 feeduserAccountId = user.account.id
527 }
528
529 {
530 const token = await servers[0].users.getMyScopedTokens({ token: feeduserAccessToken })
531 feeduserFeedToken = token.feedToken
532 }
533
534 {
535 const body = await servers[0].videos.listMySubscriptionVideos({ token: feeduserAccessToken })
536 expect(body.total).to.equal(0)
537
538 const query = { accountId: feeduserAccountId, token: feeduserFeedToken }
539 const json = await servers[0].feed.getJSON({ feed: 'subscriptions', query, ignoreCache: true })
540 const jsonObj = JSON.parse(json)
541 expect(jsonObj.items.length).to.be.equal(0) // no subscription, it should not list the instance's videos but list 0 videos
542 }
543 })
544
545 it('Should fail with an invalid token', async function () {
546 const query = { accountId: feeduserAccountId, token: 'toto' }
547 await servers[0].feed.getJSON({ feed: 'subscriptions', query, expectedStatus: HttpStatusCode.FORBIDDEN_403, ignoreCache: true })
548 })
549
550 it('Should fail with a token of another user', async function () {
551 const query = { accountId: feeduserAccountId, token: userFeedToken }
552 await servers[0].feed.getJSON({ feed: 'subscriptions', query, expectedStatus: HttpStatusCode.FORBIDDEN_403, ignoreCache: true })
553 })
554
555 it('Should list no videos for a user with videos but no subscriptions', async function () {
556 const body = await servers[0].videos.listMySubscriptionVideos({ token: userAccessToken })
557 expect(body.total).to.equal(0)
558
559 const query = { accountId: userAccountId, token: userFeedToken }
560 const json = await servers[0].feed.getJSON({ feed: 'subscriptions', query, ignoreCache: true })
561 const jsonObj = JSON.parse(json)
562 expect(jsonObj.items.length).to.be.equal(0) // no subscription, it should not list the instance's videos but list 0 videos
563 })
564
565 it('Should list self videos for a user with a subscription to themselves', async function () {
566 this.timeout(30000)
567
568 await servers[0].subscriptions.add({ token: userAccessToken, targetUri: 'john_channel@' + servers[0].host })
569 await waitJobs(servers)
570
571 {
572 const body = await servers[0].videos.listMySubscriptionVideos({ token: userAccessToken })
573 expect(body.total).to.equal(1)
574 expect(body.data[0].name).to.equal('user video')
575
576 const query = { accountId: userAccountId, token: userFeedToken }
577 const json = await servers[0].feed.getJSON({ feed: 'subscriptions', query, ignoreCache: true })
578 const jsonObj = JSON.parse(json)
579 expect(jsonObj.items.length).to.be.equal(1) // subscribed to self, it should not list the instance's videos but list john's
580 }
581 })
582
583 it('Should list videos of a user\'s subscription', async function () {
584 this.timeout(30000)
585
586 await servers[0].subscriptions.add({ token: userAccessToken, targetUri: 'root_channel@' + servers[0].host })
587 await waitJobs(servers)
588
589 {
590 const body = await servers[0].videos.listMySubscriptionVideos({ token: userAccessToken })
591 expect(body.total).to.equal(2, 'there should be 2 videos part of the subscription')
592
593 const query = { accountId: userAccountId, token: userFeedToken }
594 const json = await servers[0].feed.getJSON({ feed: 'subscriptions', query, ignoreCache: true })
595 const jsonObj = JSON.parse(json)
596 expect(jsonObj.items.length).to.be.equal(2) // subscribed to root, it should not list the instance's videos but list root/john's
597 }
598 })
599
600 it('Should renew the token, and so have an invalid old token', async function () {
601 await servers[0].users.renewMyScopedTokens({ token: userAccessToken })
602
603 const query = { accountId: userAccountId, token: userFeedToken }
604 await servers[0].feed.getJSON({ feed: 'subscriptions', query, expectedStatus: HttpStatusCode.FORBIDDEN_403, ignoreCache: true })
605 })
606
607 it('Should succeed with the new token', async function () {
608 const token = await servers[0].users.getMyScopedTokens({ token: userAccessToken })
609 userFeedToken = token.feedToken
610
611 const query = { accountId: userAccountId, token: userFeedToken }
612 await servers[0].feed.getJSON({ feed: 'subscriptions', query, ignoreCache: true })
613 })
614
615 })
616
617 after(async function () {
618 await servers[0].plugins.uninstall({ npmName: 'peertube-plugin-test-podcast-custom-tags' })
619
620 await cleanupTests([ ...servers, serverHLSOnly ])
621 })
622 })