aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/server/config.ts
blob: 271a57275f0ecb90636feeb3cca7501523c09e7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
/* tslint:disable:no-unused-expression */

import 'mocha'
import * as chai from 'chai'
import { About } from '../../../../shared/models/server/about.model'
import { CustomConfig } from '../../../../shared/models/server/custom-config.model'
import { deleteCustomConfig, getAbout, killallServers, reRunServer } from '../../utils'
const expect = chai.expect

import {
  getConfig,
  flushTests,
  runServer,
  registerUser, getCustomConfig, setAccessTokensToServers, updateCustomConfig
} from '../../utils/index'

describe('Test config', function () {
  let server = null

  before(async function () {
    this.timeout(30000)

    await flushTests()
    server = await runServer(1)
    await setAccessTokensToServers([ server ])
  })

  it('Should have a correct config on a server with registration enabled', async function () {
    const res = await getConfig(server.url)
    const data = res.body

    expect(data.signup.allowed).to.be.true
  })

  it('Should have a correct config on a server with registration enabled and a users limit', async function () {
    this.timeout(5000)

    await Promise.all([
      registerUser(server.url, 'user1', 'super password'),
      registerUser(server.url, 'user2', 'super password'),
      registerUser(server.url, 'user3', 'super password')
    ])

    const res = await getConfig(server.url)
    const data = res.body

    expect(data.signup.allowed).to.be.false
  })

  it('Should get the customized configuration', async function () {
    const res = await getCustomConfig(server.url, server.accessToken)
    const data = res.body as CustomConfig

    expect(data.instance.name).to.equal('PeerTube')
    expect(data.instance.description).to.equal('Welcome to this PeerTube instance!')
    expect(data.instance.terms).to.equal('No terms for now.')
    expect(data.instance.defaultClientRoute).to.equal('/videos/trending')
    expect(data.instance.customizations.css).to.be.empty
    expect(data.instance.customizations.javascript).to.be.empty
    expect(data.cache.previews.size).to.equal(1)
    expect(data.signup.enabled).to.be.true
    expect(data.signup.limit).to.equal(4)
    expect(data.admin.email).to.equal('admin1@example.com')
    expect(data.user.videoQuota).to.equal(5242880)
    expect(data.transcoding.enabled).to.be.false
    expect(data.transcoding.threads).to.equal(2)
    expect(data.transcoding.resolutions['240p']).to.be.true
    expect(data.transcoding.resolutions['360p']).to.be.true
    expect(data.transcoding.resolutions['480p']).to.be.true
    expect(data.transcoding.resolutions['720p']).to.be.true
    expect(data.transcoding.resolutions['1080p']).to.be.true
  })

  it('Should update the customized configuration', async function () {
    const newCustomConfig = {
      instance: {
        name: 'PeerTube updated',
        description: 'my super description',
        terms: 'my super terms',
        defaultClientRoute: '/videos/recently-added',
        customizations: {
          javascript: 'alert("coucou")',
          css: 'body { background-color: red; }'
        }
      },
      cache: {
        previews: {
          size: 2
        }
      },
      signup: {
        enabled: false,
        limit: 5
      },
      admin: {
        email: 'superadmin1@example.com'
      },
      user: {
        videoQuota: 5242881
      },
      transcoding: {
        enabled: true,
        threads: 1,
        resolutions: {
          '240p': false,
          '360p': true,
          '480p': true,
          '720p': false,
          '1080p': false
        }
      }
    }
    await updateCustomConfig(server.url, server.accessToken, newCustomConfig)

    const res = await getCustomConfig(server.url, server.accessToken)
    const data = res.body

    expect(data.instance.name).to.equal('PeerTube updated')
    expect(data.instance.description).to.equal('my super description')
    expect(data.instance.terms).to.equal('my super terms')
    expect(data.instance.defaultClientRoute).to.equal('/videos/recently-added')
    expect(data.instance.customizations.javascript).to.equal('alert("coucou")')
    expect(data.instance.customizations.css).to.equal('body { background-color: red; }')
    expect(data.cache.previews.size).to.equal(2)
    expect(data.signup.enabled).to.be.false
    expect(data.signup.limit).to.equal(5)
    expect(data.admin.email).to.equal('superadmin1@example.com')
    expect(data.user.videoQuota).to.equal(5242881)
    expect(data.transcoding.enabled).to.be.true
    expect(data.transcoding.threads).to.equal(1)
    expect(data.transcoding.resolutions['240p']).to.be.false
    expect(data.transcoding.resolutions['360p']).to.be.true
    expect(data.transcoding.resolutions['480p']).to.be.true
    expect(data.transcoding.resolutions['720p']).to.be.false
    expect(data.transcoding.resolutions['1080p']).to.be.false
  })

  it('Should have the configuration updated after a restart', async function () {
    this.timeout(10000)

    killallServers([ server ])

    await reRunServer(server)

    const res = await getCustomConfig(server.url, server.accessToken)
    const data = res.body

    expect(data.instance.name).to.equal('PeerTube updated')
    expect(data.instance.description).to.equal('my super description')
    expect(data.instance.terms).to.equal('my super terms')
    expect(data.instance.defaultClientRoute).to.equal('/videos/recently-added')
    expect(data.instance.customizations.javascript).to.equal('alert("coucou")')
    expect(data.instance.customizations.css).to.equal('body { background-color: red; }')
    expect(data.cache.previews.size).to.equal(2)
    expect(data.signup.enabled).to.be.false
    expect(data.signup.limit).to.equal(5)
    expect(data.admin.email).to.equal('superadmin1@example.com')
    expect(data.user.videoQuota).to.equal(5242881)
    expect(data.transcoding.enabled).to.be.true
    expect(data.transcoding.threads).to.equal(1)
    expect(data.transcoding.resolutions['240p']).to.be.false
    expect(data.transcoding.resolutions['360p']).to.be.true
    expect(data.transcoding.resolutions['480p']).to.be.true
    expect(data.transcoding.resolutions['720p']).to.be.false
    expect(data.transcoding.resolutions['1080p']).to.be.false
  })

  it('Should fetch the about information', async function () {
    const res = await getAbout(server.url)
    const data: About = res.body

    expect(data.instance.name).to.equal('PeerTube updated')
    expect(data.instance.description).to.equal('my super description')
    expect(data.instance.terms).to.equal('my super terms')
  })

  it('Should remove the custom configuration', async function () {
    this.timeout(10000)

    await deleteCustomConfig(server.url, server.accessToken)

    const res = await getCustomConfig(server.url, server.accessToken)
    const data = res.body

    expect(data.instance.name).to.equal('PeerTube')
    expect(data.instance.description).to.equal('Welcome to this PeerTube instance!')
    expect(data.instance.terms).to.equal('No terms for now.')
    expect(data.instance.defaultClientRoute).to.equal('/videos/trending')
    expect(data.instance.customizations.css).to.be.empty
    expect(data.instance.customizations.javascript).to.be.empty
    expect(data.cache.previews.size).to.equal(1)
    expect(data.signup.enabled).to.be.true
    expect(data.signup.limit).to.equal(4)
    expect(data.admin.email).to.equal('admin1@example.com')
    expect(data.user.videoQuota).to.equal(5242880)
    expect(data.transcoding.enabled).to.be.false
    expect(data.transcoding.threads).to.equal(2)
    expect(data.transcoding.resolutions['240p']).to.be.true
    expect(data.transcoding.resolutions['360p']).to.be.true
    expect(data.transcoding.resolutions['480p']).to.be.true
    expect(data.transcoding.resolutions['720p']).to.be.true
    expect(data.transcoding.resolutions['1080p']).to.be.true
  })

  after(async function () {
    process.kill(-server.app.pid)

    // Keep the logs if the test failed
    if (this['ok']) {
      await flushTests()
    }
  })
})