2019-05-29 05:21:06 -04:00
|
|
|
const SandboxedModule = require('sandboxed-module')
|
|
|
|
const sinon = require('sinon')
|
|
|
|
const { expect } = require('chai')
|
|
|
|
const modulePath =
|
|
|
|
'../../../../app/src/Features/Subscription/TeamInvitesHandler'
|
|
|
|
|
2020-09-23 04:49:26 -04:00
|
|
|
const { ObjectId } = require('mongodb')
|
2019-05-29 05:21:06 -04:00
|
|
|
const Errors = require('../../../../app/src/Features/Errors/Errors')
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('TeamInvitesHandler', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
this.manager = {
|
2019-06-11 09:14:08 -04:00
|
|
|
_id: '666666',
|
2019-05-29 05:21:06 -04:00
|
|
|
first_name: 'Daenerys',
|
|
|
|
last_name: 'Targaryen',
|
2019-06-11 09:14:08 -04:00
|
|
|
email: 'daenerys@example.com',
|
|
|
|
emails: [{ email: 'daenerys@example.com' }]
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
this.token = 'aaaaaaaaaaaaaaaaaaaaaa'
|
|
|
|
|
|
|
|
this.teamInvite = {
|
|
|
|
email: 'jorah@example.com',
|
|
|
|
token: this.token
|
|
|
|
}
|
|
|
|
|
|
|
|
this.subscription = {
|
|
|
|
id: '55153a8014829a865bbf700d',
|
|
|
|
_id: new ObjectId('55153a8014829a865bbf700d'),
|
2019-06-11 09:14:08 -04:00
|
|
|
admin_id: this.manager._id,
|
2019-05-29 05:21:06 -04:00
|
|
|
groupPlan: true,
|
|
|
|
member_ids: [],
|
|
|
|
teamInvites: [this.teamInvite],
|
|
|
|
save: sinon.stub().yields(null)
|
|
|
|
}
|
|
|
|
|
|
|
|
this.SubscriptionLocator = {
|
|
|
|
getUsersSubscription: sinon.stub(),
|
|
|
|
getSubscription: sinon.stub().yields(null, this.subscription)
|
|
|
|
}
|
|
|
|
|
|
|
|
this.UserGetter = {
|
|
|
|
getUser: sinon.stub().yields(),
|
|
|
|
getUserByAnyEmail: sinon.stub().yields()
|
|
|
|
}
|
|
|
|
|
|
|
|
this.SubscriptionUpdater = {
|
|
|
|
addUserToGroup: sinon.stub().yields()
|
|
|
|
}
|
|
|
|
|
|
|
|
this.LimitationsManager = {
|
|
|
|
teamHasReachedMemberLimit: sinon.stub().returns(false)
|
|
|
|
}
|
|
|
|
|
|
|
|
this.Subscription = {
|
|
|
|
findOne: sinon.stub().yields(),
|
2020-11-03 04:19:05 -05:00
|
|
|
updateOne: sinon.stub().yields()
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
this.EmailHandler = {
|
|
|
|
sendEmail: sinon.stub().yields(null)
|
|
|
|
}
|
|
|
|
|
|
|
|
this.newToken = 'bbbbbbbbb'
|
|
|
|
|
|
|
|
this.crypto = {
|
|
|
|
randomBytes: () => {
|
|
|
|
return { toString: sinon.stub().returns(this.newToken) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-11 09:14:08 -04:00
|
|
|
this.UserGetter.getUser
|
|
|
|
.withArgs(this.manager._id)
|
|
|
|
.yields(null, this.manager)
|
2019-05-29 05:21:06 -04:00
|
|
|
this.UserGetter.getUserByAnyEmail
|
|
|
|
.withArgs(this.manager.email)
|
|
|
|
.yields(null, this.manager)
|
|
|
|
|
|
|
|
this.SubscriptionLocator.getUsersSubscription.yields(
|
|
|
|
null,
|
|
|
|
this.subscription
|
|
|
|
)
|
|
|
|
this.Subscription.findOne.yields(null, this.subscription)
|
|
|
|
|
2019-06-11 09:14:08 -04:00
|
|
|
this.TeamInvitesHandler = SandboxedModule.require(modulePath, {
|
2019-05-29 05:21:06 -04:00
|
|
|
requires: {
|
2020-10-05 04:23:21 -04:00
|
|
|
mongodb: { ObjectId },
|
2019-05-29 05:21:06 -04:00
|
|
|
crypto: this.crypto,
|
|
|
|
'settings-sharelatex': { siteUrl: 'http://example.com' },
|
|
|
|
'../../models/TeamInvite': { TeamInvite: (this.TeamInvite = {}) },
|
|
|
|
'../../models/Subscription': { Subscription: this.Subscription },
|
|
|
|
'../User/UserGetter': this.UserGetter,
|
|
|
|
'./SubscriptionLocator': this.SubscriptionLocator,
|
|
|
|
'./SubscriptionUpdater': this.SubscriptionUpdater,
|
|
|
|
'./LimitationsManager': this.LimitationsManager,
|
2020-11-27 08:11:12 -05:00
|
|
|
'../Email/EmailHandler': this.EmailHandler
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
2019-06-11 09:14:08 -04:00
|
|
|
})
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('getInvite', function () {
|
|
|
|
it("returns the invite if there's one", function (done) {
|
2019-06-11 09:14:08 -04:00
|
|
|
this.TeamInvitesHandler.getInvite(
|
2019-05-29 05:21:06 -04:00
|
|
|
this.token,
|
|
|
|
(err, invite, subscription) => {
|
|
|
|
expect(err).to.eq(null)
|
|
|
|
expect(invite).to.deep.eq(this.teamInvite)
|
|
|
|
expect(subscription).to.deep.eq(this.subscription)
|
2019-06-11 09:14:08 -04:00
|
|
|
done()
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it("returns teamNotFound if there's none", function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
this.Subscription.findOne = sinon.stub().yields(null, null)
|
|
|
|
|
2019-08-07 10:04:04 -04:00
|
|
|
this.TeamInvitesHandler.getInvite(
|
|
|
|
this.token,
|
|
|
|
(err, invite, subscription) => {
|
|
|
|
expect(err).to.be.instanceof(Errors.NotFoundError)
|
|
|
|
done()
|
|
|
|
}
|
|
|
|
)
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('createInvite', function () {
|
|
|
|
it('adds the team invite to the subscription', function (done) {
|
2019-06-11 09:14:08 -04:00
|
|
|
this.TeamInvitesHandler.createInvite(
|
|
|
|
this.manager._id,
|
2019-05-29 05:21:06 -04:00
|
|
|
this.subscription,
|
|
|
|
'John.Snow@example.com',
|
|
|
|
(err, invite) => {
|
|
|
|
expect(err).to.eq(null)
|
|
|
|
expect(invite.token).to.eq(this.newToken)
|
|
|
|
expect(invite.email).to.eq('john.snow@example.com')
|
|
|
|
expect(invite.inviterName).to.eq(
|
|
|
|
'Daenerys Targaryen (daenerys@example.com)'
|
|
|
|
)
|
2019-06-17 10:46:08 -04:00
|
|
|
expect(invite.invite).to.be.true
|
2019-05-29 05:21:06 -04:00
|
|
|
expect(this.subscription.teamInvites).to.deep.include(invite)
|
2019-06-11 09:14:08 -04:00
|
|
|
done()
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('sends an email', function (done) {
|
2019-06-11 09:14:08 -04:00
|
|
|
this.TeamInvitesHandler.createInvite(
|
|
|
|
this.manager._id,
|
2019-05-29 05:21:06 -04:00
|
|
|
this.subscription,
|
|
|
|
'John.Snow@example.com',
|
|
|
|
(err, invite) => {
|
|
|
|
this.EmailHandler.sendEmail
|
|
|
|
.calledWith(
|
|
|
|
'verifyEmailToJoinTeam',
|
|
|
|
sinon.match({
|
|
|
|
to: 'john.snow@example.com',
|
2019-12-05 08:58:33 -05:00
|
|
|
inviter: this.manager,
|
2020-12-15 05:23:54 -05:00
|
|
|
acceptInviteUrl: `http://example.com/subscription/invites/${this.newToken}/`
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
)
|
|
|
|
.should.equal(true)
|
2019-06-11 09:14:08 -04:00
|
|
|
done(err)
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('refreshes the existing invite if the email has already been invited', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
const originalInvite = Object.assign({}, this.teamInvite)
|
|
|
|
|
2019-06-11 09:14:08 -04:00
|
|
|
this.TeamInvitesHandler.createInvite(
|
|
|
|
this.manager._id,
|
2019-05-29 05:21:06 -04:00
|
|
|
this.subscription,
|
|
|
|
originalInvite.email,
|
|
|
|
(err, invite) => {
|
|
|
|
expect(err).to.eq(null)
|
|
|
|
expect(invite).to.exist
|
|
|
|
|
|
|
|
expect(this.subscription.teamInvites.length).to.eq(1)
|
|
|
|
expect(this.subscription.teamInvites).to.deep.include(invite)
|
|
|
|
|
|
|
|
expect(invite.email).to.eq(originalInvite.email)
|
|
|
|
|
|
|
|
this.subscription.save.calledOnce.should.eq(true)
|
|
|
|
|
2019-06-11 09:14:08 -04:00
|
|
|
done()
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('removes any legacy invite from the subscription', function (done) {
|
2019-06-11 09:14:08 -04:00
|
|
|
this.TeamInvitesHandler.createInvite(
|
|
|
|
this.manager._id,
|
2019-05-29 05:21:06 -04:00
|
|
|
this.subscription,
|
|
|
|
'John.Snow@example.com',
|
|
|
|
(err, invite) => {
|
2020-11-03 04:19:05 -05:00
|
|
|
this.Subscription.updateOne
|
2019-05-29 05:21:06 -04:00
|
|
|
.calledWith(
|
|
|
|
{ _id: new ObjectId('55153a8014829a865bbf700d') },
|
|
|
|
{ $pull: { invited_emails: 'john.snow@example.com' } }
|
|
|
|
)
|
|
|
|
.should.eq(true)
|
2019-06-11 09:14:08 -04:00
|
|
|
done(err)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('add user to subscription if inviting self', function (done) {
|
2019-06-11 09:14:08 -04:00
|
|
|
this.TeamInvitesHandler.createInvite(
|
|
|
|
this.manager._id,
|
|
|
|
this.subscription,
|
|
|
|
this.manager.email,
|
|
|
|
(err, invite) => {
|
|
|
|
sinon.assert.calledWith(
|
|
|
|
this.SubscriptionUpdater.addUserToGroup,
|
|
|
|
this.subscription._id,
|
|
|
|
this.manager._id
|
|
|
|
)
|
|
|
|
sinon.assert.notCalled(this.subscription.save)
|
2019-06-17 10:46:08 -04:00
|
|
|
expect(invite.token).to.not.exist
|
|
|
|
expect(invite.email).to.eq(this.manager.email)
|
|
|
|
expect(invite.first_name).to.eq(this.manager.first_name)
|
|
|
|
expect(invite.last_name).to.eq(this.manager.last_name)
|
|
|
|
expect(invite.invite).to.be.false
|
2019-06-11 09:14:08 -04:00
|
|
|
done(err)
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('importInvite', function () {
|
|
|
|
beforeEach(function () {
|
2019-06-11 09:14:08 -04:00
|
|
|
this.sentAt = new Date()
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('can imports an invite from v1', function () {
|
2019-06-11 09:14:08 -04:00
|
|
|
this.TeamInvitesHandler.importInvite(
|
2019-05-29 05:21:06 -04:00
|
|
|
this.subscription,
|
|
|
|
'A-Team',
|
|
|
|
'hannibal@a-team.org',
|
|
|
|
'secret',
|
|
|
|
this.sentAt,
|
|
|
|
error => {
|
|
|
|
expect(error).not.to.exist
|
|
|
|
|
|
|
|
this.subscription.save.calledOnce.should.eq(true)
|
|
|
|
|
|
|
|
const invite = this.subscription.teamInvites.find(
|
|
|
|
i => i.email === 'hannibal@a-team.org'
|
|
|
|
)
|
|
|
|
expect(invite.token).to.eq('secret')
|
2019-06-11 09:14:08 -04:00
|
|
|
expect(invite.sentAt).to.eq(this.sentAt)
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('acceptInvite', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
this.user = {
|
|
|
|
id: '123456789',
|
|
|
|
first_name: 'Tyrion',
|
|
|
|
last_name: 'Lannister',
|
|
|
|
email: 'tyrion@example.com'
|
|
|
|
}
|
|
|
|
|
|
|
|
this.UserGetter.getUserByAnyEmail
|
|
|
|
.withArgs(this.user.email)
|
|
|
|
.yields(null, this.user)
|
|
|
|
|
2019-06-11 09:14:08 -04:00
|
|
|
this.subscription.teamInvites.push({
|
2019-05-29 05:21:06 -04:00
|
|
|
email: 'john.snow@example.com',
|
|
|
|
token: 'dddddddd',
|
|
|
|
inviterName: 'Daenerys Targaryen (daenerys@example.com)'
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('adds the user to the team', function (done) {
|
2019-06-11 09:14:08 -04:00
|
|
|
this.TeamInvitesHandler.acceptInvite('dddddddd', this.user.id, () => {
|
|
|
|
this.SubscriptionUpdater.addUserToGroup
|
|
|
|
.calledWith(this.subscription._id, this.user.id)
|
|
|
|
.should.eq(true)
|
|
|
|
done()
|
|
|
|
})
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('removes the invite from the subscription', function (done) {
|
2019-06-11 09:14:08 -04:00
|
|
|
this.TeamInvitesHandler.acceptInvite('dddddddd', this.user.id, () => {
|
2020-11-03 04:19:05 -05:00
|
|
|
this.Subscription.updateOne
|
2019-06-11 09:14:08 -04:00
|
|
|
.calledWith(
|
|
|
|
{ _id: new ObjectId('55153a8014829a865bbf700d') },
|
|
|
|
{ $pull: { teamInvites: { email: 'john.snow@example.com' } } }
|
|
|
|
)
|
|
|
|
.should.eq(true)
|
|
|
|
done()
|
|
|
|
})
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('revokeInvite', function () {
|
|
|
|
it('removes the team invite from the subscription', function (done) {
|
2019-06-11 09:14:08 -04:00
|
|
|
this.TeamInvitesHandler.revokeInvite(
|
|
|
|
this.manager._id,
|
2019-05-29 05:21:06 -04:00
|
|
|
this.subscription,
|
|
|
|
'jorah@example.com',
|
|
|
|
() => {
|
2020-11-03 04:19:05 -05:00
|
|
|
this.Subscription.updateOne
|
2019-05-29 05:21:06 -04:00
|
|
|
.calledWith(
|
|
|
|
{ _id: new ObjectId('55153a8014829a865bbf700d') },
|
|
|
|
{ $pull: { teamInvites: { email: 'jorah@example.com' } } }
|
|
|
|
)
|
|
|
|
.should.eq(true)
|
|
|
|
|
2020-11-03 04:19:05 -05:00
|
|
|
this.Subscription.updateOne
|
2019-05-29 05:21:06 -04:00
|
|
|
.calledWith(
|
|
|
|
{ _id: new ObjectId('55153a8014829a865bbf700d') },
|
|
|
|
{ $pull: { invited_emails: 'jorah@example.com' } }
|
|
|
|
)
|
|
|
|
.should.eq(true)
|
2019-06-11 09:14:08 -04:00
|
|
|
done()
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
|
|
|
)
|
2019-08-07 10:04:04 -04:00
|
|
|
})
|
|
|
|
})
|
2019-05-29 05:21:06 -04:00
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('createTeamInvitesForLegacyInvitedEmail', function (done) {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
this.subscription.invited_emails = [
|
|
|
|
'eddard@example.com',
|
|
|
|
'robert@example.com'
|
|
|
|
]
|
|
|
|
this.TeamInvitesHandler.createInvite = sinon.stub().yields(null)
|
2019-06-11 09:14:08 -04:00
|
|
|
this.SubscriptionLocator.getGroupsWithEmailInvite = sinon
|
2019-05-29 05:21:06 -04:00
|
|
|
.stub()
|
2019-06-11 09:14:08 -04:00
|
|
|
.yields(null, [this.subscription])
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('sends an invitation email to addresses in the legacy invited_emails field', function (done) {
|
2019-06-11 09:14:08 -04:00
|
|
|
this.TeamInvitesHandler.createTeamInvitesForLegacyInvitedEmail(
|
2019-05-29 05:21:06 -04:00
|
|
|
'eddard@example.com',
|
|
|
|
(err, invite) => {
|
|
|
|
expect(err).not.to.exist
|
|
|
|
|
|
|
|
this.TeamInvitesHandler.createInvite
|
|
|
|
.calledWith(
|
|
|
|
this.subscription.admin_id,
|
|
|
|
this.subscription,
|
|
|
|
'eddard@example.com'
|
|
|
|
)
|
|
|
|
.should.eq(true)
|
|
|
|
|
|
|
|
this.TeamInvitesHandler.createInvite.callCount.should.eq(1)
|
|
|
|
|
2019-06-11 09:14:08 -04:00
|
|
|
done()
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('validation', function () {
|
|
|
|
it("doesn't create an invite if the team limit has been reached", function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
this.LimitationsManager.teamHasReachedMemberLimit = sinon
|
|
|
|
.stub()
|
|
|
|
.returns(true)
|
2019-06-11 09:14:08 -04:00
|
|
|
this.TeamInvitesHandler.createInvite(
|
|
|
|
this.manager._id,
|
2019-05-29 05:21:06 -04:00
|
|
|
this.subscription,
|
|
|
|
'John.Snow@example.com',
|
|
|
|
(err, invite) => {
|
|
|
|
expect(err).to.deep.equal({ limitReached: true })
|
2019-06-11 09:14:08 -04:00
|
|
|
done()
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it("doesn't create an invite if the subscription is not in a group plan", function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
this.subscription.groupPlan = false
|
2019-06-11 09:14:08 -04:00
|
|
|
this.TeamInvitesHandler.createInvite(
|
|
|
|
this.manager._id,
|
2019-05-29 05:21:06 -04:00
|
|
|
this.subscription,
|
|
|
|
'John.Snow@example.com',
|
|
|
|
(err, invite) => {
|
|
|
|
expect(err).to.deep.equal({ wrongPlan: true })
|
2019-06-11 09:14:08 -04:00
|
|
|
done()
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it("doesn't create an invite if the user is already part of the team", function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
const member = {
|
|
|
|
id: '1a2b',
|
|
|
|
_id: '1a2b',
|
|
|
|
email: 'tyrion@example.com'
|
|
|
|
}
|
|
|
|
|
|
|
|
this.subscription.member_ids = [member.id]
|
|
|
|
this.UserGetter.getUserByAnyEmail
|
|
|
|
.withArgs(member.email)
|
|
|
|
.yields(null, member)
|
|
|
|
|
2019-06-11 09:14:08 -04:00
|
|
|
this.TeamInvitesHandler.createInvite(
|
|
|
|
this.manager._id,
|
2019-05-29 05:21:06 -04:00
|
|
|
this.subscription,
|
|
|
|
'tyrion@example.com',
|
|
|
|
(err, invite) => {
|
|
|
|
expect(err).to.deep.equal({ alreadyInTeam: true })
|
|
|
|
expect(invite).not.to.exist
|
2019-06-11 09:14:08 -04:00
|
|
|
done()
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|