aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/users/user-subscriptions.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/tests/api/users/user-subscriptions.ts')
-rw-r--r--server/tests/api/users/user-subscriptions.ts32
1 files changed, 30 insertions, 2 deletions
diff --git a/server/tests/api/users/user-subscriptions.ts b/server/tests/api/users/user-subscriptions.ts
index 7d6b0c6a9..60676a37b 100644
--- a/server/tests/api/users/user-subscriptions.ts
+++ b/server/tests/api/users/user-subscriptions.ts
@@ -96,14 +96,14 @@ describe('Test users subscriptions', function () {
96 96
97 it('Should list subscriptions', async function () { 97 it('Should list subscriptions', async function () {
98 { 98 {
99 const res = await listUserSubscriptions(servers[0].url, servers[0].accessToken) 99 const res = await listUserSubscriptions({ url: servers[0].url, token: servers[0].accessToken })
100 expect(res.body.total).to.equal(0) 100 expect(res.body.total).to.equal(0)
101 expect(res.body.data).to.be.an('array') 101 expect(res.body.data).to.be.an('array')
102 expect(res.body.data).to.have.lengthOf(0) 102 expect(res.body.data).to.have.lengthOf(0)
103 } 103 }
104 104
105 { 105 {
106 const res = await listUserSubscriptions(servers[0].url, users[0].accessToken, 'createdAt') 106 const res = await listUserSubscriptions({ url: servers[0].url, token: users[0].accessToken, sort: 'createdAt' })
107 expect(res.body.total).to.equal(2) 107 expect(res.body.total).to.equal(2)
108 108
109 const subscriptions: VideoChannel[] = res.body.data 109 const subscriptions: VideoChannel[] = res.body.data
@@ -156,6 +156,34 @@ describe('Test users subscriptions', function () {
156 expect(body['user3_channel@localhost:' + servers[0].port]).to.be.false 156 expect(body['user3_channel@localhost:' + servers[0].port]).to.be.false
157 }) 157 })
158 158
159 it('Should search among subscriptions', async function () {
160 {
161 const res = await listUserSubscriptions({
162 url: servers[0].url,
163 token: users[0].accessToken,
164 sort: '-createdAt',
165 search: 'user3_channel'
166 })
167 expect(res.body.total).to.equal(1)
168
169 const subscriptions = res.body.data
170 expect(subscriptions).to.have.lengthOf(1)
171 }
172
173 {
174 const res = await listUserSubscriptions({
175 url: servers[0].url,
176 token: users[0].accessToken,
177 sort: '-createdAt',
178 search: 'toto'
179 })
180 expect(res.body.total).to.equal(0)
181
182 const subscriptions = res.body.data
183 expect(subscriptions).to.have.lengthOf(0)
184 }
185 })
186
159 it('Should list subscription videos', async function () { 187 it('Should list subscription videos', async function () {
160 { 188 {
161 const res = await listUserSubscriptionVideos(servers[0].url, servers[0].accessToken) 189 const res = await listUserSubscriptionVideos(servers[0].url, servers[0].accessToken)