diff options
author | Chocobozzz <me@florianbigard.com> | 2020-03-11 14:39:28 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-03-11 15:02:20 +0100 |
commit | 764a965778ac89e027fd05dd35697c6763e0dc18 (patch) | |
tree | ecc18834566b940c729a57b5bf0d088e894f03d3 /server/tests/api/videos | |
parent | fab6746354f9d9cb65c35d8bd9352c4b773b4c69 (diff) | |
download | PeerTube-764a965778ac89e027fd05dd35697c6763e0dc18.tar.gz PeerTube-764a965778ac89e027fd05dd35697c6763e0dc18.tar.zst PeerTube-764a965778ac89e027fd05dd35697c6763e0dc18.zip |
Implement pagination for overviews endpoint
Diffstat (limited to 'server/tests/api/videos')
-rw-r--r-- | server/tests/api/videos/video-nsfw.ts | 38 | ||||
-rw-r--r-- | server/tests/api/videos/videos-overview.ts | 85 |
2 files changed, 88 insertions, 35 deletions
diff --git a/server/tests/api/videos/video-nsfw.ts b/server/tests/api/videos/video-nsfw.ts index 7eba8d7d9..b16b484b9 100644 --- a/server/tests/api/videos/video-nsfw.ts +++ b/server/tests/api/videos/video-nsfw.ts | |||
@@ -19,12 +19,20 @@ import { | |||
19 | updateCustomConfig, | 19 | updateCustomConfig, |
20 | updateMyUser | 20 | updateMyUser |
21 | } from '../../../../shared/extra-utils' | 21 | } from '../../../../shared/extra-utils' |
22 | import { ServerConfig } from '../../../../shared/models' | 22 | import { ServerConfig, VideosOverview } from '../../../../shared/models' |
23 | import { CustomConfig } from '../../../../shared/models/server/custom-config.model' | 23 | import { CustomConfig } from '../../../../shared/models/server/custom-config.model' |
24 | import { User } from '../../../../shared/models/users' | 24 | import { User } from '../../../../shared/models/users' |
25 | import { getVideosOverview, getVideosOverviewWithToken } from '@shared/extra-utils/overviews/overviews' | ||
25 | 26 | ||
26 | const expect = chai.expect | 27 | const expect = chai.expect |
27 | 28 | ||
29 | function createOverviewRes (res: any) { | ||
30 | const overview = res.body as VideosOverview | ||
31 | |||
32 | const videos = overview.categories[0].videos | ||
33 | return { body: { data: videos, total: videos.length } } | ||
34 | } | ||
35 | |||
28 | describe('Test video NSFW policy', function () { | 36 | describe('Test video NSFW policy', function () { |
29 | let server: ServerInfo | 37 | let server: ServerInfo |
30 | let userAccessToken: string | 38 | let userAccessToken: string |
@@ -36,22 +44,38 @@ describe('Test video NSFW policy', function () { | |||
36 | const user: User = res.body | 44 | const user: User = res.body |
37 | const videoChannelName = user.videoChannels[0].name | 45 | const videoChannelName = user.videoChannels[0].name |
38 | const accountName = user.account.name + '@' + user.account.host | 46 | const accountName = user.account.name + '@' + user.account.host |
47 | const hasQuery = Object.keys(query).length !== 0 | ||
48 | let promises: Promise<any>[] | ||
39 | 49 | ||
40 | if (token) { | 50 | if (token) { |
41 | return Promise.all([ | 51 | promises = [ |
42 | getVideosListWithToken(server.url, token, query), | 52 | getVideosListWithToken(server.url, token, query), |
43 | searchVideoWithToken(server.url, 'n', token, query), | 53 | searchVideoWithToken(server.url, 'n', token, query), |
44 | getAccountVideos(server.url, token, accountName, 0, 5, undefined, query), | 54 | getAccountVideos(server.url, token, accountName, 0, 5, undefined, query), |
45 | getVideoChannelVideos(server.url, token, videoChannelName, 0, 5, undefined, query) | 55 | getVideoChannelVideos(server.url, token, videoChannelName, 0, 5, undefined, query) |
46 | ]) | 56 | ] |
57 | |||
58 | // Overviews do not support video filters | ||
59 | if (!hasQuery) { | ||
60 | promises.push(getVideosOverviewWithToken(server.url, 1, token).then(res => createOverviewRes(res))) | ||
61 | } | ||
62 | |||
63 | return Promise.all(promises) | ||
47 | } | 64 | } |
48 | 65 | ||
49 | return Promise.all([ | 66 | promises = [ |
50 | getVideosList(server.url), | 67 | getVideosList(server.url), |
51 | searchVideo(server.url, 'n'), | 68 | searchVideo(server.url, 'n'), |
52 | getAccountVideos(server.url, undefined, accountName, 0, 5), | 69 | getAccountVideos(server.url, undefined, accountName, 0, 5), |
53 | getVideoChannelVideos(server.url, undefined, videoChannelName, 0, 5) | 70 | getVideoChannelVideos(server.url, undefined, videoChannelName, 0, 5) |
54 | ]) | 71 | ] |
72 | |||
73 | // Overviews do not support video filters | ||
74 | if (!hasQuery) { | ||
75 | promises.push(getVideosOverview(server.url, 1).then(res => createOverviewRes(res))) | ||
76 | } | ||
77 | |||
78 | return Promise.all(promises) | ||
55 | }) | 79 | }) |
56 | } | 80 | } |
57 | 81 | ||
@@ -63,12 +87,12 @@ describe('Test video NSFW policy', function () { | |||
63 | await setAccessTokensToServers([ server ]) | 87 | await setAccessTokensToServers([ server ]) |
64 | 88 | ||
65 | { | 89 | { |
66 | const attributes = { name: 'nsfw', nsfw: true } | 90 | const attributes = { name: 'nsfw', nsfw: true, category: 1 } |
67 | await uploadVideo(server.url, server.accessToken, attributes) | 91 | await uploadVideo(server.url, server.accessToken, attributes) |
68 | } | 92 | } |
69 | 93 | ||
70 | { | 94 | { |
71 | const attributes = { name: 'normal', nsfw: false } | 95 | const attributes = { name: 'normal', nsfw: false, category: 1 } |
72 | await uploadVideo(server.url, server.accessToken, attributes) | 96 | await uploadVideo(server.url, server.accessToken, attributes) |
73 | } | 97 | } |
74 | 98 | ||
diff --git a/server/tests/api/videos/videos-overview.ts b/server/tests/api/videos/videos-overview.ts index ca08ab5b1..d38bcb6eb 100644 --- a/server/tests/api/videos/videos-overview.ts +++ b/server/tests/api/videos/videos-overview.ts | |||
@@ -2,7 +2,7 @@ | |||
2 | 2 | ||
3 | import * as chai from 'chai' | 3 | import * as chai from 'chai' |
4 | import 'mocha' | 4 | import 'mocha' |
5 | import { cleanupTests, flushAndRunServer, ServerInfo, setAccessTokensToServers, uploadVideo } from '../../../../shared/extra-utils' | 5 | import { cleanupTests, flushAndRunServer, ServerInfo, setAccessTokensToServers, uploadVideo, wait } from '../../../../shared/extra-utils' |
6 | import { getVideosOverview } from '../../../../shared/extra-utils/overviews/overviews' | 6 | import { getVideosOverview } from '../../../../shared/extra-utils/overviews/overviews' |
7 | import { VideosOverview } from '../../../../shared/models/overviews' | 7 | import { VideosOverview } from '../../../../shared/models/overviews' |
8 | 8 | ||
@@ -20,7 +20,7 @@ describe('Test a videos overview', function () { | |||
20 | }) | 20 | }) |
21 | 21 | ||
22 | it('Should send empty overview', async function () { | 22 | it('Should send empty overview', async function () { |
23 | const res = await getVideosOverview(server.url) | 23 | const res = await getVideosOverview(server.url, 1) |
24 | 24 | ||
25 | const overview: VideosOverview = res.body | 25 | const overview: VideosOverview = res.body |
26 | expect(overview.tags).to.have.lengthOf(0) | 26 | expect(overview.tags).to.have.lengthOf(0) |
@@ -31,15 +31,15 @@ describe('Test a videos overview', function () { | |||
31 | it('Should upload 5 videos in a specific category, tag and channel but not include them in overview', async function () { | 31 | it('Should upload 5 videos in a specific category, tag and channel but not include them in overview', async function () { |
32 | this.timeout(15000) | 32 | this.timeout(15000) |
33 | 33 | ||
34 | for (let i = 0; i < 5; i++) { | 34 | await wait(3000) |
35 | await uploadVideo(server.url, server.accessToken, { | 35 | |
36 | name: 'video ' + i, | 36 | await uploadVideo(server.url, server.accessToken, { |
37 | category: 3, | 37 | name: 'video 0', |
38 | tags: [ 'coucou1', 'coucou2' ] | 38 | category: 3, |
39 | }) | 39 | tags: [ 'coucou1', 'coucou2' ] |
40 | } | 40 | }) |
41 | 41 | ||
42 | const res = await getVideosOverview(server.url) | 42 | const res = await getVideosOverview(server.url, 1) |
43 | 43 | ||
44 | const overview: VideosOverview = res.body | 44 | const overview: VideosOverview = res.body |
45 | expect(overview.tags).to.have.lengthOf(0) | 45 | expect(overview.tags).to.have.lengthOf(0) |
@@ -48,27 +48,55 @@ describe('Test a videos overview', function () { | |||
48 | }) | 48 | }) |
49 | 49 | ||
50 | it('Should upload another video and include all videos in the overview', async function () { | 50 | it('Should upload another video and include all videos in the overview', async function () { |
51 | await uploadVideo(server.url, server.accessToken, { | 51 | this.timeout(15000) |
52 | name: 'video 5', | ||
53 | category: 3, | ||
54 | tags: [ 'coucou1', 'coucou2' ] | ||
55 | }) | ||
56 | 52 | ||
57 | const res = await getVideosOverview(server.url) | 53 | for (let i = 1; i < 6; i++) { |
54 | await uploadVideo(server.url, server.accessToken, { | ||
55 | name: 'video ' + i, | ||
56 | category: 3, | ||
57 | tags: [ 'coucou1', 'coucou2' ] | ||
58 | }) | ||
59 | } | ||
58 | 60 | ||
59 | const overview: VideosOverview = res.body | 61 | await wait(3000) |
60 | expect(overview.tags).to.have.lengthOf(2) | 62 | |
61 | expect(overview.categories).to.have.lengthOf(1) | 63 | { |
62 | expect(overview.channels).to.have.lengthOf(1) | 64 | const res = await getVideosOverview(server.url, 1) |
65 | |||
66 | const overview: VideosOverview = res.body | ||
67 | expect(overview.tags).to.have.lengthOf(1) | ||
68 | expect(overview.categories).to.have.lengthOf(1) | ||
69 | expect(overview.channels).to.have.lengthOf(1) | ||
70 | } | ||
71 | |||
72 | { | ||
73 | const res = await getVideosOverview(server.url, 2) | ||
74 | |||
75 | const overview: VideosOverview = res.body | ||
76 | expect(overview.tags).to.have.lengthOf(1) | ||
77 | expect(overview.categories).to.have.lengthOf(0) | ||
78 | expect(overview.channels).to.have.lengthOf(0) | ||
79 | } | ||
63 | }) | 80 | }) |
64 | 81 | ||
65 | it('Should have the correct overview', async function () { | 82 | it('Should have the correct overview', async function () { |
66 | const res = await getVideosOverview(server.url) | 83 | const res1 = await getVideosOverview(server.url, 1) |
84 | const res2 = await getVideosOverview(server.url, 2) | ||
67 | 85 | ||
68 | const overview: VideosOverview = res.body | 86 | const overview1: VideosOverview = res1.body |
87 | const overview2: VideosOverview = res2.body | ||
88 | |||
89 | const tmp = [ | ||
90 | overview1.tags, | ||
91 | overview1.categories, | ||
92 | overview1.channels, | ||
93 | overview2.tags | ||
94 | ] | ||
95 | |||
96 | for (const arr of tmp) { | ||
97 | expect(arr).to.have.lengthOf(1) | ||
69 | 98 | ||
70 | for (const attr of [ 'tags', 'categories', 'channels' ]) { | 99 | const obj = arr[0] |
71 | const obj = overview[attr][0] | ||
72 | 100 | ||
73 | expect(obj.videos).to.have.lengthOf(6) | 101 | expect(obj.videos).to.have.lengthOf(6) |
74 | expect(obj.videos[0].name).to.equal('video 5') | 102 | expect(obj.videos[0].name).to.equal('video 5') |
@@ -79,12 +107,13 @@ describe('Test a videos overview', function () { | |||
79 | expect(obj.videos[5].name).to.equal('video 0') | 107 | expect(obj.videos[5].name).to.equal('video 0') |
80 | } | 108 | } |
81 | 109 | ||
82 | expect(overview.tags.find(t => t.tag === 'coucou1')).to.not.be.undefined | 110 | const tags = [ overview1.tags[0].tag, overview2.tags[0].tag ] |
83 | expect(overview.tags.find(t => t.tag === 'coucou2')).to.not.be.undefined | 111 | expect(tags.find(t => t === 'coucou1')).to.not.be.undefined |
112 | expect(tags.find(t => t === 'coucou2')).to.not.be.undefined | ||
84 | 113 | ||
85 | expect(overview.categories[0].category.id).to.equal(3) | 114 | expect(overview1.categories[0].category.id).to.equal(3) |
86 | 115 | ||
87 | expect(overview.channels[0].channel.name).to.equal('root_channel') | 116 | expect(overview1.channels[0].channel.name).to.equal('root_channel') |
88 | }) | 117 | }) |
89 | 118 | ||
90 | after(async function () { | 119 | after(async function () { |