]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/api/check-params/search.ts
Merge branch 'release/4.0.0' into develop
[github/Chocobozzz/PeerTube.git] / server / tests / api / check-params / search.ts
CommitLineData
a1587156 1/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
d525fc39
C
2
3import 'mocha'
3b0bd70a 4import {
65e6e260
C
5 checkBadCountPagination,
6 checkBadSortPagination,
7 checkBadStartPagination,
3b0bd70a 8 cleanupTests,
254d3579 9 createSingleServer,
3b0bd70a 10 makeGetRequest,
254d3579 11 PeerTubeServer,
3b0bd70a 12 setAccessTokensToServers
65e6e260 13} from '@shared/extra-utils'
4c7e60bc 14import { HttpStatusCode } from '@shared/models'
d525fc39 15
254d3579 16function updateSearchIndex (server: PeerTubeServer, enabled: boolean, disableLocalSearch = false) {
89d241a7 17 return server.config.updateCustomSubConfig({
65e6e260
C
18 newConfig: {
19 search: {
20 searchIndex: {
21 enabled,
22 disableLocalSearch
23 }
3b0bd70a
C
24 }
25 }
26 })
27}
28
d525fc39 29describe('Test videos API validator', function () {
254d3579 30 let server: PeerTubeServer
d525fc39
C
31
32 // ---------------------------------------------------------------
33
34 before(async function () {
35 this.timeout(30000)
36
254d3579 37 server = await createSingleServer(1)
3b0bd70a 38 await setAccessTokensToServers([ server ])
d525fc39
C
39 })
40
41 describe('When searching videos', function () {
f5b0af50
C
42 const path = '/api/v1/search/videos/'
43
d525fc39
C
44 const query = {
45 search: 'coucou'
46 }
47
48 it('Should fail with a bad start pagination', async function () {
49 await checkBadStartPagination(server.url, path, null, query)
50 })
51
52 it('Should fail with a bad count pagination', async function () {
53 await checkBadCountPagination(server.url, path, null, query)
54 })
55
56 it('Should fail with an incorrect sort', async function () {
57 await checkBadSortPagination(server.url, path, null, query)
58 })
59
164c8d46 60 it('Should succeed with the correct parameters', async function () {
c0e8b12e 61 await makeGetRequest({ url: server.url, path, query, expectedStatus: HttpStatusCode.OK_200 })
d525fc39
C
62 })
63
64 it('Should fail with an invalid category', async function () {
6c5065a0 65 const customQuery1 = { ...query, categoryOneOf: [ 'aa', 'b' ] }
c0e8b12e 66 await makeGetRequest({ url: server.url, path, query: customQuery1, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
d525fc39 67
6c5065a0 68 const customQuery2 = { ...query, categoryOneOf: 'a' }
c0e8b12e 69 await makeGetRequest({ url: server.url, path, query: customQuery2, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
d525fc39
C
70 })
71
72 it('Should succeed with a valid category', async function () {
6c5065a0 73 const customQuery1 = { ...query, categoryOneOf: [ 1, 7 ] }
c0e8b12e 74 await makeGetRequest({ url: server.url, path, query: customQuery1, expectedStatus: HttpStatusCode.OK_200 })
d525fc39 75
6c5065a0 76 const customQuery2 = { ...query, categoryOneOf: 1 }
c0e8b12e 77 await makeGetRequest({ url: server.url, path, query: customQuery2, expectedStatus: HttpStatusCode.OK_200 })
d525fc39
C
78 })
79
80 it('Should fail with an invalid licence', async function () {
6c5065a0 81 const customQuery1 = { ...query, licenceOneOf: [ 'aa', 'b' ] }
c0e8b12e 82 await makeGetRequest({ url: server.url, path, query: customQuery1, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
d525fc39 83
6c5065a0 84 const customQuery2 = { ...query, licenceOneOf: 'a' }
c0e8b12e 85 await makeGetRequest({ url: server.url, path, query: customQuery2, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
d525fc39
C
86 })
87
88 it('Should succeed with a valid licence', async function () {
6c5065a0 89 const customQuery1 = { ...query, licenceOneOf: [ 1, 2 ] }
c0e8b12e 90 await makeGetRequest({ url: server.url, path, query: customQuery1, expectedStatus: HttpStatusCode.OK_200 })
d525fc39 91
6c5065a0 92 const customQuery2 = { ...query, licenceOneOf: 1 }
c0e8b12e 93 await makeGetRequest({ url: server.url, path, query: customQuery2, expectedStatus: HttpStatusCode.OK_200 })
d525fc39
C
94 })
95
96 it('Should succeed with a valid language', async function () {
6c5065a0 97 const customQuery1 = { ...query, languageOneOf: [ 'fr', 'en' ] }
c0e8b12e 98 await makeGetRequest({ url: server.url, path, query: customQuery1, expectedStatus: HttpStatusCode.OK_200 })
d525fc39 99
6c5065a0 100 const customQuery2 = { ...query, languageOneOf: 'fr' }
c0e8b12e 101 await makeGetRequest({ url: server.url, path, query: customQuery2, expectedStatus: HttpStatusCode.OK_200 })
d525fc39
C
102 })
103
104 it('Should succeed with valid tags', async function () {
6c5065a0 105 const customQuery1 = { ...query, tagsOneOf: [ 'tag1', 'tag2' ] }
c0e8b12e 106 await makeGetRequest({ url: server.url, path, query: customQuery1, expectedStatus: HttpStatusCode.OK_200 })
d525fc39 107
6c5065a0 108 const customQuery2 = { ...query, tagsOneOf: 'tag1' }
c0e8b12e 109 await makeGetRequest({ url: server.url, path, query: customQuery2, expectedStatus: HttpStatusCode.OK_200 })
d525fc39 110
6c5065a0 111 const customQuery3 = { ...query, tagsAllOf: [ 'tag1', 'tag2' ] }
c0e8b12e 112 await makeGetRequest({ url: server.url, path, query: customQuery3, expectedStatus: HttpStatusCode.OK_200 })
d525fc39 113
6c5065a0 114 const customQuery4 = { ...query, tagsAllOf: 'tag1' }
c0e8b12e 115 await makeGetRequest({ url: server.url, path, query: customQuery4, expectedStatus: HttpStatusCode.OK_200 })
d525fc39
C
116 })
117
118 it('Should fail with invalid durations', async function () {
6c5065a0 119 const customQuery1 = { ...query, durationMin: 'hello' }
c0e8b12e 120 await makeGetRequest({ url: server.url, path, query: customQuery1, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
d525fc39 121
6c5065a0 122 const customQuery2 = { ...query, durationMax: 'hello' }
c0e8b12e 123 await makeGetRequest({ url: server.url, path, query: customQuery2, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
d525fc39
C
124 })
125
126 it('Should fail with invalid dates', async function () {
6c5065a0 127 const customQuery1 = { ...query, startDate: 'hello' }
c0e8b12e 128 await makeGetRequest({ url: server.url, path, query: customQuery1, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
d525fc39 129
6c5065a0 130 const customQuery2 = { ...query, endDate: 'hello' }
c0e8b12e 131 await makeGetRequest({ url: server.url, path, query: customQuery2, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
31d065cc 132
6c5065a0 133 const customQuery3 = { ...query, originallyPublishedStartDate: 'hello' }
c0e8b12e 134 await makeGetRequest({ url: server.url, path, query: customQuery3, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
31d065cc 135
6c5065a0 136 const customQuery4 = { ...query, originallyPublishedEndDate: 'hello' }
c0e8b12e 137 await makeGetRequest({ url: server.url, path, query: customQuery4, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
d525fc39 138 })
164c8d46
C
139
140 it('Should fail with an invalid host', async function () {
141 const customQuery = { ...query, host: '6565' }
142 await makeGetRequest({ url: server.url, path, query: customQuery, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
143 })
144
145 it('Should succeed with a host', async function () {
146 const customQuery = { ...query, host: 'example.com' }
147 await makeGetRequest({ url: server.url, path, query: customQuery, expectedStatus: HttpStatusCode.OK_200 })
148 })
fbd67e7f
C
149
150 it('Should fail with invalid uuids', async function () {
151 const customQuery = { ...query, uuids: [ '6565', 'dfd70b83-639f-4980-94af-304a56ab4b35' ] }
152 await makeGetRequest({ url: server.url, path, query: customQuery, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
153 })
154
155 it('Should succeed with valid uuids', async function () {
156 const customQuery = { ...query, uuids: [ 'dfd70b83-639f-4980-94af-304a56ab4b35' ] }
157 await makeGetRequest({ url: server.url, path, query: customQuery, expectedStatus: HttpStatusCode.OK_200 })
158 })
d525fc39
C
159 })
160
37a44fc9
C
161 describe('When searching video playlists', function () {
162 const path = '/api/v1/search/video-playlists/'
163
164 const query = {
164c8d46
C
165 search: 'coucou',
166 host: 'example.com'
37a44fc9
C
167 }
168
169 it('Should fail with a bad start pagination', async function () {
170 await checkBadStartPagination(server.url, path, null, query)
171 })
172
173 it('Should fail with a bad count pagination', async function () {
174 await checkBadCountPagination(server.url, path, null, query)
175 })
176
177 it('Should fail with an incorrect sort', async function () {
178 await checkBadSortPagination(server.url, path, null, query)
179 })
180
164c8d46
C
181 it('Should fail with an invalid host', async function () {
182 await makeGetRequest({ url: server.url, path, query: { ...query, host: '6565' }, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
183 })
184
fbd67e7f
C
185 it('Should fail with invalid uuids', async function () {
186 const customQuery = { ...query, uuids: [ '6565', 'dfd70b83-639f-4980-94af-304a56ab4b35' ] }
187 await makeGetRequest({ url: server.url, path, query: customQuery, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
188 })
189
164c8d46 190 it('Should succeed with the correct parameters', async function () {
c0e8b12e 191 await makeGetRequest({ url: server.url, path, query, expectedStatus: HttpStatusCode.OK_200 })
37a44fc9
C
192 })
193 })
194
f5b0af50
C
195 describe('When searching video channels', function () {
196 const path = '/api/v1/search/video-channels/'
197
198 const query = {
164c8d46
C
199 search: 'coucou',
200 host: 'example.com'
f5b0af50
C
201 }
202
203 it('Should fail with a bad start pagination', async function () {
204 await checkBadStartPagination(server.url, path, null, query)
205 })
206
207 it('Should fail with a bad count pagination', async function () {
208 await checkBadCountPagination(server.url, path, null, query)
209 })
210
211 it('Should fail with an incorrect sort', async function () {
212 await checkBadSortPagination(server.url, path, null, query)
213 })
214
164c8d46
C
215 it('Should fail with an invalid host', async function () {
216 await makeGetRequest({ url: server.url, path, query: { ...query, host: '6565' }, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
217 })
218
b033851f
C
219 it('Should fail with invalid handles', async function () {
220 await makeGetRequest({ url: server.url, path, query: { ...query, handles: [ '' ] }, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
221 })
222
164c8d46 223 it('Should succeed with the correct parameters', async function () {
c0e8b12e 224 await makeGetRequest({ url: server.url, path, query, expectedStatus: HttpStatusCode.OK_200 })
f5b0af50
C
225 })
226 })
227
3b0bd70a
C
228 describe('Search target', function () {
229
230 it('Should fail/succeed depending on the search target', async function () {
231 this.timeout(10000)
232
233 const query = { search: 'coucou' }
234 const paths = [
37a44fc9 235 '/api/v1/search/video-playlists/',
3b0bd70a
C
236 '/api/v1/search/video-channels/',
237 '/api/v1/search/videos/'
238 ]
239
240 for (const path of paths) {
241 {
6c5065a0 242 const customQuery = { ...query, searchTarget: 'hello' }
c0e8b12e 243 await makeGetRequest({ url: server.url, path, query: customQuery, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
3b0bd70a
C
244 }
245
246 {
6c5065a0 247 const customQuery = { ...query, searchTarget: undefined }
c0e8b12e 248 await makeGetRequest({ url: server.url, path, query: customQuery, expectedStatus: HttpStatusCode.OK_200 })
3b0bd70a
C
249 }
250
251 {
6c5065a0 252 const customQuery = { ...query, searchTarget: 'local' }
c0e8b12e 253 await makeGetRequest({ url: server.url, path, query: customQuery, expectedStatus: HttpStatusCode.OK_200 })
3b0bd70a
C
254 }
255
256 {
6c5065a0 257 const customQuery = { ...query, searchTarget: 'search-index' }
c0e8b12e 258 await makeGetRequest({ url: server.url, path, query: customQuery, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
3b0bd70a
C
259 }
260
261 await updateSearchIndex(server, true, true)
262
263 {
6c5065a0 264 const customQuery = { ...query, searchTarget: 'local' }
c0e8b12e 265 await makeGetRequest({ url: server.url, path, query: customQuery, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
3b0bd70a
C
266 }
267
268 {
6c5065a0 269 const customQuery = { ...query, searchTarget: 'search-index' }
c0e8b12e 270 await makeGetRequest({ url: server.url, path, query: customQuery, expectedStatus: HttpStatusCode.OK_200 })
3b0bd70a
C
271 }
272
273 await updateSearchIndex(server, true, false)
274
275 {
6c5065a0 276 const customQuery = { ...query, searchTarget: 'local' }
c0e8b12e 277 await makeGetRequest({ url: server.url, path, query: customQuery, expectedStatus: HttpStatusCode.OK_200 })
3b0bd70a
C
278 }
279
280 await updateSearchIndex(server, false, false)
281 }
282 })
283 })
284
7c3b7976
C
285 after(async function () {
286 await cleanupTests([ server ])
d525fc39
C
287 })
288})