mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
fix to avoid ever appending permanent changes to expiring packs
This commit is contained in:
parent
8b7bdd345b
commit
e292de5eb0
2 changed files with 53 additions and 2 deletions
|
@ -50,6 +50,9 @@ module.exports = PackManager =
|
||||||
insertCompressedUpdates: (project_id, doc_id, lastUpdate, newUpdates, temporary, callback = (error) ->) ->
|
insertCompressedUpdates: (project_id, doc_id, lastUpdate, newUpdates, temporary, callback = (error) ->) ->
|
||||||
return callback() if newUpdates.length == 0
|
return callback() if newUpdates.length == 0
|
||||||
|
|
||||||
|
# never append permanent ops to a pack that will expire
|
||||||
|
lastUpdate = null if lastUpdate?.expiresAt? and not temporary
|
||||||
|
|
||||||
updatesToFlush = []
|
updatesToFlush = []
|
||||||
updatesRemaining = newUpdates.slice()
|
updatesRemaining = newUpdates.slice()
|
||||||
|
|
||||||
|
@ -71,7 +74,19 @@ module.exports = PackManager =
|
||||||
|
|
||||||
flushCompressedUpdates: (project_id, doc_id, lastUpdate, newUpdates, temporary, callback = (error) ->) ->
|
flushCompressedUpdates: (project_id, doc_id, lastUpdate, newUpdates, temporary, callback = (error) ->) ->
|
||||||
return callback() if newUpdates.length == 0
|
return callback() if newUpdates.length == 0
|
||||||
if lastUpdate? and not (temporary and ((Date.now() - lastUpdate.meta?.start_ts) > 1 * DAYS))
|
|
||||||
|
canAppend = false
|
||||||
|
# check if it is safe to append to an existing pack
|
||||||
|
if lastUpdate?
|
||||||
|
if not temporary and not lastUpdate.expiresAt?
|
||||||
|
# permanent pack appends to permanent pack
|
||||||
|
canAppend = true
|
||||||
|
age = Date.now() - lastUpdate.meta?.start_ts
|
||||||
|
if temporary and lastUpdate.expiresAt? and age < 1 * DAYS
|
||||||
|
# temporary pack appends to temporary pack if same day
|
||||||
|
canAppend = true
|
||||||
|
|
||||||
|
if canAppend
|
||||||
PackManager.appendUpdatesToExistingPack project_id, doc_id, lastUpdate, newUpdates, temporary, callback
|
PackManager.appendUpdatesToExistingPack project_id, doc_id, lastUpdate, newUpdates, temporary, callback
|
||||||
else
|
else
|
||||||
PackManager.insertUpdatesIntoNewPack project_id, doc_id, newUpdates, temporary, callback
|
PackManager.insertUpdatesIntoNewPack project_id, doc_id, newUpdates, temporary, callback
|
||||||
|
|
|
@ -171,7 +171,7 @@ describe "PackManager", ->
|
||||||
it "should call the callback", ->
|
it "should call the callback", ->
|
||||||
@callback.called.should.equal true
|
@callback.called.should.equal true
|
||||||
|
|
||||||
describe "when there is a recent previous update in mongo", ->
|
describe "when there is a recent previous update in mongo that expires", ->
|
||||||
beforeEach ->
|
beforeEach ->
|
||||||
@lastUpdate = {
|
@lastUpdate = {
|
||||||
_id: "12345"
|
_id: "12345"
|
||||||
|
@ -181,6 +181,7 @@ describe "PackManager", ->
|
||||||
]
|
]
|
||||||
n : 2
|
n : 2
|
||||||
sz : 100
|
sz : 100
|
||||||
|
meta: {start_ts: Date.now() - 6 * 3600 * 1000}
|
||||||
expiresAt: new Date(Date.now())
|
expiresAt: new Date(Date.now())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -202,6 +203,41 @@ describe "PackManager", ->
|
||||||
@callback.called.should.equal true
|
@callback.called.should.equal true
|
||||||
|
|
||||||
|
|
||||||
|
describe "when there is a recent previous update in mongo that expires", ->
|
||||||
|
beforeEach ->
|
||||||
|
@PackManager.updateIndex = sinon.stub().callsArg(2)
|
||||||
|
|
||||||
|
@lastUpdate = {
|
||||||
|
_id: "12345"
|
||||||
|
pack: [
|
||||||
|
{ op: "op-1", meta: "meta-1", v: 1},
|
||||||
|
{ op: "op-2", meta: "meta-2", v: 2}
|
||||||
|
]
|
||||||
|
n : 2
|
||||||
|
sz : 100
|
||||||
|
meta: {start_ts: Date.now() - 6 * 3600 * 1000}
|
||||||
|
expiresAt: new Date(Date.now())
|
||||||
|
}
|
||||||
|
|
||||||
|
@PackManager.flushCompressedUpdates @project_id, @doc_id, @lastUpdate, @newUpdates, false, @callback
|
||||||
|
|
||||||
|
describe "for a small update that will not expire", ->
|
||||||
|
it "should insert the update into mongo", ->
|
||||||
|
@db.docHistory.save.calledWithMatch({
|
||||||
|
pack: @newUpdates,
|
||||||
|
project_id: ObjectId(@project_id),
|
||||||
|
doc_id: ObjectId(@doc_id)
|
||||||
|
n: @newUpdates.length
|
||||||
|
v: @newUpdates[0].v
|
||||||
|
v_end: @newUpdates[@newUpdates.length-1].v
|
||||||
|
}).should.equal true
|
||||||
|
|
||||||
|
it "should not set any expiry time", ->
|
||||||
|
@db.docHistory.save.neverCalledWithMatch(sinon.match.has("expiresAt")).should.equal true
|
||||||
|
|
||||||
|
it "should call the callback", ->
|
||||||
|
@callback.called.should.equal true
|
||||||
|
|
||||||
describe "when there is an old previous update in mongo", ->
|
describe "when there is an old previous update in mongo", ->
|
||||||
beforeEach ->
|
beforeEach ->
|
||||||
@lastUpdate = {
|
@lastUpdate = {
|
||||||
|
|
Loading…
Reference in a new issue