blob: 3dda3b4d7fe3704f25e6d521d101bedb1fc185f5 (
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
|
/* tslint:disable:no-unused-expression */
import 'mocha'
import * as chai from 'chai'
const expect = chai.expect
import {
getConfig,
flushTests,
runServer,
registerUser
} from '../utils'
describe('Test config', function () {
let server = null
before(async function () {
this.timeout(120000)
await flushTests()
server = await runServer(1)
})
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 () {
await registerUser(server.url, 'user1', 'super password')
await registerUser(server.url, 'user2', 'super password')
await registerUser(server.url, 'user3', 'super password')
const res = await getConfig(server.url)
const data = res.body
expect(data.signup.allowed).to.be.false
})
after(async function () {
process.kill(-server.app.pid)
// Keep the logs if the test failed
if (this['ok']) {
await flushTests()
}
})
})
|