95 lines
2.6 KiB
TypeScript
95 lines
2.6 KiB
TypeScript
/* tslint:disable:no-unused-expression */
|
|
|
|
import * as chai from 'chai'
|
|
import 'mocha'
|
|
import { askResetPassword, createUser, resetPassword, runServer, userLogin, wait } from '../../utils'
|
|
import { flushTests, killallServers, ServerInfo, setAccessTokensToServers } from '../../utils/index'
|
|
import { mockSmtpServer } from '../../utils/miscs/email'
|
|
|
|
const expect = chai.expect
|
|
|
|
describe('Test emails', function () {
|
|
let server: ServerInfo
|
|
let userId: number
|
|
let verificationString: string
|
|
const emails: object[] = []
|
|
const user = {
|
|
username: 'user_1',
|
|
password: 'super_password'
|
|
}
|
|
|
|
before(async function () {
|
|
this.timeout(30000)
|
|
|
|
await mockSmtpServer(emails)
|
|
|
|
await flushTests()
|
|
|
|
const overrideConfig = {
|
|
smtp: {
|
|
hostname: 'localhost'
|
|
}
|
|
}
|
|
server = await runServer(1, overrideConfig)
|
|
|
|
await wait(5000)
|
|
await setAccessTokensToServers([ server ])
|
|
|
|
const res = await createUser(server.url, server.accessToken, user.username, user.password)
|
|
userId = res.body.user.id
|
|
})
|
|
|
|
describe('When resetting user password', function () {
|
|
|
|
it('Should ask to reset the password', async function () {
|
|
this.timeout(10000)
|
|
|
|
await askResetPassword(server.url, 'user_1@example.com')
|
|
|
|
await wait(3000)
|
|
expect(emails).to.have.lengthOf(1)
|
|
|
|
const email = emails[0]
|
|
|
|
expect(email['from'][0]['address']).equal('test-admin@localhost')
|
|
expect(email['to'][0]['address']).equal('user_1@example.com')
|
|
expect(email['subject']).contains('password')
|
|
|
|
const verificationStringMatches = /verificationString=([a-z0-9]+)/.exec(email['text'])
|
|
expect(verificationStringMatches).not.to.be.null
|
|
|
|
verificationString = verificationStringMatches[1]
|
|
expect(verificationString).to.have.length.above(2)
|
|
|
|
const userIdMatches = /userId=([0-9]+)/.exec(email['text'])
|
|
expect(userIdMatches).not.to.be.null
|
|
|
|
userId = parseInt(userIdMatches[1], 10)
|
|
expect(verificationString).to.not.be.undefined
|
|
})
|
|
|
|
it('Should not reset the password with an invalid verification string', async function () {
|
|
await resetPassword(server.url, userId, verificationString + 'b', 'super_password2', 403)
|
|
})
|
|
|
|
it('Should reset the password', async function () {
|
|
await resetPassword(server.url, userId, verificationString, 'super_password2')
|
|
})
|
|
|
|
it('Should login with this new password', async function () {
|
|
user.password = 'super_password2'
|
|
|
|
await userLogin(server, user)
|
|
})
|
|
})
|
|
|
|
after(async function () {
|
|
killallServers([ server ])
|
|
|
|
// Keep the logs if the test failed
|
|
if (this['ok']) {
|
|
await flushTests()
|
|
}
|
|
})
|
|
})
|