aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-01-19 14:58:16 +0100
committerChocobozzz <me@florianbigard.com>2022-01-19 14:58:16 +0100
commitd511df28906f84c7d25ecb24e41515ed549ff276 (patch)
treebc9caa33fae684e9971068011dd10243c7d0fe60 /server/tests/api
parent419b520ca4434d17f3505013174e195c3a316716 (diff)
downloadPeerTube-d511df28906f84c7d25ecb24e41515ed549ff276.tar.gz
PeerTube-d511df28906f84c7d25ecb24e41515ed549ff276.tar.zst
PeerTube-d511df28906f84c7d25ecb24e41515ed549ff276.zip
Add ability to filter my imports by target URL
Diffstat (limited to 'server/tests/api')
-rw-r--r--server/tests/api/videos/video-imports.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/server/tests/api/videos/video-imports.ts b/server/tests/api/videos/video-imports.ts
index ba21ab17a..28da69e8e 100644
--- a/server/tests/api/videos/video-imports.ts
+++ b/server/tests/api/videos/video-imports.ts
@@ -219,6 +219,14 @@ describe('Test video imports', function () {
219 expect(videoImports[0].video.name).to.equal('你好 世界 720p.mp4') 219 expect(videoImports[0].video.name).to.equal('你好 世界 720p.mp4')
220 }) 220 })
221 221
222 it('Should filter my imports on target URL', async function () {
223 const { total, data: videoImports } = await servers[0].imports.getMyVideoImports({ targetUrl: FIXTURE_URLS.youtube })
224 expect(total).to.equal(1)
225 expect(videoImports).to.have.lengthOf(1)
226
227 expect(videoImports[0].targetUrl).to.equal(FIXTURE_URLS.youtube)
228 })
229
222 it('Should have the video listed on the two instances', async function () { 230 it('Should have the video listed on the two instances', async function () {
223 this.timeout(120_000) 231 this.timeout(120_000)
224 232
@@ -459,6 +467,10 @@ describe('Test video imports', function () {
459 const { data } = await server.imports.getMyVideoImports() 467 const { data } = await server.imports.getMyVideoImports()
460 expect(data).to.have.lengthOf(0) 468 expect(data).to.have.lengthOf(0)
461 }) 469 })
470
471 after(async function () {
472 await cleanupTests([ server ])
473 })
462 }) 474 })
463 475
464 describe('Auto update', function () { 476 describe('Auto update', function () {