mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-03 00:01:39 +00:00
fe4c48b7fb
[misc] run core tests in SAAS/Server CE/Server Pro environment GitOrigin-RevId: 6278ae1eb760a4c0c16da1b71efdde844764a526
186 lines
6.2 KiB
JavaScript
186 lines
6.2 KiB
JavaScript
const AuthenticationManager = require('../../../app/src/Features/Authentication/AuthenticationManager')
|
|
const UserHelper = require('./helpers/UserHelper')
|
|
const Features = require('../../../app/src/infrastructure/Features')
|
|
const { expect } = require('chai')
|
|
|
|
describe('UserHelper', function () {
|
|
// Disable all tests unless the registration feature is enabled
|
|
beforeEach(function () {
|
|
if (!Features.hasFeature('registration')) {
|
|
this.skip()
|
|
}
|
|
})
|
|
|
|
describe('UserHelper.createUser', function () {
|
|
describe('with no args', function () {
|
|
it('should create new user with default username and password', async function () {
|
|
const userHelper = await UserHelper.createUser()
|
|
userHelper.user.email.should.equal(userHelper.getDefaultEmail())
|
|
const authedUser = await AuthenticationManager.promises.authenticate(
|
|
{ _id: userHelper.user._id },
|
|
userHelper.getDefaultPassword()
|
|
)
|
|
expect(authedUser).to.not.be.null
|
|
})
|
|
})
|
|
|
|
describe('with email', function () {
|
|
it('should create new user with provided email and default password', async function () {
|
|
const userHelper = await UserHelper.createUser({
|
|
email: 'foo@test.com',
|
|
})
|
|
userHelper.user.email.should.equal('foo@test.com')
|
|
const authedUser = await AuthenticationManager.promises.authenticate(
|
|
{ _id: userHelper.user._id },
|
|
userHelper.getDefaultPassword()
|
|
)
|
|
expect(authedUser).to.not.be.null
|
|
})
|
|
})
|
|
|
|
describe('with password', function () {
|
|
it('should create new user with provided password and default email', async function () {
|
|
const userHelper = await UserHelper.createUser({
|
|
password: 'foofoofoo',
|
|
})
|
|
userHelper.user.email.should.equal(userHelper.getDefaultEmail())
|
|
const authedUser = await AuthenticationManager.promises.authenticate(
|
|
{ _id: userHelper.user._id },
|
|
'foofoofoo'
|
|
)
|
|
expect(authedUser).to.not.be.null
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('UserHelper.getUser', function () {
|
|
let user
|
|
|
|
beforeEach(async function () {
|
|
user = (await UserHelper.createUser()).user
|
|
})
|
|
|
|
describe('with string id', function () {
|
|
it('should fetch user', async function () {
|
|
const userHelper = await UserHelper.getUser(user._id.toString())
|
|
userHelper.user.email.should.equal(user.email)
|
|
})
|
|
})
|
|
|
|
describe('with _id', function () {
|
|
it('should fetch user', async function () {
|
|
const userHelper = await UserHelper.getUser({ _id: user._id })
|
|
userHelper.user.email.should.equal(user.email)
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('UserHelper.loginUser', function () {
|
|
let userHelper
|
|
|
|
beforeEach(async function () {
|
|
userHelper = await UserHelper.createUser()
|
|
})
|
|
|
|
describe('with email and password', function () {
|
|
it('should login user', async function () {
|
|
const newUserHelper = await UserHelper.loginUser({
|
|
email: userHelper.getDefaultEmail(),
|
|
password: userHelper.getDefaultPassword(),
|
|
})
|
|
newUserHelper.user.email.should.equal(userHelper.user.email)
|
|
})
|
|
})
|
|
|
|
describe('without email', function () {
|
|
it('should throw error', async function () {
|
|
await UserHelper.loginUser({
|
|
password: userHelper.getDefaultPassword(),
|
|
}).should.be.rejectedWith('email and password required')
|
|
})
|
|
})
|
|
|
|
describe('without password', function () {
|
|
it('should throw error', async function () {
|
|
await UserHelper.loginUser({
|
|
email: userHelper.getDefaultEmail(),
|
|
}).should.be.rejectedWith('email and password required')
|
|
})
|
|
})
|
|
|
|
describe('without email and password', function () {
|
|
it('should throw error', async function () {
|
|
await UserHelper.loginUser().should.be.rejectedWith(
|
|
'email and password required'
|
|
)
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('UserHelper.registerUser', function () {
|
|
describe('with no args', function () {
|
|
it('should create new user with default username and password', async function () {
|
|
const userHelper = await UserHelper.registerUser()
|
|
userHelper.user.email.should.equal(userHelper.getDefaultEmail())
|
|
const authedUser = await AuthenticationManager.promises.authenticate(
|
|
{ _id: userHelper.user._id },
|
|
userHelper.getDefaultPassword()
|
|
)
|
|
expect(authedUser).to.not.be.null
|
|
})
|
|
})
|
|
|
|
describe('with email', function () {
|
|
it('should create new user with provided email and default password', async function () {
|
|
const userHelper = await UserHelper.registerUser({
|
|
email: 'foo2@test.com',
|
|
})
|
|
userHelper.user.email.should.equal('foo2@test.com')
|
|
const authedUser = await AuthenticationManager.promises.authenticate(
|
|
{ _id: userHelper.user._id },
|
|
userHelper.getDefaultPassword()
|
|
)
|
|
expect(authedUser).to.not.be.null
|
|
})
|
|
})
|
|
|
|
describe('with password', function () {
|
|
it('should create new user with provided password and default email', async function () {
|
|
const userHelper = await UserHelper.registerUser({
|
|
password: 'foofoofoo',
|
|
})
|
|
userHelper.user.email.should.equal(userHelper.getDefaultEmail())
|
|
const authedUser = await AuthenticationManager.promises.authenticate(
|
|
{ _id: userHelper.user._id },
|
|
'foofoofoo'
|
|
)
|
|
expect(authedUser).to.not.be.null
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('getCsrfToken', function () {
|
|
it('should fetch csrfToken', async function () {
|
|
const userHelper = new UserHelper()
|
|
await userHelper.getCsrfToken()
|
|
expect(userHelper.csrfToken).to.be.a.string
|
|
})
|
|
})
|
|
|
|
describe('after logout', function () {
|
|
let userHelper, oldCsrfToken
|
|
|
|
beforeEach(async function () {
|
|
userHelper = await UserHelper.registerUser()
|
|
oldCsrfToken = userHelper.csrfToken
|
|
})
|
|
|
|
it('refreshes csrf token after logout', async function () {
|
|
await userHelper.logout()
|
|
expect(userHelper._csrfToken).to.equal('')
|
|
await userHelper.getCsrfToken()
|
|
expect(userHelper._csrfToken).to.not.equal('')
|
|
expect(userHelper._csrfToken).to.not.equal(oldCsrfToken)
|
|
})
|
|
})
|
|
})
|