mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
e0dba75b81
GitOrigin-RevId: ab45010ec557d62576c470d2e024549e67261c66
204 lines
6.7 KiB
JavaScript
204 lines
6.7 KiB
JavaScript
import AuthenticationManager from '../../../app/src/Features/Authentication/AuthenticationManager.js'
|
|
import UserHelper from './helpers/UserHelper.js'
|
|
import Features from '../../../app/src/infrastructure/Features.js'
|
|
import { expect } from '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 { user: authedUser } =
|
|
await AuthenticationManager.promises.authenticate(
|
|
{ _id: userHelper.user._id },
|
|
userHelper.getDefaultPassword(),
|
|
null,
|
|
{ enforceHIBPCheck: false }
|
|
)
|
|
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 { user: authedUser } =
|
|
await AuthenticationManager.promises.authenticate(
|
|
{ _id: userHelper.user._id },
|
|
userHelper.getDefaultPassword(),
|
|
null,
|
|
{ enforceHIBPCheck: false }
|
|
)
|
|
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 { user: authedUser } =
|
|
await AuthenticationManager.promises.authenticate(
|
|
{ _id: userHelper.user._id },
|
|
'foofoofoo',
|
|
null,
|
|
{ enforceHIBPCheck: false }
|
|
)
|
|
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 { user: authedUser } =
|
|
await AuthenticationManager.promises.authenticate(
|
|
{ _id: userHelper.user._id },
|
|
userHelper.getDefaultPassword(),
|
|
null,
|
|
{ enforceHIBPCheck: false }
|
|
)
|
|
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 { user: authedUser } =
|
|
await AuthenticationManager.promises.authenticate(
|
|
{ _id: userHelper.user._id },
|
|
userHelper.getDefaultPassword(),
|
|
null,
|
|
{ enforceHIBPCheck: false }
|
|
)
|
|
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 { user: authedUser } =
|
|
await AuthenticationManager.promises.authenticate(
|
|
{ _id: userHelper.user._id },
|
|
'foofoofoo',
|
|
null,
|
|
{ enforceHIBPCheck: false }
|
|
)
|
|
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)
|
|
})
|
|
})
|
|
})
|