mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
1be43911b4
Set Prettier's "trailingComma" setting to "es5" GitOrigin-RevId: 9f14150511929a855b27467ad17be6ab262fe5d5
124 lines
3.9 KiB
JavaScript
124 lines
3.9 KiB
JavaScript
/* eslint-disable
|
|
node/handle-callback-err,
|
|
max-len,
|
|
no-return-assign,
|
|
*/
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
// Fix any style issues and re-enable lint.
|
|
/*
|
|
* decaffeinate suggestions:
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
*/
|
|
const { expect } = require('chai')
|
|
const sinon = require('sinon')
|
|
const assertCalledWith = sinon.assert.calledWith
|
|
const assertNotCalled = sinon.assert.notCalled
|
|
const { ObjectId } = require('mongodb')
|
|
const modulePath =
|
|
'../../../../app/src/Features/UserMembership/UserMembershipViewModel'
|
|
const SandboxedModule = require('sandboxed-module')
|
|
const {
|
|
isObjectIdInstance,
|
|
normalizeQuery,
|
|
} = require('../../../../app/src/Features/Helpers/Mongo')
|
|
|
|
describe('UserMembershipViewModel', function () {
|
|
beforeEach(function () {
|
|
this.UserGetter = { getUser: sinon.stub() }
|
|
this.UserMembershipViewModel = SandboxedModule.require(modulePath, {
|
|
requires: {
|
|
mongodb: { ObjectId },
|
|
'../Helpers/Mongo': { isObjectIdInstance, normalizeQuery },
|
|
'../User/UserGetter': this.UserGetter,
|
|
},
|
|
})
|
|
this.email = 'mock-email@bar.com'
|
|
this.user = {
|
|
_id: 'mock-user-id',
|
|
email: 'mock-email@baz.com',
|
|
first_name: 'Name',
|
|
lastLoggedIn: '2020-05-20T10:41:11.407Z',
|
|
}
|
|
})
|
|
|
|
describe('build', function () {
|
|
it('build email', function () {
|
|
const viewModel = this.UserMembershipViewModel.build(this.email)
|
|
return expect(viewModel).to.deep.equal({
|
|
email: this.email,
|
|
invite: true,
|
|
last_logged_in_at: null,
|
|
first_name: null,
|
|
last_name: null,
|
|
_id: null,
|
|
})
|
|
})
|
|
|
|
it('build user', function () {
|
|
const viewModel = this.UserMembershipViewModel.build(this.user)
|
|
expect(viewModel._id).to.equal(this.user._id)
|
|
expect(viewModel.email).to.equal(this.user.email)
|
|
expect(viewModel.last_logged_in_at).to.equal(this.user.lastLoggedIn)
|
|
return expect(viewModel.invite).to.equal(false)
|
|
})
|
|
})
|
|
|
|
describe('build async', function () {
|
|
beforeEach(function () {
|
|
return (this.UserMembershipViewModel.build = sinon.stub())
|
|
})
|
|
|
|
it('build email', function (done) {
|
|
return this.UserMembershipViewModel.buildAsync(
|
|
this.email,
|
|
(error, viewModel) => {
|
|
assertCalledWith(this.UserMembershipViewModel.build, this.email)
|
|
return done()
|
|
}
|
|
)
|
|
})
|
|
|
|
it('build user', function (done) {
|
|
return this.UserMembershipViewModel.buildAsync(
|
|
this.user,
|
|
(error, viewModel) => {
|
|
assertCalledWith(this.UserMembershipViewModel.build, this.user)
|
|
return done()
|
|
}
|
|
)
|
|
})
|
|
|
|
it('build user id', function (done) {
|
|
this.UserGetter.getUser.yields(null, this.user)
|
|
return this.UserMembershipViewModel.buildAsync(
|
|
ObjectId(),
|
|
(error, viewModel) => {
|
|
expect(error).not.to.exist
|
|
assertNotCalled(this.UserMembershipViewModel.build)
|
|
expect(viewModel._id).to.equal(this.user._id)
|
|
expect(viewModel.email).to.equal(this.user.email)
|
|
expect(viewModel.first_name).to.equal(this.user.first_name)
|
|
expect(viewModel.invite).to.equal(false)
|
|
expect(viewModel.email).to.exist
|
|
return done()
|
|
}
|
|
)
|
|
})
|
|
|
|
it('build user id with error', function (done) {
|
|
this.UserGetter.getUser.yields(new Error('nope'))
|
|
const userId = ObjectId()
|
|
return this.UserMembershipViewModel.buildAsync(
|
|
userId,
|
|
(error, viewModel) => {
|
|
expect(error).not.to.exist
|
|
assertNotCalled(this.UserMembershipViewModel.build)
|
|
expect(viewModel._id).to.equal(userId.toString())
|
|
expect(viewModel.email).not.to.exist
|
|
return done()
|
|
}
|
|
)
|
|
})
|
|
})
|
|
})
|