Add test to search in my videos
authorChocobozzz <me@florianbigard.com>
Mon, 30 Dec 2019 13:31:39 +0000 (14:31 +0100)
committerChocobozzz <me@florianbigard.com>
Mon, 30 Dec 2019 13:31:39 +0000 (14:31 +0100)
server/tests/api/users/users.ts
shared/extra-utils/videos/videos.ts

index ca06942e73c0caa6ecd407f4bae8b7993e58bd53..07b7fc74709d904ec50e32d68182cabe4bd86e9f 100644 (file)
@@ -309,6 +309,24 @@ describe('Test users', function () {
       expect(video.thumbnailPath).to.not.be.null
       expect(video.previewPath).to.not.be.null
     })
+
+    it('Should be able to search in my videos', async function () {
+      {
+        const res = await getMyVideos(server.url, accessTokenUser, 0, 5, '-createdAt', 'user video')
+        expect(res.body.total).to.equal(1)
+
+        const videos = res.body.data
+        expect(videos).to.have.lengthOf(1)
+      }
+
+      {
+        const res = await getMyVideos(server.url, accessTokenUser, 0, 5, '-createdAt', 'toto')
+        expect(res.body.total).to.equal(0)
+
+        const videos = res.body.data
+        expect(videos).to.have.lengthOf(0)
+      }
+    })
   })
 
   describe('Users listing', function () {
index 1fcc949daadad98ba21a33f0f353c42dd6737b80..84b79b2530658d31154e3c53d414295be2ffb913 100644 (file)
@@ -161,13 +161,14 @@ function getLocalVideos (url: string) {
     .expect('Content-Type', /json/)
 }
 
-function getMyVideos (url: string, accessToken: string, start: number, count: number, sort?: string) {
+function getMyVideos (url: string, accessToken: string, start: number, count: number, sort?: string, search?: string) {
   const path = '/api/v1/users/me/videos'
 
   const req = request(url)
     .get(path)
     .query({ start: start })
     .query({ count: count })
+    .query({ search: search })
 
   if (sort) req.query({ sort })