diff options
author | Wicklow <123956049+wickloww@users.noreply.github.com> | 2023-03-02 13:50:55 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-02 14:50:55 +0100 |
commit | 692ae8c31caa5a404142c9f46e03fdc8dc5b233f (patch) | |
tree | 17d12edb5cfbfeddff2fd6f0d85b11c8954da89e /server/tests/feeds/feeds.ts | |
parent | c0a4982ebe27c89f296a0bbd518e938f09d1f054 (diff) | |
download | PeerTube-692ae8c31caa5a404142c9f46e03fdc8dc5b233f.tar.gz PeerTube-692ae8c31caa5a404142c9f46e03fdc8dc5b233f.tar.zst PeerTube-692ae8c31caa5a404142c9f46e03fdc8dc5b233f.zip |
Hotfix/filter subscription videos (#5665)
* Fix filters on subscription videos
* Add tests to common video filters
* Improve reliability when skipping subscrition path
* Better parameters for skipping subscription videos
Diffstat (limited to 'server/tests/feeds/feeds.ts')
-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 7345f728a..ecd1badc1 100644 --- a/server/tests/feeds/feeds.ts +++ b/server/tests/feeds/feeds.ts | |||
@@ -387,7 +387,7 @@ describe('Test syndication feeds', () => { | |||
387 | } | 387 | } |
388 | 388 | ||
389 | { | 389 | { |
390 | const body = await servers[0].subscriptions.listVideos({ token: feeduserAccessToken }) | 390 | const body = await servers[0].videos.listMySubscriptionVideos({ token: feeduserAccessToken }) |
391 | expect(body.total).to.equal(0) | 391 | expect(body.total).to.equal(0) |
392 | 392 | ||
393 | const query = { accountId: feeduserAccountId, token: feeduserFeedToken } | 393 | const query = { accountId: feeduserAccountId, token: feeduserFeedToken } |
@@ -408,7 +408,7 @@ describe('Test syndication feeds', () => { | |||
408 | }) | 408 | }) |
409 | 409 | ||
410 | it('Should list no videos for a user with videos but no subscriptions', async function () { | 410 | it('Should list no videos for a user with videos but no subscriptions', async function () { |
411 | const body = await servers[0].subscriptions.listVideos({ token: userAccessToken }) | 411 | const body = await servers[0].videos.listMySubscriptionVideos({ token: userAccessToken }) |
412 | expect(body.total).to.equal(0) | 412 | expect(body.total).to.equal(0) |
413 | 413 | ||
414 | const query = { accountId: userAccountId, token: userFeedToken } | 414 | const query = { accountId: userAccountId, token: userFeedToken } |
@@ -424,7 +424,7 @@ describe('Test syndication feeds', () => { | |||
424 | await waitJobs(servers) | 424 | await waitJobs(servers) |
425 | 425 | ||
426 | { | 426 | { |
427 | const body = await servers[0].subscriptions.listVideos({ token: userAccessToken }) | 427 | const body = await servers[0].videos.listMySubscriptionVideos({ token: userAccessToken }) |
428 | expect(body.total).to.equal(1) | 428 | expect(body.total).to.equal(1) |
429 | expect(body.data[0].name).to.equal('user video') | 429 | expect(body.data[0].name).to.equal('user video') |
430 | 430 | ||
@@ -442,7 +442,7 @@ describe('Test syndication feeds', () => { | |||
442 | await waitJobs(servers) | 442 | await waitJobs(servers) |
443 | 443 | ||
444 | { | 444 | { |
445 | const body = await servers[0].subscriptions.listVideos({ token: userAccessToken }) | 445 | const body = await servers[0].videos.listMySubscriptionVideos({ token: userAccessToken }) |
446 | expect(body.total).to.equal(2, 'there should be 2 videos part of the subscription') | 446 | expect(body.total).to.equal(2, 'there should be 2 videos part of the subscription') |
447 | 447 | ||
448 | const query = { accountId: userAccountId, token: userFeedToken } | 448 | const query = { accountId: userAccountId, token: userFeedToken } |