overleaf/services/web/test/unit/coffee/User/UserDeleterTests.coffee
Simon Detheridge c07c44f366 Merge pull request #1644 from overleaf/spd-reconcile-accounts
Add account-reconciliation script

GitOrigin-RevId: e20a8b9531126d91baaa9da5c77ab6e971b43e67
2019-05-16 10:59:53 +00:00

134 lines
4.6 KiB
CoffeeScript

sinon = require('sinon')
chai = require('chai')
should = chai.should()
modulePath = "../../../../app/js/Features/User/UserDeleter.js"
SandboxedModule = require('sandboxed-module')
describe "UserDeleter", ->
beforeEach ->
@user =
_id:"12390i"
email: "bob@bob.com"
remove: sinon.stub().callsArgWith(0)
@User =
findById : sinon.stub().callsArgWith(1, null, @user)
@NewsletterManager =
unsubscribe: sinon.stub().callsArgWith(1)
@ProjectDeleter =
deleteUsersProjects: sinon.stub().callsArgWith(1)
softDeleteUsersProjectsForMigration: sinon.stub().callsArgWith(1)
@SubscriptionHandler =
cancelSubscription: sinon.stub().callsArgWith(1)
@SubscriptionUpdater =
removeUserFromAllGroups: sinon.stub().callsArgWith(1)
@UserMembershipsHandler =
removeUserFromAllEntities: sinon.stub().callsArgWith(1)
@deleteAffiliations = sinon.stub().callsArgWith(1)
@mongojs =
db:
deletedUsers:
insert: sinon.stub().callsArg(1)
usersDeletedByMigration:
insert: sinon.stub().callsArg(1)
@UserDeleter = SandboxedModule.require modulePath, requires:
"../../models/User": User: @User
"../Newsletter/NewsletterManager": @NewsletterManager
"../Subscription/SubscriptionHandler": @SubscriptionHandler
"../Subscription/SubscriptionUpdater": @SubscriptionUpdater
"../UserMembership/UserMembershipsHandler": @UserMembershipsHandler
"../Project/ProjectDeleter": @ProjectDeleter
"../Institutions/InstitutionsAPI":
deleteAffiliations: @deleteAffiliations
"../../infrastructure/mongojs": @mongojs
"logger-sharelatex": @logger = { log: sinon.stub() }
describe "softDeleteUserForMigration", ->
it "should delete the user in mongo", (done)->
@UserDeleter.softDeleteUserForMigration @user._id, (err)=>
@User.findById.calledWith(@user._id).should.equal true
@user.remove.called.should.equal true
done()
it "should add the user to the deletedUsers collection", (done)->
@UserDeleter.softDeleteUserForMigration @user._id, (err)=>
sinon.assert.calledWith(@mongojs.db.usersDeletedByMigration.insert, @user)
done()
it "should set the deletedAt field on the user", (done)->
@UserDeleter.softDeleteUserForMigration @user._id, (err)=>
@user.deletedAt.should.exist
done()
it "should unsubscribe the user from the news letter", (done)->
@UserDeleter.softDeleteUserForMigration @user._id, (err)=>
@NewsletterManager.unsubscribe.calledWith(@user).should.equal true
done()
it "should unsubscribe the user", (done)->
@UserDeleter.softDeleteUserForMigration @user._id, (err)=>
@SubscriptionHandler.cancelSubscription.calledWith(@user).should.equal true
done()
it "should delete user affiliations", (done)->
@UserDeleter.softDeleteUserForMigration @user._id, (err)=>
@deleteAffiliations.calledWith(@user._id).should.equal true
done()
it "should soft-delete all the projects of a user", (done)->
@UserDeleter.softDeleteUserForMigration @user._id, (err)=>
@ProjectDeleter.softDeleteUsersProjectsForMigration.calledWith(@user._id).should.equal true
done()
it "should remove user memberships", (done)->
@UserDeleter.softDeleteUserForMigration @user._id, (err)=>
@UserMembershipsHandler.removeUserFromAllEntities.calledWith(@user._id).should.equal true
done()
describe "deleteUser", ->
it "should delete the user in mongo", (done)->
@UserDeleter.deleteUser @user._id, (err)=>
@User.findById.calledWith(@user._id).should.equal true
@user.remove.called.should.equal true
done()
it "should unsubscribe the user from the news letter", (done)->
@UserDeleter.deleteUser @user._id, (err)=>
@NewsletterManager.unsubscribe.calledWith(@user).should.equal true
done()
it "should delete all the projects of a user", (done)->
@UserDeleter.deleteUser @user._id, (err)=>
@ProjectDeleter.deleteUsersProjects.calledWith(@user._id).should.equal true
done()
it "should unsubscribe the user", (done)->
@UserDeleter.deleteUser @user._id, (err)=>
@SubscriptionHandler.cancelSubscription.calledWith(@user).should.equal true
done()
it "should delete user affiliations", (done)->
@UserDeleter.deleteUser @user._id, (err)=>
@deleteAffiliations.calledWith(@user._id).should.equal true
done()
it "should remove user from group subscriptions", (done)->
@UserDeleter.deleteUser @user._id, (err)=>
@SubscriptionUpdater.removeUserFromAllGroups.calledWith(@user._id).should.equal true
done()
it "should remove user memberships", (done)->
@UserDeleter.deleteUser @user._id, (err)=>
@UserMembershipsHandler.removeUserFromAllEntities.calledWith(@user._id).should.equal true
done()