2019-07-18 10:18:56 -04:00
|
|
|
const User = require('./helpers/User')
|
|
|
|
const request = require('./helpers/request')
|
|
|
|
const async = require('async')
|
|
|
|
const { expect } = require('chai')
|
|
|
|
const settings = require('settings-sharelatex')
|
|
|
|
const { db, ObjectId } = require('../../../app/src/infrastructure/mongojs')
|
|
|
|
const { Subscription } = require('../../../app/src/models/Subscription')
|
|
|
|
const SubscriptionViewModelBuilder = require('../../../app/src/Features/Subscription/SubscriptionViewModelBuilder')
|
|
|
|
const MockDocstoreApi = require('./helpers/MockDocstoreApi')
|
2020-04-24 05:17:51 -04:00
|
|
|
const MockFileStoreApi = require('./helpers/MockFileStoreApi')
|
2019-07-18 10:18:56 -04:00
|
|
|
require('./helpers/MockV1Api')
|
2020-03-04 04:38:40 -05:00
|
|
|
require('./helpers/MockProjectHistoryApi')
|
2019-07-18 10:18:56 -04:00
|
|
|
|
2019-08-07 10:04:04 -04:00
|
|
|
describe('Deleting a user', function() {
|
|
|
|
beforeEach(function(done) {
|
2019-07-18 10:18:56 -04:00
|
|
|
this.user = new User()
|
|
|
|
async.series(
|
|
|
|
[
|
|
|
|
this.user.ensureUserExists.bind(this.user),
|
|
|
|
this.user.login.bind(this.user),
|
|
|
|
this.user.activateSudoMode.bind(this.user)
|
|
|
|
],
|
|
|
|
done
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2019-08-07 10:04:04 -04:00
|
|
|
it('Should remove the user from active users', function(done) {
|
2019-07-18 10:18:56 -04:00
|
|
|
this.user.get((error, user) => {
|
|
|
|
expect(error).not.to.exist
|
|
|
|
expect(user).to.exist
|
|
|
|
this.user.deleteUser(error => {
|
|
|
|
expect(error).not.to.exist
|
|
|
|
this.user.get((error, user) => {
|
|
|
|
expect(error).not.to.exist
|
|
|
|
expect(user).not.to.exist
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-08-07 10:04:04 -04:00
|
|
|
it('Should create a soft-deleted user', function(done) {
|
2019-07-18 10:18:56 -04:00
|
|
|
this.user.get((error, user) => {
|
|
|
|
expect(error).not.to.exist
|
|
|
|
this.user.deleteUser(error => {
|
|
|
|
expect(error).not.to.exist
|
|
|
|
db.deletedUsers.findOne(
|
|
|
|
{ 'user._id': user._id },
|
|
|
|
(error, deletedUser) => {
|
|
|
|
expect(error).not.to.exist
|
|
|
|
expect(deletedUser).to.exist
|
|
|
|
// it should set the 'deleterData' correctly
|
|
|
|
expect(deletedUser.deleterData.deleterId.toString()).to.equal(
|
|
|
|
user._id.toString()
|
|
|
|
)
|
|
|
|
expect(deletedUser.deleterData.deletedUserId.toString()).to.equal(
|
|
|
|
user._id.toString()
|
|
|
|
)
|
|
|
|
expect(deletedUser.deleterData.deletedUserReferralId).to.equal(
|
|
|
|
user.referal_id
|
|
|
|
)
|
|
|
|
// it should set the 'user' correctly
|
|
|
|
expect(deletedUser.user._id.toString()).to.equal(
|
|
|
|
user._id.toString()
|
|
|
|
)
|
|
|
|
expect(deletedUser.user.email).to.equal(user.email)
|
|
|
|
done()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-08-07 10:04:04 -04:00
|
|
|
it('Should fail if the user has a subscription', function(done) {
|
2019-07-18 10:18:56 -04:00
|
|
|
Subscription.create(
|
|
|
|
{
|
|
|
|
admin_id: this.user._id,
|
|
|
|
manager_ids: [this.user._id],
|
|
|
|
planCode: 'collaborator'
|
|
|
|
},
|
|
|
|
error => {
|
|
|
|
expect(error).not.to.exist
|
|
|
|
SubscriptionViewModelBuilder.buildUsersSubscriptionViewModel(
|
|
|
|
this.user,
|
|
|
|
error => {
|
|
|
|
expect(error).not.to.exist
|
|
|
|
this.user.deleteUser(error => {
|
|
|
|
expect(error).to.exist
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2019-08-07 10:04:04 -04:00
|
|
|
it("Should delete the user's projects", function(done) {
|
2019-07-18 10:18:56 -04:00
|
|
|
this.user.createProject('wombat', (error, projectId) => {
|
|
|
|
expect(error).not.to.exist
|
|
|
|
this.user.getProject(projectId, (error, project) => {
|
|
|
|
expect(error).not.to.exist
|
|
|
|
expect(project).to.exist
|
|
|
|
|
|
|
|
this.user.deleteUser(error => {
|
|
|
|
expect(error).not.to.exist
|
|
|
|
this.user.getProject(projectId, (error, project) => {
|
|
|
|
expect(error).not.to.exist
|
|
|
|
expect(project).not.to.exist
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-08-07 10:04:04 -04:00
|
|
|
describe('when scrubbing the user', function() {
|
|
|
|
beforeEach(function(done) {
|
2019-07-18 10:18:56 -04:00
|
|
|
this.user.get((error, user) => {
|
|
|
|
if (error) {
|
|
|
|
throw error
|
|
|
|
}
|
|
|
|
this.userId = user._id
|
|
|
|
this.user.deleteUser(done)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-08-07 10:04:04 -04:00
|
|
|
it('Should remove the user data from mongo', function(done) {
|
2019-07-18 10:18:56 -04:00
|
|
|
db.deletedUsers.findOne(
|
|
|
|
{ 'deleterData.deletedUserId': this.userId },
|
|
|
|
(error, deletedUser) => {
|
|
|
|
expect(error).not.to.exist
|
|
|
|
expect(deletedUser).to.exist
|
|
|
|
expect(deletedUser.deleterData.deleterIpAddress).to.exist
|
|
|
|
expect(deletedUser.user).to.exist
|
|
|
|
|
|
|
|
request.post(
|
|
|
|
`/internal/users/${this.userId}/expire`,
|
|
|
|
{
|
|
|
|
auth: {
|
|
|
|
user: settings.apis.web.user,
|
|
|
|
pass: settings.apis.web.pass,
|
|
|
|
sendImmediately: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
(error, res) => {
|
|
|
|
expect(error).not.to.exist
|
|
|
|
expect(res.statusCode).to.equal(204)
|
|
|
|
|
|
|
|
db.deletedUsers.findOne(
|
|
|
|
{ 'deleterData.deletedUserId': this.userId },
|
|
|
|
(error, deletedUser) => {
|
|
|
|
expect(error).not.to.exist
|
|
|
|
expect(deletedUser).to.exist
|
|
|
|
expect(deletedUser.deleterData.deleterIpAddress).not.to.exist
|
|
|
|
expect(deletedUser.user).not.to.exist
|
|
|
|
done()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-08-07 10:04:04 -04:00
|
|
|
describe('Deleting a project', function() {
|
|
|
|
beforeEach(function(done) {
|
2019-07-18 10:18:56 -04:00
|
|
|
this.user = new User()
|
|
|
|
this.projectName = 'wombat'
|
|
|
|
this.user.ensureUserExists(() => {
|
|
|
|
this.user.login(() => {
|
|
|
|
this.user.createProject(this.projectName, (_e, projectId) => {
|
|
|
|
this.projectId = projectId
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-08-07 10:04:04 -04:00
|
|
|
it('Should remove the project from active projects', function(done) {
|
2019-07-18 10:18:56 -04:00
|
|
|
this.user.getProject(this.projectId, (error, project) => {
|
|
|
|
expect(error).not.to.exist
|
|
|
|
expect(project).to.exist
|
|
|
|
|
|
|
|
this.user.deleteProject(this.projectId, error => {
|
|
|
|
expect(error).not.to.exist
|
|
|
|
|
|
|
|
this.user.getProject(this.projectId, (error, project) => {
|
|
|
|
expect(error).not.to.exist
|
|
|
|
expect(project).not.to.exist
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-08-07 10:04:04 -04:00
|
|
|
it('Should create a soft-deleted project', function(done) {
|
2019-07-18 10:18:56 -04:00
|
|
|
this.user.getProject(this.projectId, (error, project) => {
|
|
|
|
expect(error).not.to.exist
|
|
|
|
|
|
|
|
this.user.get((error, user) => {
|
|
|
|
expect(error).not.to.exist
|
|
|
|
|
|
|
|
this.user.deleteProject(this.projectId, error => {
|
|
|
|
expect(error).not.to.exist
|
|
|
|
|
|
|
|
db.deletedProjects.findOne(
|
|
|
|
{ 'deleterData.deletedProjectId': project._id },
|
|
|
|
(error, deletedProject) => {
|
|
|
|
expect(error).not.to.exist
|
|
|
|
expect(deletedProject).to.exist
|
|
|
|
|
|
|
|
// it should set the 'deleterData' correctly
|
|
|
|
expect(deletedProject.deleterData.deleterId.toString()).to.equal(
|
|
|
|
user._id.toString()
|
|
|
|
)
|
|
|
|
expect(
|
|
|
|
deletedProject.deleterData.deletedProjectId.toString()
|
|
|
|
).to.equal(project._id.toString())
|
|
|
|
expect(
|
|
|
|
deletedProject.deleterData.deletedProjectOwnerId.toString()
|
|
|
|
).to.equal(user._id.toString())
|
|
|
|
// it should set the 'user' correctly
|
|
|
|
expect(deletedProject.project._id.toString()).to.equal(
|
|
|
|
project._id.toString()
|
|
|
|
)
|
|
|
|
expect(deletedProject.project.name).to.equal(this.projectName)
|
|
|
|
|
|
|
|
done()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-08-07 10:04:04 -04:00
|
|
|
describe('When the project has docs', function() {
|
|
|
|
beforeEach(function(done) {
|
2019-07-18 10:18:56 -04:00
|
|
|
this.user.getProject(this.projectId, (error, project) => {
|
|
|
|
if (error) {
|
|
|
|
throw error
|
|
|
|
}
|
|
|
|
this.user.createDocInProject(
|
|
|
|
this.projectId,
|
|
|
|
project.rootFolder[0]._id,
|
|
|
|
'potato',
|
|
|
|
(error, docId) => {
|
|
|
|
if (error) {
|
|
|
|
throw error
|
|
|
|
}
|
|
|
|
this.docId = docId
|
|
|
|
done()
|
|
|
|
}
|
|
|
|
)
|
2020-04-24 05:17:51 -04:00
|
|
|
MockFileStoreApi.files[this.projectId.toString()] = {
|
|
|
|
dummyFile: 'wombat'
|
|
|
|
}
|
2019-07-18 10:18:56 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-08-07 10:04:04 -04:00
|
|
|
describe('When the deleted project is expired', function() {
|
|
|
|
beforeEach(function(done) {
|
2019-07-18 10:18:56 -04:00
|
|
|
this.user.deleteProject(this.projectId, error => {
|
|
|
|
if (error) {
|
|
|
|
throw error
|
|
|
|
}
|
|
|
|
done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-08-07 10:04:04 -04:00
|
|
|
it('Should destroy the docs', function(done) {
|
2019-07-18 10:18:56 -04:00
|
|
|
expect(
|
|
|
|
MockDocstoreApi.docs[this.projectId.toString()][this.docId.toString()]
|
|
|
|
).to.exist
|
|
|
|
|
|
|
|
request.post(
|
|
|
|
`/internal/project/${this.projectId}/expire-deleted-project`,
|
|
|
|
{
|
|
|
|
auth: {
|
|
|
|
user: settings.apis.web.user,
|
|
|
|
pass: settings.apis.web.pass,
|
|
|
|
sendImmediately: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
(error, res) => {
|
|
|
|
expect(error).not.to.exist
|
|
|
|
expect(res.statusCode).to.equal(200)
|
|
|
|
|
|
|
|
expect(MockDocstoreApi.docs[this.projectId.toString()]).not.to.exist
|
|
|
|
done()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2020-04-24 05:17:51 -04:00
|
|
|
it('Should destroy the files', function(done) {
|
|
|
|
expect(MockFileStoreApi.files[this.projectId.toString()]).to.exist
|
|
|
|
|
|
|
|
request.post(
|
|
|
|
`/internal/project/${this.projectId}/expire-deleted-project`,
|
|
|
|
{
|
|
|
|
auth: {
|
|
|
|
user: settings.apis.web.user,
|
|
|
|
pass: settings.apis.web.pass,
|
|
|
|
sendImmediately: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
(error, res) => {
|
|
|
|
expect(error).not.to.exist
|
|
|
|
expect(res.statusCode).to.equal(200)
|
|
|
|
|
|
|
|
expect(MockFileStoreApi.files[this.projectId.toString()]).not.to
|
|
|
|
.exist
|
|
|
|
done()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2019-08-07 10:04:04 -04:00
|
|
|
it('Should remove the project data from mongo', function(done) {
|
2019-07-18 10:18:56 -04:00
|
|
|
db.deletedProjects.findOne(
|
|
|
|
{ 'deleterData.deletedProjectId': ObjectId(this.projectId) },
|
|
|
|
(error, deletedProject) => {
|
|
|
|
expect(error).not.to.exist
|
|
|
|
expect(deletedProject).to.exist
|
|
|
|
expect(deletedProject.project).to.exist
|
|
|
|
expect(deletedProject.deleterData.deleterIpAddress).to.exist
|
|
|
|
expect(deletedProject.deleterData.deletedAt).to.exist
|
|
|
|
|
|
|
|
request.post(
|
|
|
|
`/internal/project/${this.projectId}/expire-deleted-project`,
|
|
|
|
{
|
|
|
|
auth: {
|
|
|
|
user: settings.apis.web.user,
|
|
|
|
pass: settings.apis.web.pass,
|
|
|
|
sendImmediately: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
(error, res) => {
|
|
|
|
expect(error).not.to.exist
|
|
|
|
expect(res.statusCode).to.equal(200)
|
|
|
|
|
|
|
|
db.deletedProjects.findOne(
|
|
|
|
{ 'deleterData.deletedProjectId': ObjectId(this.projectId) },
|
|
|
|
(error, deletedProject) => {
|
|
|
|
expect(error).not.to.exist
|
|
|
|
expect(deletedProject).to.exist
|
|
|
|
expect(deletedProject.project).not.to.exist
|
|
|
|
expect(deletedProject.deleterData.deleterIpAddress).not.to
|
|
|
|
.exist
|
|
|
|
expect(deletedProject.deleterData.deletedAt).to.exist
|
|
|
|
done()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|