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
110 lines
3.2 KiB
JavaScript
110 lines
3.2 KiB
JavaScript
/* eslint-disable
|
|
max-len,
|
|
no-return-assign,
|
|
no-unused-vars,
|
|
*/
|
|
// 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 SandboxedModule = require('sandboxed-module')
|
|
const sinon = require('sinon')
|
|
const { assert } = require('chai')
|
|
const modulePath =
|
|
'../../../../app/src/Features/Subscription/SubscriptionGroupController'
|
|
const MockResponse = require('../helpers/MockResponse')
|
|
|
|
describe('SubscriptionGroupController', function () {
|
|
beforeEach(function () {
|
|
this.user = { _id: '!@312431', email: 'user@email.com' }
|
|
this.adminUserId = '123jlkj'
|
|
this.subscriptionId = '123434325412'
|
|
this.user_email = 'bob@gmail.com'
|
|
this.req = {
|
|
session: {
|
|
user: {
|
|
_id: this.adminUserId,
|
|
email: this.user_email,
|
|
},
|
|
},
|
|
params: {
|
|
subscriptionId: this.subscriptionId,
|
|
},
|
|
query: {},
|
|
}
|
|
|
|
this.subscription = {
|
|
_id: this.subscriptionId,
|
|
}
|
|
|
|
this.GroupHandler = { removeUserFromGroup: sinon.stub().callsArgWith(2) }
|
|
|
|
this.SubscriptionLocator = {
|
|
getSubscription: sinon.stub().callsArgWith(1, null, this.subscription),
|
|
}
|
|
|
|
this.AuthenticationController = {
|
|
getLoggedInUserId(req) {
|
|
return req.session.user._id
|
|
},
|
|
getSessionUser(req) {
|
|
return req.session.user
|
|
},
|
|
}
|
|
|
|
return (this.Controller = SandboxedModule.require(modulePath, {
|
|
requires: {
|
|
'./SubscriptionGroupHandler': this.GroupHandler,
|
|
'./SubscriptionLocator': this.SubscriptionLocator,
|
|
'../Authentication/AuthenticationController': this
|
|
.AuthenticationController,
|
|
},
|
|
}))
|
|
})
|
|
|
|
describe('removeUserFromGroup', function () {
|
|
it('should use the subscription id for the logged in user and take the user id from the params', function (done) {
|
|
const userIdToRemove = '31231'
|
|
this.req.params = { user_id: userIdToRemove }
|
|
this.req.entity = this.subscription
|
|
|
|
const res = {
|
|
sendStatus: () => {
|
|
this.GroupHandler.removeUserFromGroup
|
|
.calledWith(this.subscriptionId, userIdToRemove)
|
|
.should.equal(true)
|
|
return done()
|
|
},
|
|
}
|
|
return this.Controller.removeUserFromGroup(this.req, res)
|
|
})
|
|
})
|
|
|
|
describe('removeSelfFromGroup', function () {
|
|
it('gets subscription and remove user', function (done) {
|
|
const userIdToRemove = '31231'
|
|
this.req.query = { subscriptionId: this.subscriptionId }
|
|
const memberUserIdToremove = 123456789
|
|
this.req.session.user._id = memberUserIdToremove
|
|
|
|
const res = {
|
|
sendStatus: () => {
|
|
sinon.assert.calledWith(
|
|
this.SubscriptionLocator.getSubscription,
|
|
this.subscriptionId
|
|
)
|
|
sinon.assert.calledWith(
|
|
this.GroupHandler.removeUserFromGroup,
|
|
this.subscriptionId,
|
|
memberUserIdToremove
|
|
)
|
|
return done()
|
|
},
|
|
}
|
|
return this.Controller.removeSelfFromGroup(this.req, res)
|
|
})
|
|
})
|
|
})
|