aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/cli/reset-password.ts
blob: c75a1611c292f69386c1ff922ca3eddbaa986f36 (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
import 'mocha'

import {
  createUser,
  execCLI,
  flushTests,
  getEnvCli,
  killallServers,
  login,
  runServer,
  ServerInfo,
  setAccessTokensToServers
} from '../utils'

describe('Test reset password scripts', function () {
  let server: ServerInfo

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

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

    await createUser(server.url, server.accessToken, 'user_1', 'super password')
  })

  it('Should change the user password from CLI', async function () {
    this.timeout(30000)

    const env = getEnvCli(server)
    await execCLI(`echo coucou | ${env} npm run reset-password -- -u user_1`)

    await login(server.url, server.client, { username: 'user_1', password: 'coucou' }, 200)
  })

  after(async function () {
    killallServers([ server ])

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