Handle removal of mongoose callback API for UserMemberships

GitOrigin-RevId: 0bdfaf4bfb357d75ee05513cf524540eef7fcec4
This commit is contained in:
andrew rumble 2024-08-02 17:34:03 +01:00 committed by Copybot
parent 330868ff0c
commit 4e2bfd58a1
2 changed files with 12 additions and 16 deletions

View file

@ -51,11 +51,10 @@ const UserMembershipsHandler = {
}
const removeOperation = { $pull: {} }
removeOperation.$pull[entityConfig.fields.write] = userId
EntityModels[entityConfig.modelName].updateMany(
{},
removeOperation,
callback
)
EntityModels[entityConfig.modelName]
.updateMany({}, removeOperation)
.then(result => callback(null, result))
.catch(callback)
},
getEntitiesByUser(entityConfig, userId, callback) {
@ -64,22 +63,19 @@ const UserMembershipsHandler = {
}
const query = Object.assign({}, entityConfig.baseQuery)
query[entityConfig.fields.access] = userId
EntityModels[entityConfig.modelName].find(
query,
function (error, entities) {
EntityModels[entityConfig.modelName]
.find(query)
.then(entities => {
if (entities == null) {
entities = []
}
if (error != null) {
return callback(error)
}
async.mapSeries(
entities,
(entity, cb) => entity.fetchV1Data(cb),
callback
)
}
)
})
.catch(callback)
},
}

View file

@ -21,9 +21,9 @@ describe('UserMembershipsHandler', function () {
beforeEach(function () {
this.user = { _id: new ObjectId() }
this.Institution = { updateMany: sinon.stub().yields(null) }
this.Subscription = { updateMany: sinon.stub().yields(null) }
this.Publisher = { updateMany: sinon.stub().yields(null) }
this.Institution = { updateMany: sinon.stub().resolves(null) }
this.Subscription = { updateMany: sinon.stub().resolves(null) }
this.Publisher = { updateMany: sinon.stub().resolves(null) }
return (this.UserMembershipsHandler = SandboxedModule.require(modulePath, {
requires: {
'../../models/Institution': {