aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests
diff options
context:
space:
mode:
Diffstat (limited to 'server/tests')
-rw-r--r--server/tests/api/server/config.ts16
-rw-r--r--server/tests/utils/server/config.ts22
2 files changed, 31 insertions, 7 deletions
diff --git a/server/tests/api/server/config.ts b/server/tests/api/server/config.ts
index f83e21e82..35a5c430b 100644
--- a/server/tests/api/server/config.ts
+++ b/server/tests/api/server/config.ts
@@ -2,7 +2,8 @@
2 2
3import 'mocha' 3import 'mocha'
4import * as chai from 'chai' 4import * as chai from 'chai'
5import { deleteCustomConfig, killallServers, reRunServer } from '../../utils' 5import { About } from '../../../../shared/models/config/about.model'
6import { deleteCustomConfig, getAbout, killallServers, reRunServer } from '../../utils'
6const expect = chai.expect 7const expect = chai.expect
7 8
8import { 9import {
@@ -108,6 +109,7 @@ describe('Test config', function () {
108 expect(data.instance.name).to.equal('PeerTube updated') 109 expect(data.instance.name).to.equal('PeerTube updated')
109 expect(data.instance.description).to.equal('my super description') 110 expect(data.instance.description).to.equal('my super description')
110 expect(data.instance.terms).to.equal('my super terms') 111 expect(data.instance.terms).to.equal('my super terms')
112 expect(data.cache.previews.size).to.equal(2)
111 expect(data.signup.enabled).to.be.false 113 expect(data.signup.enabled).to.be.false
112 expect(data.signup.limit).to.equal(5) 114 expect(data.signup.limit).to.equal(5)
113 expect(data.admin.email).to.equal('superadmin1@example.com') 115 expect(data.admin.email).to.equal('superadmin1@example.com')
@@ -131,6 +133,9 @@ describe('Test config', function () {
131 const res = await getCustomConfig(server.url, server.accessToken) 133 const res = await getCustomConfig(server.url, server.accessToken)
132 const data = res.body 134 const data = res.body
133 135
136 expect(data.instance.name).to.equal('PeerTube updated')
137 expect(data.instance.description).to.equal('my super description')
138 expect(data.instance.terms).to.equal('my super terms')
134 expect(data.cache.previews.size).to.equal(2) 139 expect(data.cache.previews.size).to.equal(2)
135 expect(data.signup.enabled).to.be.false 140 expect(data.signup.enabled).to.be.false
136 expect(data.signup.limit).to.equal(5) 141 expect(data.signup.limit).to.equal(5)
@@ -145,6 +150,15 @@ describe('Test config', function () {
145 expect(data.transcoding.resolutions['1080p']).to.be.false 150 expect(data.transcoding.resolutions['1080p']).to.be.false
146 }) 151 })
147 152
153 it('Should fetch the about information', async function () {
154 const res = await getAbout(server.url)
155 const data: About = res.body
156
157 expect(data.instance.name).to.equal('PeerTube updated')
158 expect(data.instance.description).to.equal('my super description')
159 expect(data.instance.terms).to.equal('my super terms')
160 })
161
148 it('Should remove the custom configuration', async function () { 162 it('Should remove the custom configuration', async function () {
149 this.timeout(10000) 163 this.timeout(10000)
150 164
diff --git a/server/tests/utils/server/config.ts b/server/tests/utils/server/config.ts
index b6905757a..e5411117a 100644
--- a/server/tests/utils/server/config.ts
+++ b/server/tests/utils/server/config.ts
@@ -1,15 +1,24 @@
1import * as request from 'supertest'
2import { makeDeleteRequest, makeGetRequest, makePutBodyRequest } from '../' 1import { makeDeleteRequest, makeGetRequest, makePutBodyRequest } from '../'
3import { CustomConfig } from '../../../../shared/models/config/custom-config.model' 2import { CustomConfig } from '../../../../shared/models/config/custom-config.model'
4 3
5function getConfig (url: string) { 4function getConfig (url: string) {
6 const path = '/api/v1/config' 5 const path = '/api/v1/config'
7 6
8 return request(url) 7 return makeGetRequest({
9 .get(path) 8 url,
10 .set('Accept', 'application/json') 9 path,
11 .expect(200) 10 statusCodeExpected: 200
12 .expect('Content-Type', /json/) 11 })
12}
13
14function getAbout (url: string) {
15 const path = '/api/v1/config/about'
16
17 return makeGetRequest({
18 url,
19 path,
20 statusCodeExpected: 200
21 })
13} 22}
14 23
15function getCustomConfig (url: string, token: string, statusCodeExpected = 200) { 24function getCustomConfig (url: string, token: string, statusCodeExpected = 200) {
@@ -52,5 +61,6 @@ export {
52 getConfig, 61 getConfig,
53 getCustomConfig, 62 getCustomConfig,
54 updateCustomConfig, 63 updateCustomConfig,
64 getAbout,
55 deleteCustomConfig 65 deleteCustomConfig
56} 66}