diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2020-11-09 16:25:27 +0100 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2020-11-25 11:07:56 +0100 |
commit | 5beb89f223539f1e415a976ff104f772526b4d20 (patch) | |
tree | 2164677d16a2965d63499e249aa75ab0e06e3a6c /server/tests | |
parent | afff310e50f2fa8419bb4242470cbde46ab54463 (diff) | |
download | PeerTube-5beb89f223539f1e415a976ff104f772526b4d20.tar.gz PeerTube-5beb89f223539f1e415a976ff104f772526b4d20.tar.zst PeerTube-5beb89f223539f1e415a976ff104f772526b4d20.zip |
refactor scoped token service
Diffstat (limited to 'server/tests')
-rw-r--r-- | server/tests/feeds/feeds.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/server/tests/feeds/feeds.ts b/server/tests/feeds/feeds.ts index 2cd9b2d0a..175ea9102 100644 --- a/server/tests/feeds/feeds.ts +++ b/server/tests/feeds/feeds.ts | |||
@@ -326,7 +326,7 @@ describe('Test syndication feeds', () => { | |||
326 | const res = await listUserSubscriptionVideos(servers[0].url, feeduserAccessToken) | 326 | const res = await listUserSubscriptionVideos(servers[0].url, feeduserAccessToken) |
327 | expect(res.body.total).to.equal(0) | 327 | expect(res.body.total).to.equal(0) |
328 | 328 | ||
329 | const json = await getJSONfeed(servers[0].url, 'videos', { accountId: feeduserAccountId, token: feeduserFeedToken }) | 329 | const json = await getJSONfeed(servers[0].url, 'subscriptions', { accountId: feeduserAccountId, token: feeduserFeedToken }) |
330 | const jsonObj = JSON.parse(json.text) | 330 | const jsonObj = JSON.parse(json.text) |
331 | expect(jsonObj.items.length).to.be.equal(0) // no subscription, it should not list the instance's videos but list 0 videos | 331 | expect(jsonObj.items.length).to.be.equal(0) // no subscription, it should not list the instance's videos but list 0 videos |
332 | } | 332 | } |
@@ -337,7 +337,7 @@ describe('Test syndication feeds', () => { | |||
337 | const res = await listUserSubscriptionVideos(servers[0].url, userAccessToken) | 337 | const res = await listUserSubscriptionVideos(servers[0].url, userAccessToken) |
338 | expect(res.body.total).to.equal(0) | 338 | expect(res.body.total).to.equal(0) |
339 | 339 | ||
340 | const json = await getJSONfeed(servers[0].url, 'videos', { accountId: userAccountId, token: userFeedToken }) | 340 | const json = await getJSONfeed(servers[0].url, 'subscriptions', { accountId: userAccountId, token: userFeedToken }) |
341 | const jsonObj = JSON.parse(json.text) | 341 | const jsonObj = JSON.parse(json.text) |
342 | expect(jsonObj.items.length).to.be.equal(0) // no subscription, it should not list the instance's videos but list 0 videos | 342 | expect(jsonObj.items.length).to.be.equal(0) // no subscription, it should not list the instance's videos but list 0 videos |
343 | } | 343 | } |
@@ -354,7 +354,7 @@ describe('Test syndication feeds', () => { | |||
354 | expect(res.body.total).to.equal(1) | 354 | expect(res.body.total).to.equal(1) |
355 | expect(res.body.data[0].name).to.equal('user video') | 355 | expect(res.body.data[0].name).to.equal('user video') |
356 | 356 | ||
357 | const json = await getJSONfeed(servers[0].url, 'videos', { accountId: userAccountId, token: userFeedToken, version: 1 }) | 357 | const json = await getJSONfeed(servers[0].url, 'subscriptions', { accountId: userAccountId, token: userFeedToken, version: 1 }) |
358 | const jsonObj = JSON.parse(json.text) | 358 | const jsonObj = JSON.parse(json.text) |
359 | expect(jsonObj.items.length).to.be.equal(1) // subscribed to self, it should not list the instance's videos but list john's | 359 | expect(jsonObj.items.length).to.be.equal(1) // subscribed to self, it should not list the instance's videos but list john's |
360 | } | 360 | } |
@@ -370,7 +370,7 @@ describe('Test syndication feeds', () => { | |||
370 | const res = await listUserSubscriptionVideos(servers[0].url, userAccessToken) | 370 | const res = await listUserSubscriptionVideos(servers[0].url, userAccessToken) |
371 | expect(res.body.total).to.equal(2, "there should be 2 videos part of the subscription") | 371 | expect(res.body.total).to.equal(2, "there should be 2 videos part of the subscription") |
372 | 372 | ||
373 | const json = await getJSONfeed(servers[0].url, 'videos', { accountId: userAccountId, token: userFeedToken, version: 2 }) | 373 | const json = await getJSONfeed(servers[0].url, 'subscriptions', { accountId: userAccountId, token: userFeedToken, version: 2 }) |
374 | const jsonObj = JSON.parse(json.text) | 374 | const jsonObj = JSON.parse(json.text) |
375 | expect(jsonObj.items.length).to.be.equal(2) // subscribed to root, it should not list the instance's videos but list root/john's | 375 | expect(jsonObj.items.length).to.be.equal(2) // subscribed to root, it should not list the instance's videos but list root/john's |
376 | } | 376 | } |