mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-04 11:35:57 +00:00
Merge pull request #17686 from overleaf/em-promisify-document-manager
Promisify DocumentManager GitOrigin-RevId: 63a28ef292b5aee708637ebcb53a5cbea7a304e6
This commit is contained in:
parent
3217870c04
commit
6632ffc939
4 changed files with 798 additions and 1237 deletions
File diff suppressed because it is too large
Load diff
|
@ -231,8 +231,6 @@ const UpdateManager = {
|
|||
}
|
||||
},
|
||||
|
||||
// lockUpdatesAndDo can't be promisified yet because it expects a
|
||||
// callback-style function
|
||||
async lockUpdatesAndDo(method, projectId, docId, ...args) {
|
||||
const profile = new Profiler('lockUpdatesAndDo', {
|
||||
project_id: projectId,
|
||||
|
@ -242,21 +240,12 @@ const UpdateManager = {
|
|||
const lockValue = await LockManager.promises.getLock(docId)
|
||||
profile.log('getLock')
|
||||
|
||||
let responseArgs
|
||||
let result
|
||||
try {
|
||||
await UpdateManager.processOutstandingUpdates(projectId, docId)
|
||||
profile.log('processOutstandingUpdates')
|
||||
|
||||
// TODO: method is still a callback-style function. Change this when promisifying DocumentManager
|
||||
responseArgs = await new Promise((resolve, reject) => {
|
||||
method(projectId, docId, ...args, (error, ...responseArgs) => {
|
||||
if (error) {
|
||||
reject(error)
|
||||
} else {
|
||||
resolve(responseArgs)
|
||||
}
|
||||
})
|
||||
})
|
||||
result = await method(projectId, docId, ...args)
|
||||
profile.log('method')
|
||||
} finally {
|
||||
await LockManager.promises.releaseLock(docId, lockValue)
|
||||
|
@ -277,7 +266,7 @@ const UpdateManager = {
|
|||
}
|
||||
)
|
||||
|
||||
return responseArgs
|
||||
return result
|
||||
},
|
||||
|
||||
_sanitizeUpdate(update) {
|
||||
|
@ -380,29 +369,4 @@ const UpdateManager = {
|
|||
},
|
||||
}
|
||||
|
||||
const CallbackifiedUpdateManager = callbackifyAll(UpdateManager)
|
||||
|
||||
module.exports = CallbackifiedUpdateManager
|
||||
module.exports.promises = UpdateManager
|
||||
|
||||
module.exports.lockUpdatesAndDo = function lockUpdatesAndDo(
|
||||
method,
|
||||
projectId,
|
||||
docId,
|
||||
...rest
|
||||
) {
|
||||
const adjustedLength = Math.max(rest.length, 1)
|
||||
const args = rest.slice(0, adjustedLength - 1)
|
||||
const callback = rest[adjustedLength - 1]
|
||||
|
||||
// TODO: During the transition to promises, UpdateManager.lockUpdatesAndDo
|
||||
// returns the potentially multiple arguments that must be provided to the
|
||||
// callback in an array.
|
||||
UpdateManager.lockUpdatesAndDo(method, projectId, docId, ...args)
|
||||
.then(responseArgs => {
|
||||
callback(null, ...responseArgs)
|
||||
})
|
||||
.catch(err => {
|
||||
callback(err)
|
||||
})
|
||||
}
|
||||
module.exports = { ...callbackifyAll(UpdateManager), promises: UpdateManager }
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -705,12 +705,9 @@ describe('UpdateManager', function () {
|
|||
|
||||
describe('lockUpdatesAndDo', function () {
|
||||
beforeEach(function () {
|
||||
this.method = sinon
|
||||
.stub()
|
||||
.yields(null, this.response_arg1, this.response_arg2)
|
||||
this.methodResult = 'method result'
|
||||
this.method = sinon.stub().resolves(this.methodResult)
|
||||
this.arg1 = 'argument 1'
|
||||
this.response_arg1 = 'response argument 1'
|
||||
this.response_arg2 = 'response argument 2'
|
||||
})
|
||||
|
||||
describe('successfully', function () {
|
||||
|
@ -749,10 +746,7 @@ describe('UpdateManager', function () {
|
|||
})
|
||||
|
||||
it('should return the method response arguments', function () {
|
||||
expect(this.response).to.deep.equal([
|
||||
this.response_arg1,
|
||||
this.response_arg2,
|
||||
])
|
||||
expect(this.response).to.equal(this.methodResult)
|
||||
})
|
||||
|
||||
it('should release the lock', function () {
|
||||
|
@ -797,7 +791,7 @@ describe('UpdateManager', function () {
|
|||
this.UpdateManager.promises.processOutstandingUpdates = sinon
|
||||
.stub()
|
||||
.resolves()
|
||||
this.method = sinon.stub().yields(this.error)
|
||||
this.method = sinon.stub().rejects(this.error)
|
||||
await expect(
|
||||
this.UpdateManager.promises.lockUpdatesAndDo(
|
||||
this.method,
|
||||
|
|
Loading…
Reference in a new issue